diff --git a/models/kinesis/2013-12-02/service-2.json b/models/kinesis/2013-12-02/service-2.json index 21eb2c604d53..df775352a8f3 100644 --- a/models/kinesis/2013-12-02/service-2.json +++ b/models/kinesis/2013-12-02/service-2.json @@ -427,22 +427,6 @@ ], "documentation":"

Disables server-side encryption for a specified stream.

Stopping encryption is an asynchronous operation. Upon receiving the request, Kinesis Data Streams returns immediately and sets the status of the stream to UPDATING. After the update is complete, Kinesis Data Streams sets the status of the stream back to ACTIVE. Stopping encryption normally takes a few seconds to complete, but it can take minutes. You can continue to read and write data to your stream while its status is UPDATING. Once the status of the stream is ACTIVE, records written to the stream are no longer encrypted by Kinesis Data Streams.

API Limits: You can successfully disable server-side encryption 25 times in a rolling 24-hour period.

Note: It can take up to 5 seconds after the stream is in an ACTIVE status before all records written to the stream are no longer subject to encryption. After you disabled encryption, you can verify that encryption is not applied by inspecting the API response from PutRecord or PutRecords.

" }, - "SubscribeToShard":{ - "name":"SubscribeToShard", - "http":{ - "method":"POST", - "requestUri":"/" - }, - "input":{"shape":"SubscribeToShardInput"}, - "output":{"shape":"SubscribeToShardOutput"}, - "errors":[ - {"shape":"ResourceNotFoundException"}, - {"shape":"InvalidArgumentException"}, - {"shape":"ResourceInUseException"}, - {"shape":"LimitExceededException"} - ], - "documentation":"

Call this operation from your consumer after you call RegisterStreamConsumer to register the consumer with Kinesis Data Streams. If the call succeeds, your consumer starts receiving events of type SubscribeToShardEvent for up to 5 minutes, after which time you need to call SubscribeToShard again to renew the subscription if you want to continue to receive records.

You can make one call to SubscribeToShard per second per ConsumerARN. If your call succeeds, and then you call the operation again less than 5 seconds later, the second call generates a ResourceInUseException. If you call the operation a second time more than 5 seconds after the first call succeeds, the second call succeeds and the first connection gets shut down.

" - }, "UpdateShardCount":{ "name":"UpdateShardCount", "http":{ @@ -1847,76 +1831,6 @@ "UPDATING" ] }, - "SubscribeToShardEvent":{ - "type":"structure", - "required":[ - "Records", - "ContinuationSequenceNumber", - "MillisBehindLatest" - ], - "members":{ - "Records":{ - "shape":"RecordList", - "documentation":"

" - }, - "ContinuationSequenceNumber":{ - "shape":"SequenceNumber", - "documentation":"

Use this as StartingSequenceNumber in the next call to SubscribeToShard.

" - }, - "MillisBehindLatest":{ - "shape":"MillisBehindLatest", - "documentation":"

The number of milliseconds the read records are from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.

" - } - }, - "documentation":"

After you call SubscribeToShard, Kinesis Data Streams sends events of this type to your consumer.

", - "event":true - }, - "SubscribeToShardEventStream":{ - "type":"structure", - "required":["SubscribeToShardEvent"], - "members":{ - "SubscribeToShardEvent":{"shape":"SubscribeToShardEvent"}, - "ResourceNotFoundException":{"shape":"ResourceNotFoundException"}, - "ResourceInUseException":{"shape":"ResourceInUseException"}, - "KMSDisabledException":{"shape":"KMSDisabledException"}, - "KMSInvalidStateException":{"shape":"KMSInvalidStateException"}, - "KMSAccessDeniedException":{"shape":"KMSAccessDeniedException"}, - "KMSNotFoundException":{"shape":"KMSNotFoundException"}, - "KMSOptInRequired":{"shape":"KMSOptInRequired"}, - "KMSThrottlingException":{"shape":"KMSThrottlingException"}, - "InternalFailureException":{"shape":"InternalFailureException"} - }, - "eventstream":true - }, - "SubscribeToShardInput":{ - "type":"structure", - "required":[ - "ConsumerARN", - "ShardId", - "StartingPosition" - ], - "members":{ - "ConsumerARN":{ - "shape":"ConsumerARN", - "documentation":"

For this parameter, use the value you obtained when you called RegisterStreamConsumer.

" - }, - "ShardId":{ - "shape":"ShardId", - "documentation":"

The ID of the shard you want to subscribe to. To see a list of all the shards for a given stream, use ListShards.

" - }, - "StartingPosition":{"shape":"StartingPosition"} - } - }, - "SubscribeToShardOutput":{ - "type":"structure", - "required":["EventStream"], - "members":{ - "EventStream":{ - "shape":"SubscribeToShardEventStream", - "documentation":"

The event stream that your consumer can use to read records from the shard.

" - } - } - }, "Tag":{ "type":"structure", "required":["Key"], diff --git a/packages/client-codecommit-node/README.md b/packages/client-codecommit-node/README.md index 6b4f09b53ecc..131b4a931a14 100644 --- a/packages/client-codecommit-node/README.md +++ b/packages/client-codecommit-node/README.md @@ -21,7 +21,7 @@ The AWS SDK is modulized by clients and commends in CommonJS modules. To send a ```javascript //javascript const { CodeCommitClient } = require('@aws-sdk/client-codecommit-node/CodeCommitClient'); -const { BatchGetRepositoriesCommand } = require('@aws-sdk/client-codecommit-node/BatchGetRepositoriesCommand'); +const { BatchGetRepositoriesCommand } = require('@aws-sdk/client-codecommit-node/commands/BatchGetRepositoriesCommand'); ``` ```javascript @@ -111,7 +111,7 @@ The keys within exceptions are also parsed, you can access them by specifying ex Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them. - * Ask a question on [StackOverflow](https://stackoverflow.com/) and tag it with `aws-sdk-js` + * Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js` * Come join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3) * If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues) diff --git a/packages/client-codecommit-node/commands/BatchGetRepositoriesCommand.ts b/packages/client-codecommit-node/commands/BatchGetRepositoriesCommand.ts index 7ee7a8fa4d2c..17a04c5c6f01 100644 --- a/packages/client-codecommit-node/commands/BatchGetRepositoriesCommand.ts +++ b/packages/client-codecommit-node/commands/BatchGetRepositoriesCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {BatchGetRepositoriesInput} from '../types/BatchGetRepositoriesInput'; import {BatchGetRepositoriesOutput} from '../types/BatchGetRepositoriesOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/BatchGetRepositoriesInput'; +export * from '../types/BatchGetRepositoriesOutput'; +export * from '../types/BatchGetRepositoriesExceptionsUnion'; export class BatchGetRepositoriesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/CreateBranchCommand.ts b/packages/client-codecommit-node/commands/CreateBranchCommand.ts index 7054efe2fc7c..9dd4ccb08b47 100644 --- a/packages/client-codecommit-node/commands/CreateBranchCommand.ts +++ b/packages/client-codecommit-node/commands/CreateBranchCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreateBranchInput} from '../types/CreateBranchInput'; import {CreateBranchOutput} from '../types/CreateBranchOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/CreateBranchInput'; +export * from '../types/CreateBranchOutput'; +export * from '../types/CreateBranchExceptionsUnion'; export class CreateBranchCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/CreatePullRequestCommand.ts b/packages/client-codecommit-node/commands/CreatePullRequestCommand.ts index 4a4dc1bfc676..0258c02d6a18 100644 --- a/packages/client-codecommit-node/commands/CreatePullRequestCommand.ts +++ b/packages/client-codecommit-node/commands/CreatePullRequestCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreatePullRequestInput} from '../types/CreatePullRequestInput'; import {CreatePullRequestOutput} from '../types/CreatePullRequestOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/CreatePullRequestInput'; +export * from '../types/CreatePullRequestOutput'; +export * from '../types/CreatePullRequestExceptionsUnion'; export class CreatePullRequestCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/CreateRepositoryCommand.ts b/packages/client-codecommit-node/commands/CreateRepositoryCommand.ts index b131fc355dce..0dae09caa90d 100644 --- a/packages/client-codecommit-node/commands/CreateRepositoryCommand.ts +++ b/packages/client-codecommit-node/commands/CreateRepositoryCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreateRepositoryInput} from '../types/CreateRepositoryInput'; import {CreateRepositoryOutput} from '../types/CreateRepositoryOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/CreateRepositoryInput'; +export * from '../types/CreateRepositoryOutput'; +export * from '../types/CreateRepositoryExceptionsUnion'; export class CreateRepositoryCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/DeleteBranchCommand.ts b/packages/client-codecommit-node/commands/DeleteBranchCommand.ts index ef3c62dacb11..9b75aa71f261 100644 --- a/packages/client-codecommit-node/commands/DeleteBranchCommand.ts +++ b/packages/client-codecommit-node/commands/DeleteBranchCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteBranchInput} from '../types/DeleteBranchInput'; import {DeleteBranchOutput} from '../types/DeleteBranchOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/DeleteBranchInput'; +export * from '../types/DeleteBranchOutput'; +export * from '../types/DeleteBranchExceptionsUnion'; export class DeleteBranchCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/DeleteCommentContentCommand.ts b/packages/client-codecommit-node/commands/DeleteCommentContentCommand.ts index 3f7ac5295908..ddac029d35bf 100644 --- a/packages/client-codecommit-node/commands/DeleteCommentContentCommand.ts +++ b/packages/client-codecommit-node/commands/DeleteCommentContentCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteCommentContentInput} from '../types/DeleteCommentContentInput'; import {DeleteCommentContentOutput} from '../types/DeleteCommentContentOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/DeleteCommentContentInput'; +export * from '../types/DeleteCommentContentOutput'; +export * from '../types/DeleteCommentContentExceptionsUnion'; export class DeleteCommentContentCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/DeleteFileCommand.ts b/packages/client-codecommit-node/commands/DeleteFileCommand.ts index f646a16c33d2..d5b17e00be16 100644 --- a/packages/client-codecommit-node/commands/DeleteFileCommand.ts +++ b/packages/client-codecommit-node/commands/DeleteFileCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteFileInput} from '../types/DeleteFileInput'; import {DeleteFileOutput} from '../types/DeleteFileOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/DeleteFileInput'; +export * from '../types/DeleteFileOutput'; +export * from '../types/DeleteFileExceptionsUnion'; export class DeleteFileCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/DeleteRepositoryCommand.ts b/packages/client-codecommit-node/commands/DeleteRepositoryCommand.ts index b750df1a094e..b25970141129 100644 --- a/packages/client-codecommit-node/commands/DeleteRepositoryCommand.ts +++ b/packages/client-codecommit-node/commands/DeleteRepositoryCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteRepositoryInput} from '../types/DeleteRepositoryInput'; import {DeleteRepositoryOutput} from '../types/DeleteRepositoryOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/DeleteRepositoryInput'; +export * from '../types/DeleteRepositoryOutput'; +export * from '../types/DeleteRepositoryExceptionsUnion'; export class DeleteRepositoryCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/DescribePullRequestEventsCommand.ts b/packages/client-codecommit-node/commands/DescribePullRequestEventsCommand.ts index cfbd10e68f04..ebd6879cb819 100644 --- a/packages/client-codecommit-node/commands/DescribePullRequestEventsCommand.ts +++ b/packages/client-codecommit-node/commands/DescribePullRequestEventsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DescribePullRequestEventsInput} from '../types/DescribePullRequestEventsInput'; import {DescribePullRequestEventsOutput} from '../types/DescribePullRequestEventsOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/DescribePullRequestEventsInput'; +export * from '../types/DescribePullRequestEventsOutput'; +export * from '../types/DescribePullRequestEventsExceptionsUnion'; export class DescribePullRequestEventsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetBlobCommand.ts b/packages/client-codecommit-node/commands/GetBlobCommand.ts index 5af5140755b2..2e339aba5ef0 100644 --- a/packages/client-codecommit-node/commands/GetBlobCommand.ts +++ b/packages/client-codecommit-node/commands/GetBlobCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetBlobInput} from '../types/GetBlobInput'; import {GetBlobOutput} from '../types/GetBlobOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetBlobInput'; +export * from '../types/GetBlobOutput'; +export * from '../types/GetBlobExceptionsUnion'; export class GetBlobCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetBranchCommand.ts b/packages/client-codecommit-node/commands/GetBranchCommand.ts index 92ca68d1a3e7..c32ae86d8c35 100644 --- a/packages/client-codecommit-node/commands/GetBranchCommand.ts +++ b/packages/client-codecommit-node/commands/GetBranchCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetBranchInput} from '../types/GetBranchInput'; import {GetBranchOutput} from '../types/GetBranchOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetBranchInput'; +export * from '../types/GetBranchOutput'; +export * from '../types/GetBranchExceptionsUnion'; export class GetBranchCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetCommentCommand.ts b/packages/client-codecommit-node/commands/GetCommentCommand.ts index 24db69e1c356..97e2632aa005 100644 --- a/packages/client-codecommit-node/commands/GetCommentCommand.ts +++ b/packages/client-codecommit-node/commands/GetCommentCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetCommentInput} from '../types/GetCommentInput'; import {GetCommentOutput} from '../types/GetCommentOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetCommentInput'; +export * from '../types/GetCommentOutput'; +export * from '../types/GetCommentExceptionsUnion'; export class GetCommentCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetCommentsForComparedCommitCommand.ts b/packages/client-codecommit-node/commands/GetCommentsForComparedCommitCommand.ts index be571303b2d3..73453a2e1f0a 100644 --- a/packages/client-codecommit-node/commands/GetCommentsForComparedCommitCommand.ts +++ b/packages/client-codecommit-node/commands/GetCommentsForComparedCommitCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetCommentsForComparedCommitInput} from '../types/GetCommentsForComparedCommitInput'; import {GetCommentsForComparedCommitOutput} from '../types/GetCommentsForComparedCommitOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetCommentsForComparedCommitInput'; +export * from '../types/GetCommentsForComparedCommitOutput'; +export * from '../types/GetCommentsForComparedCommitExceptionsUnion'; export class GetCommentsForComparedCommitCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetCommentsForPullRequestCommand.ts b/packages/client-codecommit-node/commands/GetCommentsForPullRequestCommand.ts index c51aba18b94e..f224a3aff8fa 100644 --- a/packages/client-codecommit-node/commands/GetCommentsForPullRequestCommand.ts +++ b/packages/client-codecommit-node/commands/GetCommentsForPullRequestCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetCommentsForPullRequestInput} from '../types/GetCommentsForPullRequestInput'; import {GetCommentsForPullRequestOutput} from '../types/GetCommentsForPullRequestOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetCommentsForPullRequestInput'; +export * from '../types/GetCommentsForPullRequestOutput'; +export * from '../types/GetCommentsForPullRequestExceptionsUnion'; export class GetCommentsForPullRequestCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetCommitCommand.ts b/packages/client-codecommit-node/commands/GetCommitCommand.ts index 63f7b333d541..d2ecdbf798a2 100644 --- a/packages/client-codecommit-node/commands/GetCommitCommand.ts +++ b/packages/client-codecommit-node/commands/GetCommitCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetCommitInput} from '../types/GetCommitInput'; import {GetCommitOutput} from '../types/GetCommitOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetCommitInput'; +export * from '../types/GetCommitOutput'; +export * from '../types/GetCommitExceptionsUnion'; export class GetCommitCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetDifferencesCommand.ts b/packages/client-codecommit-node/commands/GetDifferencesCommand.ts index 708846956009..2be611df964e 100644 --- a/packages/client-codecommit-node/commands/GetDifferencesCommand.ts +++ b/packages/client-codecommit-node/commands/GetDifferencesCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetDifferencesInput} from '../types/GetDifferencesInput'; import {GetDifferencesOutput} from '../types/GetDifferencesOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetDifferencesInput'; +export * from '../types/GetDifferencesOutput'; +export * from '../types/GetDifferencesExceptionsUnion'; export class GetDifferencesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetFileCommand.ts b/packages/client-codecommit-node/commands/GetFileCommand.ts index c159a2e1fab5..44c76346e690 100644 --- a/packages/client-codecommit-node/commands/GetFileCommand.ts +++ b/packages/client-codecommit-node/commands/GetFileCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetFileInput} from '../types/GetFileInput'; import {GetFileOutput} from '../types/GetFileOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetFileInput'; +export * from '../types/GetFileOutput'; +export * from '../types/GetFileExceptionsUnion'; export class GetFileCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetFolderCommand.ts b/packages/client-codecommit-node/commands/GetFolderCommand.ts index 29ffafe09e21..ded226dc7f15 100644 --- a/packages/client-codecommit-node/commands/GetFolderCommand.ts +++ b/packages/client-codecommit-node/commands/GetFolderCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetFolderInput} from '../types/GetFolderInput'; import {GetFolderOutput} from '../types/GetFolderOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetFolderInput'; +export * from '../types/GetFolderOutput'; +export * from '../types/GetFolderExceptionsUnion'; export class GetFolderCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetMergeConflictsCommand.ts b/packages/client-codecommit-node/commands/GetMergeConflictsCommand.ts index 572b9a010b66..d0a18e8bed57 100644 --- a/packages/client-codecommit-node/commands/GetMergeConflictsCommand.ts +++ b/packages/client-codecommit-node/commands/GetMergeConflictsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetMergeConflictsInput} from '../types/GetMergeConflictsInput'; import {GetMergeConflictsOutput} from '../types/GetMergeConflictsOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetMergeConflictsInput'; +export * from '../types/GetMergeConflictsOutput'; +export * from '../types/GetMergeConflictsExceptionsUnion'; export class GetMergeConflictsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetPullRequestCommand.ts b/packages/client-codecommit-node/commands/GetPullRequestCommand.ts index bd78193ad28d..3d93c6b2c62c 100644 --- a/packages/client-codecommit-node/commands/GetPullRequestCommand.ts +++ b/packages/client-codecommit-node/commands/GetPullRequestCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetPullRequestInput} from '../types/GetPullRequestInput'; import {GetPullRequestOutput} from '../types/GetPullRequestOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetPullRequestInput'; +export * from '../types/GetPullRequestOutput'; +export * from '../types/GetPullRequestExceptionsUnion'; export class GetPullRequestCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetRepositoryCommand.ts b/packages/client-codecommit-node/commands/GetRepositoryCommand.ts index 2feefa5c77e5..3ae5ace7fd2c 100644 --- a/packages/client-codecommit-node/commands/GetRepositoryCommand.ts +++ b/packages/client-codecommit-node/commands/GetRepositoryCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetRepositoryInput} from '../types/GetRepositoryInput'; import {GetRepositoryOutput} from '../types/GetRepositoryOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetRepositoryInput'; +export * from '../types/GetRepositoryOutput'; +export * from '../types/GetRepositoryExceptionsUnion'; export class GetRepositoryCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/GetRepositoryTriggersCommand.ts b/packages/client-codecommit-node/commands/GetRepositoryTriggersCommand.ts index 17a17980f24a..2007c0ae90fb 100644 --- a/packages/client-codecommit-node/commands/GetRepositoryTriggersCommand.ts +++ b/packages/client-codecommit-node/commands/GetRepositoryTriggersCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetRepositoryTriggersInput} from '../types/GetRepositoryTriggersInput'; import {GetRepositoryTriggersOutput} from '../types/GetRepositoryTriggersOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/GetRepositoryTriggersInput'; +export * from '../types/GetRepositoryTriggersOutput'; +export * from '../types/GetRepositoryTriggersExceptionsUnion'; export class GetRepositoryTriggersCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/ListBranchesCommand.ts b/packages/client-codecommit-node/commands/ListBranchesCommand.ts index 0f97041f7ea0..48b36c3e6cb4 100644 --- a/packages/client-codecommit-node/commands/ListBranchesCommand.ts +++ b/packages/client-codecommit-node/commands/ListBranchesCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListBranchesInput} from '../types/ListBranchesInput'; import {ListBranchesOutput} from '../types/ListBranchesOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/ListBranchesInput'; +export * from '../types/ListBranchesOutput'; +export * from '../types/ListBranchesExceptionsUnion'; export class ListBranchesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/ListPullRequestsCommand.ts b/packages/client-codecommit-node/commands/ListPullRequestsCommand.ts index fd9947b8bd60..a65932840133 100644 --- a/packages/client-codecommit-node/commands/ListPullRequestsCommand.ts +++ b/packages/client-codecommit-node/commands/ListPullRequestsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListPullRequestsInput} from '../types/ListPullRequestsInput'; import {ListPullRequestsOutput} from '../types/ListPullRequestsOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/ListPullRequestsInput'; +export * from '../types/ListPullRequestsOutput'; +export * from '../types/ListPullRequestsExceptionsUnion'; export class ListPullRequestsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/ListRepositoriesCommand.ts b/packages/client-codecommit-node/commands/ListRepositoriesCommand.ts index f78552bc835e..cf199e05e25d 100644 --- a/packages/client-codecommit-node/commands/ListRepositoriesCommand.ts +++ b/packages/client-codecommit-node/commands/ListRepositoriesCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListRepositoriesInput} from '../types/ListRepositoriesInput'; import {ListRepositoriesOutput} from '../types/ListRepositoriesOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/ListRepositoriesInput'; +export * from '../types/ListRepositoriesOutput'; +export * from '../types/ListRepositoriesExceptionsUnion'; export class ListRepositoriesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/MergePullRequestByFastForwardCommand.ts b/packages/client-codecommit-node/commands/MergePullRequestByFastForwardCommand.ts index 9075e94324b7..68d1c882ac27 100644 --- a/packages/client-codecommit-node/commands/MergePullRequestByFastForwardCommand.ts +++ b/packages/client-codecommit-node/commands/MergePullRequestByFastForwardCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {MergePullRequestByFastForwardInput} from '../types/MergePullRequestByFastForwardInput'; import {MergePullRequestByFastForwardOutput} from '../types/MergePullRequestByFastForwardOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/MergePullRequestByFastForwardInput'; +export * from '../types/MergePullRequestByFastForwardOutput'; +export * from '../types/MergePullRequestByFastForwardExceptionsUnion'; export class MergePullRequestByFastForwardCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/PostCommentForComparedCommitCommand.ts b/packages/client-codecommit-node/commands/PostCommentForComparedCommitCommand.ts index 607b10985d34..72db438c778f 100644 --- a/packages/client-codecommit-node/commands/PostCommentForComparedCommitCommand.ts +++ b/packages/client-codecommit-node/commands/PostCommentForComparedCommitCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PostCommentForComparedCommitInput} from '../types/PostCommentForComparedCommitInput'; import {PostCommentForComparedCommitOutput} from '../types/PostCommentForComparedCommitOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/PostCommentForComparedCommitInput'; +export * from '../types/PostCommentForComparedCommitOutput'; +export * from '../types/PostCommentForComparedCommitExceptionsUnion'; export class PostCommentForComparedCommitCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/PostCommentForPullRequestCommand.ts b/packages/client-codecommit-node/commands/PostCommentForPullRequestCommand.ts index 541be2ec9ea7..2a931c958298 100644 --- a/packages/client-codecommit-node/commands/PostCommentForPullRequestCommand.ts +++ b/packages/client-codecommit-node/commands/PostCommentForPullRequestCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PostCommentForPullRequestInput} from '../types/PostCommentForPullRequestInput'; import {PostCommentForPullRequestOutput} from '../types/PostCommentForPullRequestOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/PostCommentForPullRequestInput'; +export * from '../types/PostCommentForPullRequestOutput'; +export * from '../types/PostCommentForPullRequestExceptionsUnion'; export class PostCommentForPullRequestCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/PostCommentReplyCommand.ts b/packages/client-codecommit-node/commands/PostCommentReplyCommand.ts index 2fcc73cd9bee..7faa83bceaf9 100644 --- a/packages/client-codecommit-node/commands/PostCommentReplyCommand.ts +++ b/packages/client-codecommit-node/commands/PostCommentReplyCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PostCommentReplyInput} from '../types/PostCommentReplyInput'; import {PostCommentReplyOutput} from '../types/PostCommentReplyOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/PostCommentReplyInput'; +export * from '../types/PostCommentReplyOutput'; +export * from '../types/PostCommentReplyExceptionsUnion'; export class PostCommentReplyCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/PutFileCommand.ts b/packages/client-codecommit-node/commands/PutFileCommand.ts index 4690dd147a09..87288a3a0207 100644 --- a/packages/client-codecommit-node/commands/PutFileCommand.ts +++ b/packages/client-codecommit-node/commands/PutFileCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PutFileInput} from '../types/PutFileInput'; import {PutFileOutput} from '../types/PutFileOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/PutFileInput'; +export * from '../types/PutFileOutput'; +export * from '../types/PutFileExceptionsUnion'; export class PutFileCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/PutRepositoryTriggersCommand.ts b/packages/client-codecommit-node/commands/PutRepositoryTriggersCommand.ts index d8b590d63725..f6ec937fa8cb 100644 --- a/packages/client-codecommit-node/commands/PutRepositoryTriggersCommand.ts +++ b/packages/client-codecommit-node/commands/PutRepositoryTriggersCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PutRepositoryTriggersInput} from '../types/PutRepositoryTriggersInput'; import {PutRepositoryTriggersOutput} from '../types/PutRepositoryTriggersOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/PutRepositoryTriggersInput'; +export * from '../types/PutRepositoryTriggersOutput'; +export * from '../types/PutRepositoryTriggersExceptionsUnion'; export class PutRepositoryTriggersCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/TestRepositoryTriggersCommand.ts b/packages/client-codecommit-node/commands/TestRepositoryTriggersCommand.ts index 73141bd0bbb7..305fe50c31b5 100644 --- a/packages/client-codecommit-node/commands/TestRepositoryTriggersCommand.ts +++ b/packages/client-codecommit-node/commands/TestRepositoryTriggersCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {TestRepositoryTriggersInput} from '../types/TestRepositoryTriggersInput'; import {TestRepositoryTriggersOutput} from '../types/TestRepositoryTriggersOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/TestRepositoryTriggersInput'; +export * from '../types/TestRepositoryTriggersOutput'; +export * from '../types/TestRepositoryTriggersExceptionsUnion'; export class TestRepositoryTriggersCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/UpdateCommentCommand.ts b/packages/client-codecommit-node/commands/UpdateCommentCommand.ts index 4ed93424a7ad..f414161555a0 100644 --- a/packages/client-codecommit-node/commands/UpdateCommentCommand.ts +++ b/packages/client-codecommit-node/commands/UpdateCommentCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateCommentInput} from '../types/UpdateCommentInput'; import {UpdateCommentOutput} from '../types/UpdateCommentOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/UpdateCommentInput'; +export * from '../types/UpdateCommentOutput'; +export * from '../types/UpdateCommentExceptionsUnion'; export class UpdateCommentCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/UpdateDefaultBranchCommand.ts b/packages/client-codecommit-node/commands/UpdateDefaultBranchCommand.ts index 6631180d6df4..f37c9917898d 100644 --- a/packages/client-codecommit-node/commands/UpdateDefaultBranchCommand.ts +++ b/packages/client-codecommit-node/commands/UpdateDefaultBranchCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateDefaultBranchInput} from '../types/UpdateDefaultBranchInput'; import {UpdateDefaultBranchOutput} from '../types/UpdateDefaultBranchOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/UpdateDefaultBranchInput'; +export * from '../types/UpdateDefaultBranchOutput'; +export * from '../types/UpdateDefaultBranchExceptionsUnion'; export class UpdateDefaultBranchCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/UpdatePullRequestDescriptionCommand.ts b/packages/client-codecommit-node/commands/UpdatePullRequestDescriptionCommand.ts index dd7a49157b78..b515611ad89d 100644 --- a/packages/client-codecommit-node/commands/UpdatePullRequestDescriptionCommand.ts +++ b/packages/client-codecommit-node/commands/UpdatePullRequestDescriptionCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdatePullRequestDescriptionInput} from '../types/UpdatePullRequestDescriptionInput'; import {UpdatePullRequestDescriptionOutput} from '../types/UpdatePullRequestDescriptionOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/UpdatePullRequestDescriptionInput'; +export * from '../types/UpdatePullRequestDescriptionOutput'; +export * from '../types/UpdatePullRequestDescriptionExceptionsUnion'; export class UpdatePullRequestDescriptionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/UpdatePullRequestStatusCommand.ts b/packages/client-codecommit-node/commands/UpdatePullRequestStatusCommand.ts index 66a0ac773449..5569306bd8a1 100644 --- a/packages/client-codecommit-node/commands/UpdatePullRequestStatusCommand.ts +++ b/packages/client-codecommit-node/commands/UpdatePullRequestStatusCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdatePullRequestStatusInput} from '../types/UpdatePullRequestStatusInput'; import {UpdatePullRequestStatusOutput} from '../types/UpdatePullRequestStatusOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/UpdatePullRequestStatusInput'; +export * from '../types/UpdatePullRequestStatusOutput'; +export * from '../types/UpdatePullRequestStatusExceptionsUnion'; export class UpdatePullRequestStatusCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/UpdatePullRequestTitleCommand.ts b/packages/client-codecommit-node/commands/UpdatePullRequestTitleCommand.ts index 20f4830af822..ab77904e5a6d 100644 --- a/packages/client-codecommit-node/commands/UpdatePullRequestTitleCommand.ts +++ b/packages/client-codecommit-node/commands/UpdatePullRequestTitleCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdatePullRequestTitleInput} from '../types/UpdatePullRequestTitleInput'; import {UpdatePullRequestTitleOutput} from '../types/UpdatePullRequestTitleOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/UpdatePullRequestTitleInput'; +export * from '../types/UpdatePullRequestTitleOutput'; +export * from '../types/UpdatePullRequestTitleExceptionsUnion'; export class UpdatePullRequestTitleCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/UpdateRepositoryDescriptionCommand.ts b/packages/client-codecommit-node/commands/UpdateRepositoryDescriptionCommand.ts index 046e70972a15..b825f6eea830 100644 --- a/packages/client-codecommit-node/commands/UpdateRepositoryDescriptionCommand.ts +++ b/packages/client-codecommit-node/commands/UpdateRepositoryDescriptionCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateRepositoryDescriptionInput} from '../types/UpdateRepositoryDescriptionInput'; import {UpdateRepositoryDescriptionOutput} from '../types/UpdateRepositoryDescriptionOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/UpdateRepositoryDescriptionInput'; +export * from '../types/UpdateRepositoryDescriptionOutput'; +export * from '../types/UpdateRepositoryDescriptionExceptionsUnion'; export class UpdateRepositoryDescriptionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/commands/UpdateRepositoryNameCommand.ts b/packages/client-codecommit-node/commands/UpdateRepositoryNameCommand.ts index 0a7b17519a21..58e0a9cb3849 100644 --- a/packages/client-codecommit-node/commands/UpdateRepositoryNameCommand.ts +++ b/packages/client-codecommit-node/commands/UpdateRepositoryNameCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateRepositoryNameInput} from '../types/UpdateRepositoryNameInput'; import {UpdateRepositoryNameOutput} from '../types/UpdateRepositoryNameOutput'; import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration'; +export * from '../types/UpdateRepositoryNameInput'; +export * from '../types/UpdateRepositoryNameOutput'; +export * from '../types/UpdateRepositoryNameExceptionsUnion'; export class UpdateRepositoryNameCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-codecommit-node/package.json b/packages/client-codecommit-node/package.json index 4fe7b0fe17ae..56d8417d7bdf 100644 --- a/packages/client-codecommit-node/package.json +++ b/packages/client-codecommit-node/package.json @@ -58,4 +58,4 @@ "typedoc": "^0.10.0", "typescript": "^3.0.0" } -} +} \ No newline at end of file diff --git a/packages/client-cognito-identity-browser/README.md b/packages/client-cognito-identity-browser/README.md index 956677af8b62..74aa0515eb37 100644 --- a/packages/client-cognito-identity-browser/README.md +++ b/packages/client-cognito-identity-browser/README.md @@ -21,7 +21,7 @@ The AWS SDK is modulized by clients and commends in CommonJS modules. To send a ```javascript //javascript const { CognitoIdentityClient } = require('@aws-sdk/client-cognito-identity-browser/CognitoIdentityClient'); -const { CreateIdentityPoolCommand } = require('@aws-sdk/client-cognito-identity-browser/CreateIdentityPoolCommand'); +const { CreateIdentityPoolCommand } = require('@aws-sdk/client-cognito-identity-browser/commands/CreateIdentityPoolCommand'); ``` ```javascript @@ -112,7 +112,7 @@ The keys within exceptions are also parsed, you can access them by specifying ex Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them. - * Ask a question on [StackOverflow](https://stackoverflow.com/) and tag it with `aws-sdk-js` + * Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js` * Come join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3) * If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues) diff --git a/packages/client-cognito-identity-browser/commands/CreateIdentityPoolCommand.ts b/packages/client-cognito-identity-browser/commands/CreateIdentityPoolCommand.ts index 5770e176cd9e..8969d1e77905 100644 --- a/packages/client-cognito-identity-browser/commands/CreateIdentityPoolCommand.ts +++ b/packages/client-cognito-identity-browser/commands/CreateIdentityPoolCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreateIdentityPoolInput} from '../types/CreateIdentityPoolInput'; import {CreateIdentityPoolOutput} from '../types/CreateIdentityPoolOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/CreateIdentityPoolInput'; +export * from '../types/CreateIdentityPoolOutput'; +export * from '../types/CreateIdentityPoolExceptionsUnion'; export class CreateIdentityPoolCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/DeleteIdentitiesCommand.ts b/packages/client-cognito-identity-browser/commands/DeleteIdentitiesCommand.ts index 2e983bc489fb..b7587c04e1ba 100644 --- a/packages/client-cognito-identity-browser/commands/DeleteIdentitiesCommand.ts +++ b/packages/client-cognito-identity-browser/commands/DeleteIdentitiesCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteIdentitiesInput} from '../types/DeleteIdentitiesInput'; import {DeleteIdentitiesOutput} from '../types/DeleteIdentitiesOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/DeleteIdentitiesInput'; +export * from '../types/DeleteIdentitiesOutput'; +export * from '../types/DeleteIdentitiesExceptionsUnion'; export class DeleteIdentitiesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/DeleteIdentityPoolCommand.ts b/packages/client-cognito-identity-browser/commands/DeleteIdentityPoolCommand.ts index 05aecaf1cc2e..fad94ec59ccd 100644 --- a/packages/client-cognito-identity-browser/commands/DeleteIdentityPoolCommand.ts +++ b/packages/client-cognito-identity-browser/commands/DeleteIdentityPoolCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteIdentityPoolInput} from '../types/DeleteIdentityPoolInput'; import {DeleteIdentityPoolOutput} from '../types/DeleteIdentityPoolOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/DeleteIdentityPoolInput'; +export * from '../types/DeleteIdentityPoolOutput'; +export * from '../types/DeleteIdentityPoolExceptionsUnion'; export class DeleteIdentityPoolCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/DescribeIdentityCommand.ts b/packages/client-cognito-identity-browser/commands/DescribeIdentityCommand.ts index ea68d354a148..4fb98cf0446c 100644 --- a/packages/client-cognito-identity-browser/commands/DescribeIdentityCommand.ts +++ b/packages/client-cognito-identity-browser/commands/DescribeIdentityCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DescribeIdentityInput} from '../types/DescribeIdentityInput'; import {DescribeIdentityOutput} from '../types/DescribeIdentityOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/DescribeIdentityInput'; +export * from '../types/DescribeIdentityOutput'; +export * from '../types/DescribeIdentityExceptionsUnion'; export class DescribeIdentityCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/DescribeIdentityPoolCommand.ts b/packages/client-cognito-identity-browser/commands/DescribeIdentityPoolCommand.ts index 003bd2e4b941..c822437670cd 100644 --- a/packages/client-cognito-identity-browser/commands/DescribeIdentityPoolCommand.ts +++ b/packages/client-cognito-identity-browser/commands/DescribeIdentityPoolCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DescribeIdentityPoolInput} from '../types/DescribeIdentityPoolInput'; import {DescribeIdentityPoolOutput} from '../types/DescribeIdentityPoolOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/DescribeIdentityPoolInput'; +export * from '../types/DescribeIdentityPoolOutput'; +export * from '../types/DescribeIdentityPoolExceptionsUnion'; export class DescribeIdentityPoolCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/GetCredentialsForIdentityCommand.ts b/packages/client-cognito-identity-browser/commands/GetCredentialsForIdentityCommand.ts index 4672a22b43d8..dc90dfe3e1bd 100644 --- a/packages/client-cognito-identity-browser/commands/GetCredentialsForIdentityCommand.ts +++ b/packages/client-cognito-identity-browser/commands/GetCredentialsForIdentityCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetCredentialsForIdentityInput} from '../types/GetCredentialsForIdentityInput'; import {GetCredentialsForIdentityOutput} from '../types/GetCredentialsForIdentityOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/GetCredentialsForIdentityInput'; +export * from '../types/GetCredentialsForIdentityOutput'; +export * from '../types/GetCredentialsForIdentityExceptionsUnion'; export class GetCredentialsForIdentityCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/GetIdCommand.ts b/packages/client-cognito-identity-browser/commands/GetIdCommand.ts index ab9c719ee17a..2eb660a0aa41 100644 --- a/packages/client-cognito-identity-browser/commands/GetIdCommand.ts +++ b/packages/client-cognito-identity-browser/commands/GetIdCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetIdInput} from '../types/GetIdInput'; import {GetIdOutput} from '../types/GetIdOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/GetIdInput'; +export * from '../types/GetIdOutput'; +export * from '../types/GetIdExceptionsUnion'; export class GetIdCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/GetIdentityPoolRolesCommand.ts b/packages/client-cognito-identity-browser/commands/GetIdentityPoolRolesCommand.ts index 01a4d6f94429..6ac9735c78db 100644 --- a/packages/client-cognito-identity-browser/commands/GetIdentityPoolRolesCommand.ts +++ b/packages/client-cognito-identity-browser/commands/GetIdentityPoolRolesCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetIdentityPoolRolesInput} from '../types/GetIdentityPoolRolesInput'; import {GetIdentityPoolRolesOutput} from '../types/GetIdentityPoolRolesOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/GetIdentityPoolRolesInput'; +export * from '../types/GetIdentityPoolRolesOutput'; +export * from '../types/GetIdentityPoolRolesExceptionsUnion'; export class GetIdentityPoolRolesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/GetOpenIdTokenCommand.ts b/packages/client-cognito-identity-browser/commands/GetOpenIdTokenCommand.ts index bbf81a95d653..3771bf63880a 100644 --- a/packages/client-cognito-identity-browser/commands/GetOpenIdTokenCommand.ts +++ b/packages/client-cognito-identity-browser/commands/GetOpenIdTokenCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetOpenIdTokenInput} from '../types/GetOpenIdTokenInput'; import {GetOpenIdTokenOutput} from '../types/GetOpenIdTokenOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/GetOpenIdTokenInput'; +export * from '../types/GetOpenIdTokenOutput'; +export * from '../types/GetOpenIdTokenExceptionsUnion'; export class GetOpenIdTokenCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts b/packages/client-cognito-identity-browser/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts index 252502a180a6..633f29b58ea4 100644 --- a/packages/client-cognito-identity-browser/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts +++ b/packages/client-cognito-identity-browser/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetOpenIdTokenForDeveloperIdentityInput} from '../types/GetOpenIdTokenForDeveloperIdentityInput'; import {GetOpenIdTokenForDeveloperIdentityOutput} from '../types/GetOpenIdTokenForDeveloperIdentityOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/GetOpenIdTokenForDeveloperIdentityInput'; +export * from '../types/GetOpenIdTokenForDeveloperIdentityOutput'; +export * from '../types/GetOpenIdTokenForDeveloperIdentityExceptionsUnion'; export class GetOpenIdTokenForDeveloperIdentityCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/ListIdentitiesCommand.ts b/packages/client-cognito-identity-browser/commands/ListIdentitiesCommand.ts index 5128099646e0..078075d057e3 100644 --- a/packages/client-cognito-identity-browser/commands/ListIdentitiesCommand.ts +++ b/packages/client-cognito-identity-browser/commands/ListIdentitiesCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListIdentitiesInput} from '../types/ListIdentitiesInput'; import {ListIdentitiesOutput} from '../types/ListIdentitiesOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/ListIdentitiesInput'; +export * from '../types/ListIdentitiesOutput'; +export * from '../types/ListIdentitiesExceptionsUnion'; export class ListIdentitiesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/ListIdentityPoolsCommand.ts b/packages/client-cognito-identity-browser/commands/ListIdentityPoolsCommand.ts index f26a660004c0..87d05cc876fa 100644 --- a/packages/client-cognito-identity-browser/commands/ListIdentityPoolsCommand.ts +++ b/packages/client-cognito-identity-browser/commands/ListIdentityPoolsCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListIdentityPoolsInput} from '../types/ListIdentityPoolsInput'; import {ListIdentityPoolsOutput} from '../types/ListIdentityPoolsOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/ListIdentityPoolsInput'; +export * from '../types/ListIdentityPoolsOutput'; +export * from '../types/ListIdentityPoolsExceptionsUnion'; export class ListIdentityPoolsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/LookupDeveloperIdentityCommand.ts b/packages/client-cognito-identity-browser/commands/LookupDeveloperIdentityCommand.ts index f246a601021c..40f1aa0c11a9 100644 --- a/packages/client-cognito-identity-browser/commands/LookupDeveloperIdentityCommand.ts +++ b/packages/client-cognito-identity-browser/commands/LookupDeveloperIdentityCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {LookupDeveloperIdentityInput} from '../types/LookupDeveloperIdentityInput'; import {LookupDeveloperIdentityOutput} from '../types/LookupDeveloperIdentityOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/LookupDeveloperIdentityInput'; +export * from '../types/LookupDeveloperIdentityOutput'; +export * from '../types/LookupDeveloperIdentityExceptionsUnion'; export class LookupDeveloperIdentityCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/MergeDeveloperIdentitiesCommand.ts b/packages/client-cognito-identity-browser/commands/MergeDeveloperIdentitiesCommand.ts index c5f0e93b0060..db4ef2b19cf1 100644 --- a/packages/client-cognito-identity-browser/commands/MergeDeveloperIdentitiesCommand.ts +++ b/packages/client-cognito-identity-browser/commands/MergeDeveloperIdentitiesCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {MergeDeveloperIdentitiesInput} from '../types/MergeDeveloperIdentitiesInput'; import {MergeDeveloperIdentitiesOutput} from '../types/MergeDeveloperIdentitiesOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/MergeDeveloperIdentitiesInput'; +export * from '../types/MergeDeveloperIdentitiesOutput'; +export * from '../types/MergeDeveloperIdentitiesExceptionsUnion'; export class MergeDeveloperIdentitiesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/SetIdentityPoolRolesCommand.ts b/packages/client-cognito-identity-browser/commands/SetIdentityPoolRolesCommand.ts index 60dd2041621c..ef969704cb8f 100644 --- a/packages/client-cognito-identity-browser/commands/SetIdentityPoolRolesCommand.ts +++ b/packages/client-cognito-identity-browser/commands/SetIdentityPoolRolesCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {SetIdentityPoolRolesInput} from '../types/SetIdentityPoolRolesInput'; import {SetIdentityPoolRolesOutput} from '../types/SetIdentityPoolRolesOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/SetIdentityPoolRolesInput'; +export * from '../types/SetIdentityPoolRolesOutput'; +export * from '../types/SetIdentityPoolRolesExceptionsUnion'; export class SetIdentityPoolRolesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/UnlinkDeveloperIdentityCommand.ts b/packages/client-cognito-identity-browser/commands/UnlinkDeveloperIdentityCommand.ts index 281fabf762ae..563dcdb4924b 100644 --- a/packages/client-cognito-identity-browser/commands/UnlinkDeveloperIdentityCommand.ts +++ b/packages/client-cognito-identity-browser/commands/UnlinkDeveloperIdentityCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UnlinkDeveloperIdentityInput} from '../types/UnlinkDeveloperIdentityInput'; import {UnlinkDeveloperIdentityOutput} from '../types/UnlinkDeveloperIdentityOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/UnlinkDeveloperIdentityInput'; +export * from '../types/UnlinkDeveloperIdentityOutput'; +export * from '../types/UnlinkDeveloperIdentityExceptionsUnion'; export class UnlinkDeveloperIdentityCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/UnlinkIdentityCommand.ts b/packages/client-cognito-identity-browser/commands/UnlinkIdentityCommand.ts index 67b90fb38495..67aa462c0c87 100644 --- a/packages/client-cognito-identity-browser/commands/UnlinkIdentityCommand.ts +++ b/packages/client-cognito-identity-browser/commands/UnlinkIdentityCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UnlinkIdentityInput} from '../types/UnlinkIdentityInput'; import {UnlinkIdentityOutput} from '../types/UnlinkIdentityOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/UnlinkIdentityInput'; +export * from '../types/UnlinkIdentityOutput'; +export * from '../types/UnlinkIdentityExceptionsUnion'; export class UnlinkIdentityCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/commands/UpdateIdentityPoolCommand.ts b/packages/client-cognito-identity-browser/commands/UpdateIdentityPoolCommand.ts index e3e4a4ac65f3..dd4e6d83fc05 100644 --- a/packages/client-cognito-identity-browser/commands/UpdateIdentityPoolCommand.ts +++ b/packages/client-cognito-identity-browser/commands/UpdateIdentityPoolCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateIdentityPoolInput} from '../types/UpdateIdentityPoolInput'; import {UpdateIdentityPoolOutput} from '../types/UpdateIdentityPoolOutput'; import {CognitoIdentityResolvedConfiguration} from '../CognitoIdentityConfiguration'; +export * from '../types/UpdateIdentityPoolInput'; +export * from '../types/UpdateIdentityPoolOutput'; +export * from '../types/UpdateIdentityPoolExceptionsUnion'; export class UpdateIdentityPoolCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-cognito-identity-browser/package.json b/packages/client-cognito-identity-browser/package.json index 72c5401da139..8243b6eab336 100644 --- a/packages/client-cognito-identity-browser/package.json +++ b/packages/client-cognito-identity-browser/package.json @@ -53,4 +53,4 @@ "typedoc": "^0.10.0", "typescript": "^3.0.0" } -} +} \ No newline at end of file diff --git a/packages/client-glacier-node/README.md b/packages/client-glacier-node/README.md index 4e9ce4724ccf..0e5227a35f65 100644 --- a/packages/client-glacier-node/README.md +++ b/packages/client-glacier-node/README.md @@ -21,7 +21,7 @@ The AWS SDK is modulized by clients and commends in CommonJS modules. To send a ```javascript //javascript const { GlacierClient } = require('@aws-sdk/client-glacier-node/GlacierClient'); -const { UploadArchiveCommand } = require('@aws-sdk/client-glacier-node/UploadArchiveCommand'); +const { UploadArchiveCommand } = require('@aws-sdk/client-glacier-node/commands/UploadArchiveCommand'); ``` ```javascript @@ -116,7 +116,7 @@ The keys within exceptions are also parsed, you can access them by specifying ex Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them. - * Ask a question on [StackOverflow](https://stackoverflow.com/) and tag it with `aws-sdk-js` + * Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js` * Come join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3) * If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues) diff --git a/packages/client-glacier-node/commands/AbortMultipartUploadCommand.ts b/packages/client-glacier-node/commands/AbortMultipartUploadCommand.ts index 45b5059159c9..04bfdf034868 100644 --- a/packages/client-glacier-node/commands/AbortMultipartUploadCommand.ts +++ b/packages/client-glacier-node/commands/AbortMultipartUploadCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {AbortMultipartUploadInput} from '../types/AbortMultipartUploadInput'; import {AbortMultipartUploadOutput} from '../types/AbortMultipartUploadOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/AbortMultipartUploadInput'; +export * from '../types/AbortMultipartUploadOutput'; +export * from '../types/AbortMultipartUploadExceptionsUnion'; export class AbortMultipartUploadCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/AbortVaultLockCommand.ts b/packages/client-glacier-node/commands/AbortVaultLockCommand.ts index 3138ba3c3e70..a2aa82b7896a 100644 --- a/packages/client-glacier-node/commands/AbortVaultLockCommand.ts +++ b/packages/client-glacier-node/commands/AbortVaultLockCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {AbortVaultLockInput} from '../types/AbortVaultLockInput'; import {AbortVaultLockOutput} from '../types/AbortVaultLockOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/AbortVaultLockInput'; +export * from '../types/AbortVaultLockOutput'; +export * from '../types/AbortVaultLockExceptionsUnion'; export class AbortVaultLockCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/AddTagsToVaultCommand.ts b/packages/client-glacier-node/commands/AddTagsToVaultCommand.ts index 6d18886812ff..f8fc6c831445 100644 --- a/packages/client-glacier-node/commands/AddTagsToVaultCommand.ts +++ b/packages/client-glacier-node/commands/AddTagsToVaultCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {AddTagsToVaultInput} from '../types/AddTagsToVaultInput'; import {AddTagsToVaultOutput} from '../types/AddTagsToVaultOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/AddTagsToVaultInput'; +export * from '../types/AddTagsToVaultOutput'; +export * from '../types/AddTagsToVaultExceptionsUnion'; export class AddTagsToVaultCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/CompleteMultipartUploadCommand.ts b/packages/client-glacier-node/commands/CompleteMultipartUploadCommand.ts index f75909d7e22d..3bcac234874d 100644 --- a/packages/client-glacier-node/commands/CompleteMultipartUploadCommand.ts +++ b/packages/client-glacier-node/commands/CompleteMultipartUploadCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CompleteMultipartUploadInput} from '../types/CompleteMultipartUploadInput'; import {CompleteMultipartUploadOutput} from '../types/CompleteMultipartUploadOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/CompleteMultipartUploadInput'; +export * from '../types/CompleteMultipartUploadOutput'; +export * from '../types/CompleteMultipartUploadExceptionsUnion'; export class CompleteMultipartUploadCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/CompleteVaultLockCommand.ts b/packages/client-glacier-node/commands/CompleteVaultLockCommand.ts index fb4e848332d6..8deab7c4e6ce 100644 --- a/packages/client-glacier-node/commands/CompleteVaultLockCommand.ts +++ b/packages/client-glacier-node/commands/CompleteVaultLockCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CompleteVaultLockInput} from '../types/CompleteVaultLockInput'; import {CompleteVaultLockOutput} from '../types/CompleteVaultLockOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/CompleteVaultLockInput'; +export * from '../types/CompleteVaultLockOutput'; +export * from '../types/CompleteVaultLockExceptionsUnion'; export class CompleteVaultLockCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/CreateVaultCommand.ts b/packages/client-glacier-node/commands/CreateVaultCommand.ts index 4879267ab3d3..44721d880f13 100644 --- a/packages/client-glacier-node/commands/CreateVaultCommand.ts +++ b/packages/client-glacier-node/commands/CreateVaultCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreateVaultInput} from '../types/CreateVaultInput'; import {CreateVaultOutput} from '../types/CreateVaultOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/CreateVaultInput'; +export * from '../types/CreateVaultOutput'; +export * from '../types/CreateVaultExceptionsUnion'; export class CreateVaultCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/DeleteArchiveCommand.ts b/packages/client-glacier-node/commands/DeleteArchiveCommand.ts index 34b221b4a453..3da6a17db0a7 100644 --- a/packages/client-glacier-node/commands/DeleteArchiveCommand.ts +++ b/packages/client-glacier-node/commands/DeleteArchiveCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteArchiveInput} from '../types/DeleteArchiveInput'; import {DeleteArchiveOutput} from '../types/DeleteArchiveOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/DeleteArchiveInput'; +export * from '../types/DeleteArchiveOutput'; +export * from '../types/DeleteArchiveExceptionsUnion'; export class DeleteArchiveCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/DeleteVaultAccessPolicyCommand.ts b/packages/client-glacier-node/commands/DeleteVaultAccessPolicyCommand.ts index 0a68459b1dc7..1dbca043221c 100644 --- a/packages/client-glacier-node/commands/DeleteVaultAccessPolicyCommand.ts +++ b/packages/client-glacier-node/commands/DeleteVaultAccessPolicyCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteVaultAccessPolicyInput} from '../types/DeleteVaultAccessPolicyInput'; import {DeleteVaultAccessPolicyOutput} from '../types/DeleteVaultAccessPolicyOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/DeleteVaultAccessPolicyInput'; +export * from '../types/DeleteVaultAccessPolicyOutput'; +export * from '../types/DeleteVaultAccessPolicyExceptionsUnion'; export class DeleteVaultAccessPolicyCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/DeleteVaultCommand.ts b/packages/client-glacier-node/commands/DeleteVaultCommand.ts index 0066891ceed4..ad3e5c22501d 100644 --- a/packages/client-glacier-node/commands/DeleteVaultCommand.ts +++ b/packages/client-glacier-node/commands/DeleteVaultCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteVaultInput} from '../types/DeleteVaultInput'; import {DeleteVaultOutput} from '../types/DeleteVaultOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/DeleteVaultInput'; +export * from '../types/DeleteVaultOutput'; +export * from '../types/DeleteVaultExceptionsUnion'; export class DeleteVaultCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/DeleteVaultNotificationsCommand.ts b/packages/client-glacier-node/commands/DeleteVaultNotificationsCommand.ts index 5b867ec5f8c6..e012d45bb801 100644 --- a/packages/client-glacier-node/commands/DeleteVaultNotificationsCommand.ts +++ b/packages/client-glacier-node/commands/DeleteVaultNotificationsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteVaultNotificationsInput} from '../types/DeleteVaultNotificationsInput'; import {DeleteVaultNotificationsOutput} from '../types/DeleteVaultNotificationsOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/DeleteVaultNotificationsInput'; +export * from '../types/DeleteVaultNotificationsOutput'; +export * from '../types/DeleteVaultNotificationsExceptionsUnion'; export class DeleteVaultNotificationsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/DescribeJobCommand.ts b/packages/client-glacier-node/commands/DescribeJobCommand.ts index df65f5a9a270..ac9cb9d7c1b2 100644 --- a/packages/client-glacier-node/commands/DescribeJobCommand.ts +++ b/packages/client-glacier-node/commands/DescribeJobCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DescribeJobInput} from '../types/DescribeJobInput'; import {DescribeJobOutput} from '../types/DescribeJobOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/DescribeJobInput'; +export * from '../types/DescribeJobOutput'; +export * from '../types/DescribeJobExceptionsUnion'; export class DescribeJobCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/DescribeVaultCommand.ts b/packages/client-glacier-node/commands/DescribeVaultCommand.ts index d6e08aa1b0b7..a728cc0442f5 100644 --- a/packages/client-glacier-node/commands/DescribeVaultCommand.ts +++ b/packages/client-glacier-node/commands/DescribeVaultCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DescribeVaultInput} from '../types/DescribeVaultInput'; import {DescribeVaultOutput} from '../types/DescribeVaultOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/DescribeVaultInput'; +export * from '../types/DescribeVaultOutput'; +export * from '../types/DescribeVaultExceptionsUnion'; export class DescribeVaultCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/GetDataRetrievalPolicyCommand.ts b/packages/client-glacier-node/commands/GetDataRetrievalPolicyCommand.ts index 6b518d7fee9b..9cf248bb7379 100644 --- a/packages/client-glacier-node/commands/GetDataRetrievalPolicyCommand.ts +++ b/packages/client-glacier-node/commands/GetDataRetrievalPolicyCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetDataRetrievalPolicyInput} from '../types/GetDataRetrievalPolicyInput'; import {GetDataRetrievalPolicyOutput} from '../types/GetDataRetrievalPolicyOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/GetDataRetrievalPolicyInput'; +export * from '../types/GetDataRetrievalPolicyOutput'; +export * from '../types/GetDataRetrievalPolicyExceptionsUnion'; export class GetDataRetrievalPolicyCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/GetJobOutputCommand.ts b/packages/client-glacier-node/commands/GetJobOutputCommand.ts index 870f635437cc..574e0d935191 100644 --- a/packages/client-glacier-node/commands/GetJobOutputCommand.ts +++ b/packages/client-glacier-node/commands/GetJobOutputCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetJobOutputInput} from '../types/GetJobOutputInput'; import {GetJobOutputOutput} from '../types/GetJobOutputOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/GetJobOutputInput'; +export * from '../types/GetJobOutputOutput'; +export * from '../types/GetJobOutputExceptionsUnion'; export class GetJobOutputCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/GetVaultAccessPolicyCommand.ts b/packages/client-glacier-node/commands/GetVaultAccessPolicyCommand.ts index 0cb6331e5c5c..8f2ba6c72a61 100644 --- a/packages/client-glacier-node/commands/GetVaultAccessPolicyCommand.ts +++ b/packages/client-glacier-node/commands/GetVaultAccessPolicyCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetVaultAccessPolicyInput} from '../types/GetVaultAccessPolicyInput'; import {GetVaultAccessPolicyOutput} from '../types/GetVaultAccessPolicyOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/GetVaultAccessPolicyInput'; +export * from '../types/GetVaultAccessPolicyOutput'; +export * from '../types/GetVaultAccessPolicyExceptionsUnion'; export class GetVaultAccessPolicyCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/GetVaultLockCommand.ts b/packages/client-glacier-node/commands/GetVaultLockCommand.ts index 4ae3d35bea0c..90f8215bd0e8 100644 --- a/packages/client-glacier-node/commands/GetVaultLockCommand.ts +++ b/packages/client-glacier-node/commands/GetVaultLockCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetVaultLockInput} from '../types/GetVaultLockInput'; import {GetVaultLockOutput} from '../types/GetVaultLockOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/GetVaultLockInput'; +export * from '../types/GetVaultLockOutput'; +export * from '../types/GetVaultLockExceptionsUnion'; export class GetVaultLockCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/GetVaultNotificationsCommand.ts b/packages/client-glacier-node/commands/GetVaultNotificationsCommand.ts index 936918dc7b2c..75685a6403ae 100644 --- a/packages/client-glacier-node/commands/GetVaultNotificationsCommand.ts +++ b/packages/client-glacier-node/commands/GetVaultNotificationsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetVaultNotificationsInput} from '../types/GetVaultNotificationsInput'; import {GetVaultNotificationsOutput} from '../types/GetVaultNotificationsOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/GetVaultNotificationsInput'; +export * from '../types/GetVaultNotificationsOutput'; +export * from '../types/GetVaultNotificationsExceptionsUnion'; export class GetVaultNotificationsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/InitiateJobCommand.ts b/packages/client-glacier-node/commands/InitiateJobCommand.ts index 8efce594688b..b90ae09cffcf 100644 --- a/packages/client-glacier-node/commands/InitiateJobCommand.ts +++ b/packages/client-glacier-node/commands/InitiateJobCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {InitiateJobInput} from '../types/InitiateJobInput'; import {InitiateJobOutput} from '../types/InitiateJobOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/InitiateJobInput'; +export * from '../types/InitiateJobOutput'; +export * from '../types/InitiateJobExceptionsUnion'; export class InitiateJobCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/InitiateMultipartUploadCommand.ts b/packages/client-glacier-node/commands/InitiateMultipartUploadCommand.ts index 0886f5698e14..f9efbf14061e 100644 --- a/packages/client-glacier-node/commands/InitiateMultipartUploadCommand.ts +++ b/packages/client-glacier-node/commands/InitiateMultipartUploadCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {InitiateMultipartUploadInput} from '../types/InitiateMultipartUploadInput'; import {InitiateMultipartUploadOutput} from '../types/InitiateMultipartUploadOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/InitiateMultipartUploadInput'; +export * from '../types/InitiateMultipartUploadOutput'; +export * from '../types/InitiateMultipartUploadExceptionsUnion'; export class InitiateMultipartUploadCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/InitiateVaultLockCommand.ts b/packages/client-glacier-node/commands/InitiateVaultLockCommand.ts index f4bd32f86eba..55b0cb6e8347 100644 --- a/packages/client-glacier-node/commands/InitiateVaultLockCommand.ts +++ b/packages/client-glacier-node/commands/InitiateVaultLockCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {InitiateVaultLockInput} from '../types/InitiateVaultLockInput'; import {InitiateVaultLockOutput} from '../types/InitiateVaultLockOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/InitiateVaultLockInput'; +export * from '../types/InitiateVaultLockOutput'; +export * from '../types/InitiateVaultLockExceptionsUnion'; export class InitiateVaultLockCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/ListJobsCommand.ts b/packages/client-glacier-node/commands/ListJobsCommand.ts index f3a1349c9c49..6ef32d259053 100644 --- a/packages/client-glacier-node/commands/ListJobsCommand.ts +++ b/packages/client-glacier-node/commands/ListJobsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListJobsInput} from '../types/ListJobsInput'; import {ListJobsOutput} from '../types/ListJobsOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/ListJobsInput'; +export * from '../types/ListJobsOutput'; +export * from '../types/ListJobsExceptionsUnion'; export class ListJobsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/ListMultipartUploadsCommand.ts b/packages/client-glacier-node/commands/ListMultipartUploadsCommand.ts index 79609f4520bd..941f6a454a90 100644 --- a/packages/client-glacier-node/commands/ListMultipartUploadsCommand.ts +++ b/packages/client-glacier-node/commands/ListMultipartUploadsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListMultipartUploadsInput} from '../types/ListMultipartUploadsInput'; import {ListMultipartUploadsOutput} from '../types/ListMultipartUploadsOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/ListMultipartUploadsInput'; +export * from '../types/ListMultipartUploadsOutput'; +export * from '../types/ListMultipartUploadsExceptionsUnion'; export class ListMultipartUploadsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/ListPartsCommand.ts b/packages/client-glacier-node/commands/ListPartsCommand.ts index de68eee7ef17..6889a4c823ac 100644 --- a/packages/client-glacier-node/commands/ListPartsCommand.ts +++ b/packages/client-glacier-node/commands/ListPartsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListPartsInput} from '../types/ListPartsInput'; import {ListPartsOutput} from '../types/ListPartsOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/ListPartsInput'; +export * from '../types/ListPartsOutput'; +export * from '../types/ListPartsExceptionsUnion'; export class ListPartsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/ListProvisionedCapacityCommand.ts b/packages/client-glacier-node/commands/ListProvisionedCapacityCommand.ts index 50edd7730f78..1a44f3475500 100644 --- a/packages/client-glacier-node/commands/ListProvisionedCapacityCommand.ts +++ b/packages/client-glacier-node/commands/ListProvisionedCapacityCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListProvisionedCapacityInput} from '../types/ListProvisionedCapacityInput'; import {ListProvisionedCapacityOutput} from '../types/ListProvisionedCapacityOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/ListProvisionedCapacityInput'; +export * from '../types/ListProvisionedCapacityOutput'; +export * from '../types/ListProvisionedCapacityExceptionsUnion'; export class ListProvisionedCapacityCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/ListTagsForVaultCommand.ts b/packages/client-glacier-node/commands/ListTagsForVaultCommand.ts index 537de7c0d7c1..f50bc029bb6f 100644 --- a/packages/client-glacier-node/commands/ListTagsForVaultCommand.ts +++ b/packages/client-glacier-node/commands/ListTagsForVaultCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListTagsForVaultInput} from '../types/ListTagsForVaultInput'; import {ListTagsForVaultOutput} from '../types/ListTagsForVaultOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/ListTagsForVaultInput'; +export * from '../types/ListTagsForVaultOutput'; +export * from '../types/ListTagsForVaultExceptionsUnion'; export class ListTagsForVaultCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/ListVaultsCommand.ts b/packages/client-glacier-node/commands/ListVaultsCommand.ts index 7d760c5ec261..4fbecc10bb63 100644 --- a/packages/client-glacier-node/commands/ListVaultsCommand.ts +++ b/packages/client-glacier-node/commands/ListVaultsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListVaultsInput} from '../types/ListVaultsInput'; import {ListVaultsOutput} from '../types/ListVaultsOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/ListVaultsInput'; +export * from '../types/ListVaultsOutput'; +export * from '../types/ListVaultsExceptionsUnion'; export class ListVaultsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/PurchaseProvisionedCapacityCommand.ts b/packages/client-glacier-node/commands/PurchaseProvisionedCapacityCommand.ts index 4fc25e5cb10e..4507bd54357a 100644 --- a/packages/client-glacier-node/commands/PurchaseProvisionedCapacityCommand.ts +++ b/packages/client-glacier-node/commands/PurchaseProvisionedCapacityCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PurchaseProvisionedCapacityInput} from '../types/PurchaseProvisionedCapacityInput'; import {PurchaseProvisionedCapacityOutput} from '../types/PurchaseProvisionedCapacityOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/PurchaseProvisionedCapacityInput'; +export * from '../types/PurchaseProvisionedCapacityOutput'; +export * from '../types/PurchaseProvisionedCapacityExceptionsUnion'; export class PurchaseProvisionedCapacityCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/RemoveTagsFromVaultCommand.ts b/packages/client-glacier-node/commands/RemoveTagsFromVaultCommand.ts index df2c28369e02..5e521e9bb034 100644 --- a/packages/client-glacier-node/commands/RemoveTagsFromVaultCommand.ts +++ b/packages/client-glacier-node/commands/RemoveTagsFromVaultCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {RemoveTagsFromVaultInput} from '../types/RemoveTagsFromVaultInput'; import {RemoveTagsFromVaultOutput} from '../types/RemoveTagsFromVaultOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/RemoveTagsFromVaultInput'; +export * from '../types/RemoveTagsFromVaultOutput'; +export * from '../types/RemoveTagsFromVaultExceptionsUnion'; export class RemoveTagsFromVaultCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/SetDataRetrievalPolicyCommand.ts b/packages/client-glacier-node/commands/SetDataRetrievalPolicyCommand.ts index 561fcf32f3cf..cb5ca44c8033 100644 --- a/packages/client-glacier-node/commands/SetDataRetrievalPolicyCommand.ts +++ b/packages/client-glacier-node/commands/SetDataRetrievalPolicyCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {SetDataRetrievalPolicyInput} from '../types/SetDataRetrievalPolicyInput'; import {SetDataRetrievalPolicyOutput} from '../types/SetDataRetrievalPolicyOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/SetDataRetrievalPolicyInput'; +export * from '../types/SetDataRetrievalPolicyOutput'; +export * from '../types/SetDataRetrievalPolicyExceptionsUnion'; export class SetDataRetrievalPolicyCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/SetVaultAccessPolicyCommand.ts b/packages/client-glacier-node/commands/SetVaultAccessPolicyCommand.ts index 562137fe193d..73ce9df64ed4 100644 --- a/packages/client-glacier-node/commands/SetVaultAccessPolicyCommand.ts +++ b/packages/client-glacier-node/commands/SetVaultAccessPolicyCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {SetVaultAccessPolicyInput} from '../types/SetVaultAccessPolicyInput'; import {SetVaultAccessPolicyOutput} from '../types/SetVaultAccessPolicyOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/SetVaultAccessPolicyInput'; +export * from '../types/SetVaultAccessPolicyOutput'; +export * from '../types/SetVaultAccessPolicyExceptionsUnion'; export class SetVaultAccessPolicyCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/SetVaultNotificationsCommand.ts b/packages/client-glacier-node/commands/SetVaultNotificationsCommand.ts index 80e440dc5b0f..677a4bf8f00e 100644 --- a/packages/client-glacier-node/commands/SetVaultNotificationsCommand.ts +++ b/packages/client-glacier-node/commands/SetVaultNotificationsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {SetVaultNotificationsInput} from '../types/SetVaultNotificationsInput'; import {SetVaultNotificationsOutput} from '../types/SetVaultNotificationsOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/SetVaultNotificationsInput'; +export * from '../types/SetVaultNotificationsOutput'; +export * from '../types/SetVaultNotificationsExceptionsUnion'; export class SetVaultNotificationsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/UploadArchiveCommand.ts b/packages/client-glacier-node/commands/UploadArchiveCommand.ts index aac6eb45f2d9..42f3682c3021 100644 --- a/packages/client-glacier-node/commands/UploadArchiveCommand.ts +++ b/packages/client-glacier-node/commands/UploadArchiveCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UploadArchiveInput} from '../types/UploadArchiveInput'; import {UploadArchiveOutput} from '../types/UploadArchiveOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/UploadArchiveInput'; +export * from '../types/UploadArchiveOutput'; +export * from '../types/UploadArchiveExceptionsUnion'; export class UploadArchiveCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/commands/UploadMultipartPartCommand.ts b/packages/client-glacier-node/commands/UploadMultipartPartCommand.ts index c7311644bca2..9ce58b6d446f 100644 --- a/packages/client-glacier-node/commands/UploadMultipartPartCommand.ts +++ b/packages/client-glacier-node/commands/UploadMultipartPartCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UploadMultipartPartInput} from '../types/UploadMultipartPartInput'; import {UploadMultipartPartOutput} from '../types/UploadMultipartPartOutput'; import {GlacierResolvedConfiguration} from '../GlacierConfiguration'; +export * from '../types/UploadMultipartPartInput'; +export * from '../types/UploadMultipartPartOutput'; +export * from '../types/UploadMultipartPartExceptionsUnion'; export class UploadMultipartPartCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-glacier-node/model/ServiceMetadata.ts b/packages/client-glacier-node/model/ServiceMetadata.ts index d36ed007e653..be1070e7fd63 100644 --- a/packages/client-glacier-node/model/ServiceMetadata.ts +++ b/packages/client-glacier-node/model/ServiceMetadata.ts @@ -9,4 +9,4 @@ export const ServiceMetadata: _ServiceMetadata_ = { signatureVersion: 'v4', uid: 'glacier-2012-06-01' }; -export const clientVersion: string = '0.1.0-preview.2'; \ No newline at end of file +export const clientVersion: string = '0.1.0-preview.3'; \ No newline at end of file diff --git a/packages/client-glacier-node/package.json b/packages/client-glacier-node/package.json index f6d640347c37..050ed15bda10 100644 --- a/packages/client-glacier-node/package.json +++ b/packages/client-glacier-node/package.json @@ -61,4 +61,4 @@ "typedoc": "^0.10.0", "typescript": "^3.0.0" } -} +} \ No newline at end of file diff --git a/packages/client-kinesis-browser/README.md b/packages/client-kinesis-browser/README.md index 0dac8392b957..5f918b36e8e9 100644 --- a/packages/client-kinesis-browser/README.md +++ b/packages/client-kinesis-browser/README.md @@ -21,7 +21,7 @@ The AWS SDK is modulized by clients and commends in CommonJS modules. To send a ```javascript //javascript const { KinesisClient } = require('@aws-sdk/client-kinesis-browser/KinesisClient'); -const { AddTagsToStreamCommand } = require('@aws-sdk/client-kinesis-browser/AddTagsToStreamCommand'); +const { AddTagsToStreamCommand } = require('@aws-sdk/client-kinesis-browser/commands/AddTagsToStreamCommand'); ``` ```javascript @@ -112,7 +112,7 @@ The keys within exceptions are also parsed, you can access them by specifying ex Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them. - * Ask a question on [StackOverflow](https://stackoverflow.com/) and tag it with `aws-sdk-js` + * Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js` * Come join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3) * If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues) diff --git a/packages/client-kinesis-browser/commands/AddTagsToStreamCommand.ts b/packages/client-kinesis-browser/commands/AddTagsToStreamCommand.ts index c5400a1fb15f..f7bfa2c0a3f9 100644 --- a/packages/client-kinesis-browser/commands/AddTagsToStreamCommand.ts +++ b/packages/client-kinesis-browser/commands/AddTagsToStreamCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {AddTagsToStreamInput} from '../types/AddTagsToStreamInput'; import {AddTagsToStreamOutput} from '../types/AddTagsToStreamOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/AddTagsToStreamInput'; +export * from '../types/AddTagsToStreamOutput'; +export * from '../types/AddTagsToStreamExceptionsUnion'; export class AddTagsToStreamCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/CreateStreamCommand.ts b/packages/client-kinesis-browser/commands/CreateStreamCommand.ts index f179de1ff562..1d14e220b4ff 100644 --- a/packages/client-kinesis-browser/commands/CreateStreamCommand.ts +++ b/packages/client-kinesis-browser/commands/CreateStreamCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreateStreamInput} from '../types/CreateStreamInput'; import {CreateStreamOutput} from '../types/CreateStreamOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/CreateStreamInput'; +export * from '../types/CreateStreamOutput'; +export * from '../types/CreateStreamExceptionsUnion'; export class CreateStreamCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/DecreaseStreamRetentionPeriodCommand.ts b/packages/client-kinesis-browser/commands/DecreaseStreamRetentionPeriodCommand.ts index 988aef4e0e1d..1395044d1678 100644 --- a/packages/client-kinesis-browser/commands/DecreaseStreamRetentionPeriodCommand.ts +++ b/packages/client-kinesis-browser/commands/DecreaseStreamRetentionPeriodCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DecreaseStreamRetentionPeriodInput} from '../types/DecreaseStreamRetentionPeriodInput'; import {DecreaseStreamRetentionPeriodOutput} from '../types/DecreaseStreamRetentionPeriodOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/DecreaseStreamRetentionPeriodInput'; +export * from '../types/DecreaseStreamRetentionPeriodOutput'; +export * from '../types/DecreaseStreamRetentionPeriodExceptionsUnion'; export class DecreaseStreamRetentionPeriodCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/DeleteStreamCommand.ts b/packages/client-kinesis-browser/commands/DeleteStreamCommand.ts index c2f298487718..753a22a0e351 100644 --- a/packages/client-kinesis-browser/commands/DeleteStreamCommand.ts +++ b/packages/client-kinesis-browser/commands/DeleteStreamCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteStreamInput} from '../types/DeleteStreamInput'; import {DeleteStreamOutput} from '../types/DeleteStreamOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/DeleteStreamInput'; +export * from '../types/DeleteStreamOutput'; +export * from '../types/DeleteStreamExceptionsUnion'; export class DeleteStreamCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/DeregisterStreamConsumerCommand.ts b/packages/client-kinesis-browser/commands/DeregisterStreamConsumerCommand.ts index 8e36d18fdc19..97b3224c28b6 100644 --- a/packages/client-kinesis-browser/commands/DeregisterStreamConsumerCommand.ts +++ b/packages/client-kinesis-browser/commands/DeregisterStreamConsumerCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeregisterStreamConsumerInput} from '../types/DeregisterStreamConsumerInput'; import {DeregisterStreamConsumerOutput} from '../types/DeregisterStreamConsumerOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/DeregisterStreamConsumerInput'; +export * from '../types/DeregisterStreamConsumerOutput'; +export * from '../types/DeregisterStreamConsumerExceptionsUnion'; export class DeregisterStreamConsumerCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/DescribeLimitsCommand.ts b/packages/client-kinesis-browser/commands/DescribeLimitsCommand.ts index 72affb9cf472..130d86ad390b 100644 --- a/packages/client-kinesis-browser/commands/DescribeLimitsCommand.ts +++ b/packages/client-kinesis-browser/commands/DescribeLimitsCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DescribeLimitsInput} from '../types/DescribeLimitsInput'; import {DescribeLimitsOutput} from '../types/DescribeLimitsOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/DescribeLimitsInput'; +export * from '../types/DescribeLimitsOutput'; +export * from '../types/DescribeLimitsExceptionsUnion'; export class DescribeLimitsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/DescribeStreamCommand.ts b/packages/client-kinesis-browser/commands/DescribeStreamCommand.ts index 1d140090126e..63fae8ad7f18 100644 --- a/packages/client-kinesis-browser/commands/DescribeStreamCommand.ts +++ b/packages/client-kinesis-browser/commands/DescribeStreamCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DescribeStreamInput} from '../types/DescribeStreamInput'; import {DescribeStreamOutput} from '../types/DescribeStreamOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/DescribeStreamInput'; +export * from '../types/DescribeStreamOutput'; +export * from '../types/DescribeStreamExceptionsUnion'; export class DescribeStreamCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/DescribeStreamConsumerCommand.ts b/packages/client-kinesis-browser/commands/DescribeStreamConsumerCommand.ts index daa92dd3aeb4..a371bc4ab498 100644 --- a/packages/client-kinesis-browser/commands/DescribeStreamConsumerCommand.ts +++ b/packages/client-kinesis-browser/commands/DescribeStreamConsumerCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DescribeStreamConsumerInput} from '../types/DescribeStreamConsumerInput'; import {DescribeStreamConsumerOutput} from '../types/DescribeStreamConsumerOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/DescribeStreamConsumerInput'; +export * from '../types/DescribeStreamConsumerOutput'; +export * from '../types/DescribeStreamConsumerExceptionsUnion'; export class DescribeStreamConsumerCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/DescribeStreamSummaryCommand.ts b/packages/client-kinesis-browser/commands/DescribeStreamSummaryCommand.ts index 465c5ec98964..f043981d9e89 100644 --- a/packages/client-kinesis-browser/commands/DescribeStreamSummaryCommand.ts +++ b/packages/client-kinesis-browser/commands/DescribeStreamSummaryCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DescribeStreamSummaryInput} from '../types/DescribeStreamSummaryInput'; import {DescribeStreamSummaryOutput} from '../types/DescribeStreamSummaryOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/DescribeStreamSummaryInput'; +export * from '../types/DescribeStreamSummaryOutput'; +export * from '../types/DescribeStreamSummaryExceptionsUnion'; export class DescribeStreamSummaryCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/DisableEnhancedMonitoringCommand.ts b/packages/client-kinesis-browser/commands/DisableEnhancedMonitoringCommand.ts index 7ff02c59e935..8bf02ca939b9 100644 --- a/packages/client-kinesis-browser/commands/DisableEnhancedMonitoringCommand.ts +++ b/packages/client-kinesis-browser/commands/DisableEnhancedMonitoringCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DisableEnhancedMonitoringInput} from '../types/DisableEnhancedMonitoringInput'; import {DisableEnhancedMonitoringOutput} from '../types/DisableEnhancedMonitoringOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/DisableEnhancedMonitoringInput'; +export * from '../types/DisableEnhancedMonitoringOutput'; +export * from '../types/DisableEnhancedMonitoringExceptionsUnion'; export class DisableEnhancedMonitoringCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/EnableEnhancedMonitoringCommand.ts b/packages/client-kinesis-browser/commands/EnableEnhancedMonitoringCommand.ts index 686787feaf99..e423f80cb15e 100644 --- a/packages/client-kinesis-browser/commands/EnableEnhancedMonitoringCommand.ts +++ b/packages/client-kinesis-browser/commands/EnableEnhancedMonitoringCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {EnableEnhancedMonitoringInput} from '../types/EnableEnhancedMonitoringInput'; import {EnableEnhancedMonitoringOutput} from '../types/EnableEnhancedMonitoringOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/EnableEnhancedMonitoringInput'; +export * from '../types/EnableEnhancedMonitoringOutput'; +export * from '../types/EnableEnhancedMonitoringExceptionsUnion'; export class EnableEnhancedMonitoringCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/GetRecordsCommand.ts b/packages/client-kinesis-browser/commands/GetRecordsCommand.ts index 47e7fde853f5..ded8c4b53b8c 100644 --- a/packages/client-kinesis-browser/commands/GetRecordsCommand.ts +++ b/packages/client-kinesis-browser/commands/GetRecordsCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetRecordsInput} from '../types/GetRecordsInput'; import {GetRecordsOutput} from '../types/GetRecordsOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/GetRecordsInput'; +export * from '../types/GetRecordsOutput'; +export * from '../types/GetRecordsExceptionsUnion'; export class GetRecordsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/GetShardIteratorCommand.ts b/packages/client-kinesis-browser/commands/GetShardIteratorCommand.ts index 1ed019828275..c93c2dac23b8 100644 --- a/packages/client-kinesis-browser/commands/GetShardIteratorCommand.ts +++ b/packages/client-kinesis-browser/commands/GetShardIteratorCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetShardIteratorInput} from '../types/GetShardIteratorInput'; import {GetShardIteratorOutput} from '../types/GetShardIteratorOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/GetShardIteratorInput'; +export * from '../types/GetShardIteratorOutput'; +export * from '../types/GetShardIteratorExceptionsUnion'; export class GetShardIteratorCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/IncreaseStreamRetentionPeriodCommand.ts b/packages/client-kinesis-browser/commands/IncreaseStreamRetentionPeriodCommand.ts index a39bd1ff9293..d8327767afe2 100644 --- a/packages/client-kinesis-browser/commands/IncreaseStreamRetentionPeriodCommand.ts +++ b/packages/client-kinesis-browser/commands/IncreaseStreamRetentionPeriodCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {IncreaseStreamRetentionPeriodInput} from '../types/IncreaseStreamRetentionPeriodInput'; import {IncreaseStreamRetentionPeriodOutput} from '../types/IncreaseStreamRetentionPeriodOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/IncreaseStreamRetentionPeriodInput'; +export * from '../types/IncreaseStreamRetentionPeriodOutput'; +export * from '../types/IncreaseStreamRetentionPeriodExceptionsUnion'; export class IncreaseStreamRetentionPeriodCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/ListShardsCommand.ts b/packages/client-kinesis-browser/commands/ListShardsCommand.ts index ac47200cf78e..54902cfdf094 100644 --- a/packages/client-kinesis-browser/commands/ListShardsCommand.ts +++ b/packages/client-kinesis-browser/commands/ListShardsCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListShardsInput} from '../types/ListShardsInput'; import {ListShardsOutput} from '../types/ListShardsOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/ListShardsInput'; +export * from '../types/ListShardsOutput'; +export * from '../types/ListShardsExceptionsUnion'; export class ListShardsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/ListStreamConsumersCommand.ts b/packages/client-kinesis-browser/commands/ListStreamConsumersCommand.ts index 4cb1120429ee..fde600f89400 100644 --- a/packages/client-kinesis-browser/commands/ListStreamConsumersCommand.ts +++ b/packages/client-kinesis-browser/commands/ListStreamConsumersCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListStreamConsumersInput} from '../types/ListStreamConsumersInput'; import {ListStreamConsumersOutput} from '../types/ListStreamConsumersOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/ListStreamConsumersInput'; +export * from '../types/ListStreamConsumersOutput'; +export * from '../types/ListStreamConsumersExceptionsUnion'; export class ListStreamConsumersCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/ListStreamsCommand.ts b/packages/client-kinesis-browser/commands/ListStreamsCommand.ts index 3bf4be80c9de..0fb3880e35ad 100644 --- a/packages/client-kinesis-browser/commands/ListStreamsCommand.ts +++ b/packages/client-kinesis-browser/commands/ListStreamsCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListStreamsInput} from '../types/ListStreamsInput'; import {ListStreamsOutput} from '../types/ListStreamsOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/ListStreamsInput'; +export * from '../types/ListStreamsOutput'; +export * from '../types/ListStreamsExceptionsUnion'; export class ListStreamsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/ListTagsForStreamCommand.ts b/packages/client-kinesis-browser/commands/ListTagsForStreamCommand.ts index d84cb1da27a9..6e2a655cda1f 100644 --- a/packages/client-kinesis-browser/commands/ListTagsForStreamCommand.ts +++ b/packages/client-kinesis-browser/commands/ListTagsForStreamCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListTagsForStreamInput} from '../types/ListTagsForStreamInput'; import {ListTagsForStreamOutput} from '../types/ListTagsForStreamOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/ListTagsForStreamInput'; +export * from '../types/ListTagsForStreamOutput'; +export * from '../types/ListTagsForStreamExceptionsUnion'; export class ListTagsForStreamCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/MergeShardsCommand.ts b/packages/client-kinesis-browser/commands/MergeShardsCommand.ts index 5b4963b398a5..a0a1f429138a 100644 --- a/packages/client-kinesis-browser/commands/MergeShardsCommand.ts +++ b/packages/client-kinesis-browser/commands/MergeShardsCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {MergeShardsInput} from '../types/MergeShardsInput'; import {MergeShardsOutput} from '../types/MergeShardsOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/MergeShardsInput'; +export * from '../types/MergeShardsOutput'; +export * from '../types/MergeShardsExceptionsUnion'; export class MergeShardsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/PutRecordCommand.ts b/packages/client-kinesis-browser/commands/PutRecordCommand.ts index db7b06a80274..e96e5ebfd144 100644 --- a/packages/client-kinesis-browser/commands/PutRecordCommand.ts +++ b/packages/client-kinesis-browser/commands/PutRecordCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PutRecordInput} from '../types/PutRecordInput'; import {PutRecordOutput} from '../types/PutRecordOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/PutRecordInput'; +export * from '../types/PutRecordOutput'; +export * from '../types/PutRecordExceptionsUnion'; export class PutRecordCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/PutRecordsCommand.ts b/packages/client-kinesis-browser/commands/PutRecordsCommand.ts index 84bc91e13a92..4d8139dc5b58 100644 --- a/packages/client-kinesis-browser/commands/PutRecordsCommand.ts +++ b/packages/client-kinesis-browser/commands/PutRecordsCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PutRecordsInput} from '../types/PutRecordsInput'; import {PutRecordsOutput} from '../types/PutRecordsOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/PutRecordsInput'; +export * from '../types/PutRecordsOutput'; +export * from '../types/PutRecordsExceptionsUnion'; export class PutRecordsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/RegisterStreamConsumerCommand.ts b/packages/client-kinesis-browser/commands/RegisterStreamConsumerCommand.ts index b848d8fafc69..9782a3384594 100644 --- a/packages/client-kinesis-browser/commands/RegisterStreamConsumerCommand.ts +++ b/packages/client-kinesis-browser/commands/RegisterStreamConsumerCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {RegisterStreamConsumerInput} from '../types/RegisterStreamConsumerInput'; import {RegisterStreamConsumerOutput} from '../types/RegisterStreamConsumerOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/RegisterStreamConsumerInput'; +export * from '../types/RegisterStreamConsumerOutput'; +export * from '../types/RegisterStreamConsumerExceptionsUnion'; export class RegisterStreamConsumerCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/RemoveTagsFromStreamCommand.ts b/packages/client-kinesis-browser/commands/RemoveTagsFromStreamCommand.ts index 218d17a01012..3e5a4ce31279 100644 --- a/packages/client-kinesis-browser/commands/RemoveTagsFromStreamCommand.ts +++ b/packages/client-kinesis-browser/commands/RemoveTagsFromStreamCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {RemoveTagsFromStreamInput} from '../types/RemoveTagsFromStreamInput'; import {RemoveTagsFromStreamOutput} from '../types/RemoveTagsFromStreamOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/RemoveTagsFromStreamInput'; +export * from '../types/RemoveTagsFromStreamOutput'; +export * from '../types/RemoveTagsFromStreamExceptionsUnion'; export class RemoveTagsFromStreamCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/SplitShardCommand.ts b/packages/client-kinesis-browser/commands/SplitShardCommand.ts index 8a42bf0fce19..a507f668da40 100644 --- a/packages/client-kinesis-browser/commands/SplitShardCommand.ts +++ b/packages/client-kinesis-browser/commands/SplitShardCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {SplitShardInput} from '../types/SplitShardInput'; import {SplitShardOutput} from '../types/SplitShardOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/SplitShardInput'; +export * from '../types/SplitShardOutput'; +export * from '../types/SplitShardExceptionsUnion'; export class SplitShardCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/StartStreamEncryptionCommand.ts b/packages/client-kinesis-browser/commands/StartStreamEncryptionCommand.ts index b2e3f9bd4323..422bd8e457ed 100644 --- a/packages/client-kinesis-browser/commands/StartStreamEncryptionCommand.ts +++ b/packages/client-kinesis-browser/commands/StartStreamEncryptionCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {StartStreamEncryptionInput} from '../types/StartStreamEncryptionInput'; import {StartStreamEncryptionOutput} from '../types/StartStreamEncryptionOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/StartStreamEncryptionInput'; +export * from '../types/StartStreamEncryptionOutput'; +export * from '../types/StartStreamEncryptionExceptionsUnion'; export class StartStreamEncryptionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/StopStreamEncryptionCommand.ts b/packages/client-kinesis-browser/commands/StopStreamEncryptionCommand.ts index 07d661d67c4a..6a2bdc019a9d 100644 --- a/packages/client-kinesis-browser/commands/StopStreamEncryptionCommand.ts +++ b/packages/client-kinesis-browser/commands/StopStreamEncryptionCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {StopStreamEncryptionInput} from '../types/StopStreamEncryptionInput'; import {StopStreamEncryptionOutput} from '../types/StopStreamEncryptionOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/StopStreamEncryptionInput'; +export * from '../types/StopStreamEncryptionOutput'; +export * from '../types/StopStreamEncryptionExceptionsUnion'; export class StopStreamEncryptionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/commands/UpdateShardCountCommand.ts b/packages/client-kinesis-browser/commands/UpdateShardCountCommand.ts index 6597a13677d5..cf28010d5d2e 100644 --- a/packages/client-kinesis-browser/commands/UpdateShardCountCommand.ts +++ b/packages/client-kinesis-browser/commands/UpdateShardCountCommand.ts @@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateShardCountInput} from '../types/UpdateShardCountInput'; import {UpdateShardCountOutput} from '../types/UpdateShardCountOutput'; import {KinesisResolvedConfiguration} from '../KinesisConfiguration'; +export * from '../types/UpdateShardCountInput'; +export * from '../types/UpdateShardCountOutput'; +export * from '../types/UpdateShardCountExceptionsUnion'; export class UpdateShardCountCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-kinesis-browser/index.ts b/packages/client-kinesis-browser/index.ts index cbdd72e02025..f4d8aa928c8d 100644 --- a/packages/client-kinesis-browser/index.ts +++ b/packages/client-kinesis-browser/index.ts @@ -20,11 +20,8 @@ export * from './types/_PutRecordsResultEntry'; export * from './types/_Record'; export * from './types/_SequenceNumberRange'; export * from './types/_Shard'; -export * from './types/_StartingPosition'; export * from './types/_StreamDescription'; export * from './types/_StreamDescriptionSummary'; -export * from './types/_SubscribeToShardEvent'; -export * from './types/_SubscribeToShardEventStream'; export * from './types/_Tag'; export * from './types/AddTagsToStreamInput'; export * from './types/AddTagsToStreamOutput'; diff --git a/packages/client-kinesis-browser/karma.conf b/packages/client-kinesis-browser/karma.conf index 977d5c3dd9b4..787aeced2006 100644 --- a/packages/client-kinesis-browser/karma.conf +++ b/packages/client-kinesis-browser/karma.conf @@ -42,6 +42,7 @@ module.exports = function(config) { } }, singleRun: true, - concurrency: Infinity + concurrency: Infinity, + exclude: ['**/*.d.ts'] }); }; \ No newline at end of file diff --git a/packages/client-kinesis-browser/model/_StartingPosition.ts b/packages/client-kinesis-browser/model/_StartingPosition.ts deleted file mode 100644 index eeab6fc50f86..000000000000 --- a/packages/client-kinesis-browser/model/_StartingPosition.ts +++ /dev/null @@ -1,25 +0,0 @@ -import {Structure as _Structure_} from '@aws-sdk/types'; - -export const _StartingPosition: _Structure_ = { - type: 'structure', - required: [ - 'Type', - ], - members: { - Type: { - shape: { - type: 'string', - }, - }, - SequenceNumber: { - shape: { - type: 'string', - }, - }, - Timestamp: { - shape: { - type: 'timestamp', - }, - }, - }, -}; \ No newline at end of file diff --git a/packages/client-kinesis-browser/model/_SubscribeToShardEvent.ts b/packages/client-kinesis-browser/model/_SubscribeToShardEvent.ts deleted file mode 100644 index e144d59aee9c..000000000000 --- a/packages/client-kinesis-browser/model/_SubscribeToShardEvent.ts +++ /dev/null @@ -1,26 +0,0 @@ -import {_RecordList} from './_RecordList'; -import {Structure as _Structure_} from '@aws-sdk/types'; - -export const _SubscribeToShardEvent: _Structure_ = { - type: 'structure', - required: [ - 'Records', - 'ContinuationSequenceNumber', - 'MillisBehindLatest', - ], - members: { - Records: { - shape: _RecordList, - }, - ContinuationSequenceNumber: { - shape: { - type: 'string', - }, - }, - MillisBehindLatest: { - shape: { - type: 'integer', - }, - }, - }, -}; \ No newline at end of file diff --git a/packages/client-kinesis-browser/model/_SubscribeToShardEventStream.ts b/packages/client-kinesis-browser/model/_SubscribeToShardEventStream.ts deleted file mode 100644 index abfe6fb8ca56..000000000000 --- a/packages/client-kinesis-browser/model/_SubscribeToShardEventStream.ts +++ /dev/null @@ -1,14 +0,0 @@ -import {_SubscribeToShardEvent} from './_SubscribeToShardEvent'; -import {Structure as _Structure_} from '@aws-sdk/types'; - -export const _SubscribeToShardEventStream: _Structure_ = { - type: 'structure', - required: [ - 'SubscribeToShardEvent', - ], - members: { - SubscribeToShardEvent: { - shape: _SubscribeToShardEvent, - }, - }, -}; \ No newline at end of file diff --git a/packages/client-kinesis-browser/package.json b/packages/client-kinesis-browser/package.json index 224cb760bc57..08c4ea7533c4 100644 --- a/packages/client-kinesis-browser/package.json +++ b/packages/client-kinesis-browser/package.json @@ -63,4 +63,4 @@ "typedoc": "^0.10.0", "typescript": "^3.0.0" } -} +} \ No newline at end of file diff --git a/packages/client-kinesis-browser/types/_StartingPosition.ts b/packages/client-kinesis-browser/types/_StartingPosition.ts deleted file mode 100644 index 8abc79124392..000000000000 --- a/packages/client-kinesis-browser/types/_StartingPosition.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * _StartingPosition shape - */ -export interface _StartingPosition { - /** - * _ShardIteratorType shape - */ - Type: 'AT_SEQUENCE_NUMBER'|'AFTER_SEQUENCE_NUMBER'|'TRIM_HORIZON'|'LATEST'|'AT_TIMESTAMP'|string; - - /** - * _SequenceNumber shape - */ - SequenceNumber?: string; - - /** - * _Timestamp shape - */ - Timestamp?: Date|string|number; -} - -export interface _UnmarshalledStartingPosition extends _StartingPosition { - /** - * _Timestamp shape - */ - Timestamp?: Date; -} \ No newline at end of file diff --git a/packages/client-kinesis-browser/types/_SubscribeToShardEvent.ts b/packages/client-kinesis-browser/types/_SubscribeToShardEvent.ts deleted file mode 100644 index 5bfa4db9a9a5..000000000000 --- a/packages/client-kinesis-browser/types/_SubscribeToShardEvent.ts +++ /dev/null @@ -1,28 +0,0 @@ -import {_Record, _UnmarshalledRecord} from './_Record'; - -/** - *

After you call SubscribeToShard, Kinesis Data Streams sends events of this type to your consumer.

- */ -export interface _SubscribeToShardEvent { - /** - *

- */ - Records: Array<_Record>|Iterable<_Record>; - - /** - *

Use this as StartingSequenceNumber in the next call to SubscribeToShard.

- */ - ContinuationSequenceNumber: string; - - /** - *

The number of milliseconds the read records are from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.

- */ - MillisBehindLatest: number; -} - -export interface _UnmarshalledSubscribeToShardEvent extends _SubscribeToShardEvent { - /** - *

- */ - Records: Array<_UnmarshalledRecord>; -} \ No newline at end of file diff --git a/packages/client-kinesis-browser/types/_SubscribeToShardEventStream.ts b/packages/client-kinesis-browser/types/_SubscribeToShardEventStream.ts deleted file mode 100644 index 6e905f02b321..000000000000 --- a/packages/client-kinesis-browser/types/_SubscribeToShardEventStream.ts +++ /dev/null @@ -1,18 +0,0 @@ -import {_SubscribeToShardEvent, _UnmarshalledSubscribeToShardEvent} from './_SubscribeToShardEvent'; - -/** - * _SubscribeToShardEventStream shape - */ -export interface _SubscribeToShardEventStream { - /** - *

After you call SubscribeToShard, Kinesis Data Streams sends events of this type to your consumer.

- */ - SubscribeToShardEvent: _SubscribeToShardEvent; -} - -export interface _UnmarshalledSubscribeToShardEventStream extends _SubscribeToShardEventStream { - /** - *

After you call SubscribeToShard, Kinesis Data Streams sends events of this type to your consumer.

- */ - SubscribeToShardEvent: _UnmarshalledSubscribeToShardEvent; -} \ No newline at end of file diff --git a/packages/client-lambda-node/README.md b/packages/client-lambda-node/README.md index 0872aff7e2fb..9a3ba720f1cb 100644 --- a/packages/client-lambda-node/README.md +++ b/packages/client-lambda-node/README.md @@ -21,7 +21,7 @@ The AWS SDK is modulized by clients and commends in CommonJS modules. To send a ```javascript //javascript const { LambdaClient } = require('@aws-sdk/client-lambda-node/LambdaClient'); -const { InvokeAsyncCommand } = require('@aws-sdk/client-lambda-node/InvokeAsyncCommand'); +const { InvokeAsyncCommand } = require('@aws-sdk/client-lambda-node/commands/InvokeAsyncCommand'); ``` ```javascript @@ -113,7 +113,7 @@ The keys within exceptions are also parsed, you can access them by specifying ex Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them. - * Ask a question on [StackOverflow](https://stackoverflow.com/) and tag it with `aws-sdk-js` + * Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js` * Come join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3) * If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues) diff --git a/packages/client-lambda-node/commands/AddPermissionCommand.ts b/packages/client-lambda-node/commands/AddPermissionCommand.ts index 0d6d4145b7a0..a2379c648aa5 100644 --- a/packages/client-lambda-node/commands/AddPermissionCommand.ts +++ b/packages/client-lambda-node/commands/AddPermissionCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {AddPermissionInput} from '../types/AddPermissionInput'; import {AddPermissionOutput} from '../types/AddPermissionOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/AddPermissionInput'; +export * from '../types/AddPermissionOutput'; +export * from '../types/AddPermissionExceptionsUnion'; export class AddPermissionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/CreateAliasCommand.ts b/packages/client-lambda-node/commands/CreateAliasCommand.ts index b8e13f6a5f52..38d047f427c0 100644 --- a/packages/client-lambda-node/commands/CreateAliasCommand.ts +++ b/packages/client-lambda-node/commands/CreateAliasCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreateAliasInput} from '../types/CreateAliasInput'; import {CreateAliasOutput} from '../types/CreateAliasOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/CreateAliasInput'; +export * from '../types/CreateAliasOutput'; +export * from '../types/CreateAliasExceptionsUnion'; export class CreateAliasCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/CreateEventSourceMappingCommand.ts b/packages/client-lambda-node/commands/CreateEventSourceMappingCommand.ts index 792b5b0b2cec..19aa1cd64be7 100644 --- a/packages/client-lambda-node/commands/CreateEventSourceMappingCommand.ts +++ b/packages/client-lambda-node/commands/CreateEventSourceMappingCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreateEventSourceMappingInput} from '../types/CreateEventSourceMappingInput'; import {CreateEventSourceMappingOutput} from '../types/CreateEventSourceMappingOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/CreateEventSourceMappingInput'; +export * from '../types/CreateEventSourceMappingOutput'; +export * from '../types/CreateEventSourceMappingExceptionsUnion'; export class CreateEventSourceMappingCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/CreateFunctionCommand.ts b/packages/client-lambda-node/commands/CreateFunctionCommand.ts index 92c513b1ae13..1d8cde9ea7f8 100644 --- a/packages/client-lambda-node/commands/CreateFunctionCommand.ts +++ b/packages/client-lambda-node/commands/CreateFunctionCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreateFunctionInput} from '../types/CreateFunctionInput'; import {CreateFunctionOutput} from '../types/CreateFunctionOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/CreateFunctionInput'; +export * from '../types/CreateFunctionOutput'; +export * from '../types/CreateFunctionExceptionsUnion'; export class CreateFunctionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/DeleteAliasCommand.ts b/packages/client-lambda-node/commands/DeleteAliasCommand.ts index 6a222d9452ed..6c06be2e5a45 100644 --- a/packages/client-lambda-node/commands/DeleteAliasCommand.ts +++ b/packages/client-lambda-node/commands/DeleteAliasCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteAliasInput} from '../types/DeleteAliasInput'; import {DeleteAliasOutput} from '../types/DeleteAliasOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/DeleteAliasInput'; +export * from '../types/DeleteAliasOutput'; +export * from '../types/DeleteAliasExceptionsUnion'; export class DeleteAliasCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/DeleteEventSourceMappingCommand.ts b/packages/client-lambda-node/commands/DeleteEventSourceMappingCommand.ts index 4fd240ca045b..0ba59118de2b 100644 --- a/packages/client-lambda-node/commands/DeleteEventSourceMappingCommand.ts +++ b/packages/client-lambda-node/commands/DeleteEventSourceMappingCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteEventSourceMappingInput} from '../types/DeleteEventSourceMappingInput'; import {DeleteEventSourceMappingOutput} from '../types/DeleteEventSourceMappingOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/DeleteEventSourceMappingInput'; +export * from '../types/DeleteEventSourceMappingOutput'; +export * from '../types/DeleteEventSourceMappingExceptionsUnion'; export class DeleteEventSourceMappingCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/DeleteFunctionCommand.ts b/packages/client-lambda-node/commands/DeleteFunctionCommand.ts index acc8986be28f..cbd762ae65e3 100644 --- a/packages/client-lambda-node/commands/DeleteFunctionCommand.ts +++ b/packages/client-lambda-node/commands/DeleteFunctionCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteFunctionInput} from '../types/DeleteFunctionInput'; import {DeleteFunctionOutput} from '../types/DeleteFunctionOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/DeleteFunctionInput'; +export * from '../types/DeleteFunctionOutput'; +export * from '../types/DeleteFunctionExceptionsUnion'; export class DeleteFunctionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/DeleteFunctionConcurrencyCommand.ts b/packages/client-lambda-node/commands/DeleteFunctionConcurrencyCommand.ts index ec676bad6d2f..bcc6a17c7fdf 100644 --- a/packages/client-lambda-node/commands/DeleteFunctionConcurrencyCommand.ts +++ b/packages/client-lambda-node/commands/DeleteFunctionConcurrencyCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteFunctionConcurrencyInput} from '../types/DeleteFunctionConcurrencyInput'; import {DeleteFunctionConcurrencyOutput} from '../types/DeleteFunctionConcurrencyOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/DeleteFunctionConcurrencyInput'; +export * from '../types/DeleteFunctionConcurrencyOutput'; +export * from '../types/DeleteFunctionConcurrencyExceptionsUnion'; export class DeleteFunctionConcurrencyCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/GetAccountSettingsCommand.ts b/packages/client-lambda-node/commands/GetAccountSettingsCommand.ts index ce0ca800970b..dd5ae15f8191 100644 --- a/packages/client-lambda-node/commands/GetAccountSettingsCommand.ts +++ b/packages/client-lambda-node/commands/GetAccountSettingsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetAccountSettingsInput} from '../types/GetAccountSettingsInput'; import {GetAccountSettingsOutput} from '../types/GetAccountSettingsOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/GetAccountSettingsInput'; +export * from '../types/GetAccountSettingsOutput'; +export * from '../types/GetAccountSettingsExceptionsUnion'; export class GetAccountSettingsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/GetAliasCommand.ts b/packages/client-lambda-node/commands/GetAliasCommand.ts index 7f23ddcd7a47..6ba60d191d37 100644 --- a/packages/client-lambda-node/commands/GetAliasCommand.ts +++ b/packages/client-lambda-node/commands/GetAliasCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetAliasInput} from '../types/GetAliasInput'; import {GetAliasOutput} from '../types/GetAliasOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/GetAliasInput'; +export * from '../types/GetAliasOutput'; +export * from '../types/GetAliasExceptionsUnion'; export class GetAliasCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/GetEventSourceMappingCommand.ts b/packages/client-lambda-node/commands/GetEventSourceMappingCommand.ts index 0ec24a3a4fd4..bdb49ddc5de4 100644 --- a/packages/client-lambda-node/commands/GetEventSourceMappingCommand.ts +++ b/packages/client-lambda-node/commands/GetEventSourceMappingCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetEventSourceMappingInput} from '../types/GetEventSourceMappingInput'; import {GetEventSourceMappingOutput} from '../types/GetEventSourceMappingOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/GetEventSourceMappingInput'; +export * from '../types/GetEventSourceMappingOutput'; +export * from '../types/GetEventSourceMappingExceptionsUnion'; export class GetEventSourceMappingCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/GetFunctionCommand.ts b/packages/client-lambda-node/commands/GetFunctionCommand.ts index 28c17918c7ee..bafabec4c25e 100644 --- a/packages/client-lambda-node/commands/GetFunctionCommand.ts +++ b/packages/client-lambda-node/commands/GetFunctionCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetFunctionInput} from '../types/GetFunctionInput'; import {GetFunctionOutput} from '../types/GetFunctionOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/GetFunctionInput'; +export * from '../types/GetFunctionOutput'; +export * from '../types/GetFunctionExceptionsUnion'; export class GetFunctionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/GetFunctionConfigurationCommand.ts b/packages/client-lambda-node/commands/GetFunctionConfigurationCommand.ts index cf87e1b77860..3a4e0a3a0724 100644 --- a/packages/client-lambda-node/commands/GetFunctionConfigurationCommand.ts +++ b/packages/client-lambda-node/commands/GetFunctionConfigurationCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetFunctionConfigurationInput} from '../types/GetFunctionConfigurationInput'; import {GetFunctionConfigurationOutput} from '../types/GetFunctionConfigurationOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/GetFunctionConfigurationInput'; +export * from '../types/GetFunctionConfigurationOutput'; +export * from '../types/GetFunctionConfigurationExceptionsUnion'; export class GetFunctionConfigurationCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/GetPolicyCommand.ts b/packages/client-lambda-node/commands/GetPolicyCommand.ts index b9b3953b7482..ef64fdbaa58d 100644 --- a/packages/client-lambda-node/commands/GetPolicyCommand.ts +++ b/packages/client-lambda-node/commands/GetPolicyCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetPolicyInput} from '../types/GetPolicyInput'; import {GetPolicyOutput} from '../types/GetPolicyOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/GetPolicyInput'; +export * from '../types/GetPolicyOutput'; +export * from '../types/GetPolicyExceptionsUnion'; export class GetPolicyCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/InvokeAsyncCommand.ts b/packages/client-lambda-node/commands/InvokeAsyncCommand.ts index e44be652311b..0e3a1707976b 100644 --- a/packages/client-lambda-node/commands/InvokeAsyncCommand.ts +++ b/packages/client-lambda-node/commands/InvokeAsyncCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {InvokeAsyncInput} from '../types/InvokeAsyncInput'; import {InvokeAsyncOutput} from '../types/InvokeAsyncOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/InvokeAsyncInput'; +export * from '../types/InvokeAsyncOutput'; +export * from '../types/InvokeAsyncExceptionsUnion'; export class InvokeAsyncCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/InvokeCommand.ts b/packages/client-lambda-node/commands/InvokeCommand.ts index a98820a006aa..da1d81f47881 100644 --- a/packages/client-lambda-node/commands/InvokeCommand.ts +++ b/packages/client-lambda-node/commands/InvokeCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {InvokeInput} from '../types/InvokeInput'; import {InvokeOutput} from '../types/InvokeOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/InvokeInput'; +export * from '../types/InvokeOutput'; +export * from '../types/InvokeExceptionsUnion'; export class InvokeCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/ListAliasesCommand.ts b/packages/client-lambda-node/commands/ListAliasesCommand.ts index 816338d1937f..3d74a6761883 100644 --- a/packages/client-lambda-node/commands/ListAliasesCommand.ts +++ b/packages/client-lambda-node/commands/ListAliasesCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListAliasesInput} from '../types/ListAliasesInput'; import {ListAliasesOutput} from '../types/ListAliasesOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/ListAliasesInput'; +export * from '../types/ListAliasesOutput'; +export * from '../types/ListAliasesExceptionsUnion'; export class ListAliasesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/ListEventSourceMappingsCommand.ts b/packages/client-lambda-node/commands/ListEventSourceMappingsCommand.ts index 26cbe700fe75..80296d3f26fc 100644 --- a/packages/client-lambda-node/commands/ListEventSourceMappingsCommand.ts +++ b/packages/client-lambda-node/commands/ListEventSourceMappingsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListEventSourceMappingsInput} from '../types/ListEventSourceMappingsInput'; import {ListEventSourceMappingsOutput} from '../types/ListEventSourceMappingsOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/ListEventSourceMappingsInput'; +export * from '../types/ListEventSourceMappingsOutput'; +export * from '../types/ListEventSourceMappingsExceptionsUnion'; export class ListEventSourceMappingsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/ListFunctionsCommand.ts b/packages/client-lambda-node/commands/ListFunctionsCommand.ts index 199201edfda9..f9b2e2dc7591 100644 --- a/packages/client-lambda-node/commands/ListFunctionsCommand.ts +++ b/packages/client-lambda-node/commands/ListFunctionsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListFunctionsInput} from '../types/ListFunctionsInput'; import {ListFunctionsOutput} from '../types/ListFunctionsOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/ListFunctionsInput'; +export * from '../types/ListFunctionsOutput'; +export * from '../types/ListFunctionsExceptionsUnion'; export class ListFunctionsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/ListTagsCommand.ts b/packages/client-lambda-node/commands/ListTagsCommand.ts index 4f1d6207361f..bf40e6753083 100644 --- a/packages/client-lambda-node/commands/ListTagsCommand.ts +++ b/packages/client-lambda-node/commands/ListTagsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListTagsInput} from '../types/ListTagsInput'; import {ListTagsOutput} from '../types/ListTagsOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/ListTagsInput'; +export * from '../types/ListTagsOutput'; +export * from '../types/ListTagsExceptionsUnion'; export class ListTagsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/ListVersionsByFunctionCommand.ts b/packages/client-lambda-node/commands/ListVersionsByFunctionCommand.ts index 2a1ef5fb2e63..f1ea82603b80 100644 --- a/packages/client-lambda-node/commands/ListVersionsByFunctionCommand.ts +++ b/packages/client-lambda-node/commands/ListVersionsByFunctionCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {ListVersionsByFunctionInput} from '../types/ListVersionsByFunctionInput'; import {ListVersionsByFunctionOutput} from '../types/ListVersionsByFunctionOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/ListVersionsByFunctionInput'; +export * from '../types/ListVersionsByFunctionOutput'; +export * from '../types/ListVersionsByFunctionExceptionsUnion'; export class ListVersionsByFunctionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/PublishVersionCommand.ts b/packages/client-lambda-node/commands/PublishVersionCommand.ts index fc51dc9d3045..cea3785295e6 100644 --- a/packages/client-lambda-node/commands/PublishVersionCommand.ts +++ b/packages/client-lambda-node/commands/PublishVersionCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PublishVersionInput} from '../types/PublishVersionInput'; import {PublishVersionOutput} from '../types/PublishVersionOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/PublishVersionInput'; +export * from '../types/PublishVersionOutput'; +export * from '../types/PublishVersionExceptionsUnion'; export class PublishVersionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/PutFunctionConcurrencyCommand.ts b/packages/client-lambda-node/commands/PutFunctionConcurrencyCommand.ts index f593fd52ec13..a05804da45d3 100644 --- a/packages/client-lambda-node/commands/PutFunctionConcurrencyCommand.ts +++ b/packages/client-lambda-node/commands/PutFunctionConcurrencyCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PutFunctionConcurrencyInput} from '../types/PutFunctionConcurrencyInput'; import {PutFunctionConcurrencyOutput} from '../types/PutFunctionConcurrencyOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/PutFunctionConcurrencyInput'; +export * from '../types/PutFunctionConcurrencyOutput'; +export * from '../types/PutFunctionConcurrencyExceptionsUnion'; export class PutFunctionConcurrencyCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/RemovePermissionCommand.ts b/packages/client-lambda-node/commands/RemovePermissionCommand.ts index 0af80a059acb..dc3b29d086ec 100644 --- a/packages/client-lambda-node/commands/RemovePermissionCommand.ts +++ b/packages/client-lambda-node/commands/RemovePermissionCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {RemovePermissionInput} from '../types/RemovePermissionInput'; import {RemovePermissionOutput} from '../types/RemovePermissionOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/RemovePermissionInput'; +export * from '../types/RemovePermissionOutput'; +export * from '../types/RemovePermissionExceptionsUnion'; export class RemovePermissionCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/TagResourceCommand.ts b/packages/client-lambda-node/commands/TagResourceCommand.ts index 83b657da6223..9ea45f7cec8b 100644 --- a/packages/client-lambda-node/commands/TagResourceCommand.ts +++ b/packages/client-lambda-node/commands/TagResourceCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {TagResourceInput} from '../types/TagResourceInput'; import {TagResourceOutput} from '../types/TagResourceOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/TagResourceInput'; +export * from '../types/TagResourceOutput'; +export * from '../types/TagResourceExceptionsUnion'; export class TagResourceCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/UntagResourceCommand.ts b/packages/client-lambda-node/commands/UntagResourceCommand.ts index 366befc18587..0cc8e59f8eb5 100644 --- a/packages/client-lambda-node/commands/UntagResourceCommand.ts +++ b/packages/client-lambda-node/commands/UntagResourceCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UntagResourceInput} from '../types/UntagResourceInput'; import {UntagResourceOutput} from '../types/UntagResourceOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/UntagResourceInput'; +export * from '../types/UntagResourceOutput'; +export * from '../types/UntagResourceExceptionsUnion'; export class UntagResourceCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/UpdateAliasCommand.ts b/packages/client-lambda-node/commands/UpdateAliasCommand.ts index 8322d6686f5f..7715a9f91ad7 100644 --- a/packages/client-lambda-node/commands/UpdateAliasCommand.ts +++ b/packages/client-lambda-node/commands/UpdateAliasCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateAliasInput} from '../types/UpdateAliasInput'; import {UpdateAliasOutput} from '../types/UpdateAliasOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/UpdateAliasInput'; +export * from '../types/UpdateAliasOutput'; +export * from '../types/UpdateAliasExceptionsUnion'; export class UpdateAliasCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/UpdateEventSourceMappingCommand.ts b/packages/client-lambda-node/commands/UpdateEventSourceMappingCommand.ts index 7ce273203b98..d080166afdcf 100644 --- a/packages/client-lambda-node/commands/UpdateEventSourceMappingCommand.ts +++ b/packages/client-lambda-node/commands/UpdateEventSourceMappingCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateEventSourceMappingInput} from '../types/UpdateEventSourceMappingInput'; import {UpdateEventSourceMappingOutput} from '../types/UpdateEventSourceMappingOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/UpdateEventSourceMappingInput'; +export * from '../types/UpdateEventSourceMappingOutput'; +export * from '../types/UpdateEventSourceMappingExceptionsUnion'; export class UpdateEventSourceMappingCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/UpdateFunctionCodeCommand.ts b/packages/client-lambda-node/commands/UpdateFunctionCodeCommand.ts index da0681844e3d..55ee8da8bb48 100644 --- a/packages/client-lambda-node/commands/UpdateFunctionCodeCommand.ts +++ b/packages/client-lambda-node/commands/UpdateFunctionCodeCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateFunctionCodeInput} from '../types/UpdateFunctionCodeInput'; import {UpdateFunctionCodeOutput} from '../types/UpdateFunctionCodeOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/UpdateFunctionCodeInput'; +export * from '../types/UpdateFunctionCodeOutput'; +export * from '../types/UpdateFunctionCodeExceptionsUnion'; export class UpdateFunctionCodeCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/commands/UpdateFunctionConfigurationCommand.ts b/packages/client-lambda-node/commands/UpdateFunctionConfigurationCommand.ts index 61b9323d65f9..27d1be315a75 100644 --- a/packages/client-lambda-node/commands/UpdateFunctionConfigurationCommand.ts +++ b/packages/client-lambda-node/commands/UpdateFunctionConfigurationCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateFunctionConfigurationInput} from '../types/UpdateFunctionConfigurationInput'; import {UpdateFunctionConfigurationOutput} from '../types/UpdateFunctionConfigurationOutput'; import {LambdaResolvedConfiguration} from '../LambdaConfiguration'; +export * from '../types/UpdateFunctionConfigurationInput'; +export * from '../types/UpdateFunctionConfigurationOutput'; +export * from '../types/UpdateFunctionConfigurationExceptionsUnion'; export class UpdateFunctionConfigurationCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-lambda-node/model/ServiceMetadata.ts b/packages/client-lambda-node/model/ServiceMetadata.ts index 9636a14fbcfe..9038ec3f3eff 100644 --- a/packages/client-lambda-node/model/ServiceMetadata.ts +++ b/packages/client-lambda-node/model/ServiceMetadata.ts @@ -9,4 +9,4 @@ export const ServiceMetadata: _ServiceMetadata_ = { signatureVersion: 'v4', uid: 'lambda-2015-03-31' }; -export const clientVersion: string = '0.1.0-preview.2'; \ No newline at end of file +export const clientVersion: string = '0.1.0-preview.3'; \ No newline at end of file diff --git a/packages/client-lambda-node/package.json b/packages/client-lambda-node/package.json index 7705ac17e42d..179a075db3e3 100644 --- a/packages/client-lambda-node/package.json +++ b/packages/client-lambda-node/package.json @@ -58,4 +58,4 @@ "typedoc": "^0.10.0", "typescript": "^3.0.0" } -} +} \ No newline at end of file diff --git a/packages/client-pinpoint-browser/model/ServiceMetadata.ts b/packages/client-pinpoint-browser/model/ServiceMetadata.ts index ad2f82e1908d..e2cffa5870e9 100644 --- a/packages/client-pinpoint-browser/model/ServiceMetadata.ts +++ b/packages/client-pinpoint-browser/model/ServiceMetadata.ts @@ -11,4 +11,4 @@ export const ServiceMetadata: _ServiceMetadata_ = { signingName: 'mobiletargeting', uid: 'pinpoint-2016-12-01' }; -export const clientVersion: string = '0.1.0-preview.1'; \ No newline at end of file +export const clientVersion: string = '0.1.0-preview.2'; \ No newline at end of file diff --git a/packages/client-pinpoint-browser/package.json b/packages/client-pinpoint-browser/package.json index c59ec10a671a..56ff91ac77a5 100644 --- a/packages/client-pinpoint-browser/package.json +++ b/packages/client-pinpoint-browser/package.json @@ -63,4 +63,4 @@ "typedoc": "^0.10.0", "typescript": "^3.0.0" } -} +} \ No newline at end of file diff --git a/packages/client-sqs-node/model/ServiceMetadata.ts b/packages/client-sqs-node/model/ServiceMetadata.ts index 0c742627271e..aa467a7b2f2e 100644 --- a/packages/client-sqs-node/model/ServiceMetadata.ts +++ b/packages/client-sqs-node/model/ServiceMetadata.ts @@ -11,4 +11,4 @@ export const ServiceMetadata: _ServiceMetadata_ = { uid: 'sqs-2012-11-05', xmlNamespace: {"uri":"http://queue.amazonaws.com/doc/2012-11-05/"} }; -export const clientVersion: string = '0.1.0-preview.2'; \ No newline at end of file +export const clientVersion: string = '0.1.0-preview.3'; \ No newline at end of file diff --git a/packages/client-sqs-node/package.json b/packages/client-sqs-node/package.json index 0323f4ff176b..30d67e87ecfa 100644 --- a/packages/client-sqs-node/package.json +++ b/packages/client-sqs-node/package.json @@ -58,4 +58,4 @@ "typedoc": "^0.10.0", "typescript": "^3.0.0" } -} +} \ No newline at end of file diff --git a/packages/client-xray-node/README.md b/packages/client-xray-node/README.md index c7a64672482b..444670c1ae13 100644 --- a/packages/client-xray-node/README.md +++ b/packages/client-xray-node/README.md @@ -21,7 +21,7 @@ The AWS SDK is modulized by clients and commends in CommonJS modules. To send a ```javascript //javascript const { XRayClient } = require('@aws-sdk/client-xray-node/XRayClient'); -const { BatchGetTracesCommand } = require('@aws-sdk/client-xray-node/BatchGetTracesCommand'); +const { BatchGetTracesCommand } = require('@aws-sdk/client-xray-node/commands/BatchGetTracesCommand'); ``` ```javascript @@ -111,7 +111,7 @@ The keys within exceptions are also parsed, you can access them by specifying ex Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them. - * Ask a question on [StackOverflow](https://stackoverflow.com/) and tag it with `aws-sdk-js` + * Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js` * Come join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3) * If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues) diff --git a/packages/client-xray-node/commands/BatchGetTracesCommand.ts b/packages/client-xray-node/commands/BatchGetTracesCommand.ts index e7170d7d8fb4..8ba5b1dd636d 100644 --- a/packages/client-xray-node/commands/BatchGetTracesCommand.ts +++ b/packages/client-xray-node/commands/BatchGetTracesCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {BatchGetTracesInput} from '../types/BatchGetTracesInput'; import {BatchGetTracesOutput} from '../types/BatchGetTracesOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/BatchGetTracesInput'; +export * from '../types/BatchGetTracesOutput'; +export * from '../types/BatchGetTracesExceptionsUnion'; export class BatchGetTracesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/CreateSamplingRuleCommand.ts b/packages/client-xray-node/commands/CreateSamplingRuleCommand.ts index e22dec7cff3c..469fa070cd13 100644 --- a/packages/client-xray-node/commands/CreateSamplingRuleCommand.ts +++ b/packages/client-xray-node/commands/CreateSamplingRuleCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {CreateSamplingRuleInput} from '../types/CreateSamplingRuleInput'; import {CreateSamplingRuleOutput} from '../types/CreateSamplingRuleOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/CreateSamplingRuleInput'; +export * from '../types/CreateSamplingRuleOutput'; +export * from '../types/CreateSamplingRuleExceptionsUnion'; export class CreateSamplingRuleCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/DeleteSamplingRuleCommand.ts b/packages/client-xray-node/commands/DeleteSamplingRuleCommand.ts index 9888e59c06d4..2da55107fb11 100644 --- a/packages/client-xray-node/commands/DeleteSamplingRuleCommand.ts +++ b/packages/client-xray-node/commands/DeleteSamplingRuleCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {DeleteSamplingRuleInput} from '../types/DeleteSamplingRuleInput'; import {DeleteSamplingRuleOutput} from '../types/DeleteSamplingRuleOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/DeleteSamplingRuleInput'; +export * from '../types/DeleteSamplingRuleOutput'; +export * from '../types/DeleteSamplingRuleExceptionsUnion'; export class DeleteSamplingRuleCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/GetEncryptionConfigCommand.ts b/packages/client-xray-node/commands/GetEncryptionConfigCommand.ts index 8aa51387f7df..73d2e25e2d71 100644 --- a/packages/client-xray-node/commands/GetEncryptionConfigCommand.ts +++ b/packages/client-xray-node/commands/GetEncryptionConfigCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetEncryptionConfigInput} from '../types/GetEncryptionConfigInput'; import {GetEncryptionConfigOutput} from '../types/GetEncryptionConfigOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/GetEncryptionConfigInput'; +export * from '../types/GetEncryptionConfigOutput'; +export * from '../types/GetEncryptionConfigExceptionsUnion'; export class GetEncryptionConfigCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/GetSamplingRulesCommand.ts b/packages/client-xray-node/commands/GetSamplingRulesCommand.ts index 19d0a1cc30cf..33916567b2b4 100644 --- a/packages/client-xray-node/commands/GetSamplingRulesCommand.ts +++ b/packages/client-xray-node/commands/GetSamplingRulesCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetSamplingRulesInput} from '../types/GetSamplingRulesInput'; import {GetSamplingRulesOutput} from '../types/GetSamplingRulesOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/GetSamplingRulesInput'; +export * from '../types/GetSamplingRulesOutput'; +export * from '../types/GetSamplingRulesExceptionsUnion'; export class GetSamplingRulesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/GetSamplingStatisticSummariesCommand.ts b/packages/client-xray-node/commands/GetSamplingStatisticSummariesCommand.ts index 4dbe9bdfbd31..668fe9fe4b5e 100644 --- a/packages/client-xray-node/commands/GetSamplingStatisticSummariesCommand.ts +++ b/packages/client-xray-node/commands/GetSamplingStatisticSummariesCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetSamplingStatisticSummariesInput} from '../types/GetSamplingStatisticSummariesInput'; import {GetSamplingStatisticSummariesOutput} from '../types/GetSamplingStatisticSummariesOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/GetSamplingStatisticSummariesInput'; +export * from '../types/GetSamplingStatisticSummariesOutput'; +export * from '../types/GetSamplingStatisticSummariesExceptionsUnion'; export class GetSamplingStatisticSummariesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/GetSamplingTargetsCommand.ts b/packages/client-xray-node/commands/GetSamplingTargetsCommand.ts index b684221c4b42..a2557a1bb73e 100644 --- a/packages/client-xray-node/commands/GetSamplingTargetsCommand.ts +++ b/packages/client-xray-node/commands/GetSamplingTargetsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetSamplingTargetsInput} from '../types/GetSamplingTargetsInput'; import {GetSamplingTargetsOutput} from '../types/GetSamplingTargetsOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/GetSamplingTargetsInput'; +export * from '../types/GetSamplingTargetsOutput'; +export * from '../types/GetSamplingTargetsExceptionsUnion'; export class GetSamplingTargetsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/GetServiceGraphCommand.ts b/packages/client-xray-node/commands/GetServiceGraphCommand.ts index be056ab6e004..62d7622e7491 100644 --- a/packages/client-xray-node/commands/GetServiceGraphCommand.ts +++ b/packages/client-xray-node/commands/GetServiceGraphCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetServiceGraphInput} from '../types/GetServiceGraphInput'; import {GetServiceGraphOutput} from '../types/GetServiceGraphOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/GetServiceGraphInput'; +export * from '../types/GetServiceGraphOutput'; +export * from '../types/GetServiceGraphExceptionsUnion'; export class GetServiceGraphCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/GetTraceGraphCommand.ts b/packages/client-xray-node/commands/GetTraceGraphCommand.ts index 2d804a50b8ef..b17619831913 100644 --- a/packages/client-xray-node/commands/GetTraceGraphCommand.ts +++ b/packages/client-xray-node/commands/GetTraceGraphCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetTraceGraphInput} from '../types/GetTraceGraphInput'; import {GetTraceGraphOutput} from '../types/GetTraceGraphOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/GetTraceGraphInput'; +export * from '../types/GetTraceGraphOutput'; +export * from '../types/GetTraceGraphExceptionsUnion'; export class GetTraceGraphCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/GetTraceSummariesCommand.ts b/packages/client-xray-node/commands/GetTraceSummariesCommand.ts index 673c1fe80d82..c4de3ba2d40c 100644 --- a/packages/client-xray-node/commands/GetTraceSummariesCommand.ts +++ b/packages/client-xray-node/commands/GetTraceSummariesCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {GetTraceSummariesInput} from '../types/GetTraceSummariesInput'; import {GetTraceSummariesOutput} from '../types/GetTraceSummariesOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/GetTraceSummariesInput'; +export * from '../types/GetTraceSummariesOutput'; +export * from '../types/GetTraceSummariesExceptionsUnion'; export class GetTraceSummariesCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/PutEncryptionConfigCommand.ts b/packages/client-xray-node/commands/PutEncryptionConfigCommand.ts index 582d628b8f4c..3791b99c51a4 100644 --- a/packages/client-xray-node/commands/PutEncryptionConfigCommand.ts +++ b/packages/client-xray-node/commands/PutEncryptionConfigCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PutEncryptionConfigInput} from '../types/PutEncryptionConfigInput'; import {PutEncryptionConfigOutput} from '../types/PutEncryptionConfigOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/PutEncryptionConfigInput'; +export * from '../types/PutEncryptionConfigOutput'; +export * from '../types/PutEncryptionConfigExceptionsUnion'; export class PutEncryptionConfigCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/PutTelemetryRecordsCommand.ts b/packages/client-xray-node/commands/PutTelemetryRecordsCommand.ts index b836111a5737..c4865b9ce752 100644 --- a/packages/client-xray-node/commands/PutTelemetryRecordsCommand.ts +++ b/packages/client-xray-node/commands/PutTelemetryRecordsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PutTelemetryRecordsInput} from '../types/PutTelemetryRecordsInput'; import {PutTelemetryRecordsOutput} from '../types/PutTelemetryRecordsOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/PutTelemetryRecordsInput'; +export * from '../types/PutTelemetryRecordsOutput'; +export * from '../types/PutTelemetryRecordsExceptionsUnion'; export class PutTelemetryRecordsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/PutTraceSegmentsCommand.ts b/packages/client-xray-node/commands/PutTraceSegmentsCommand.ts index 9ca5750322f7..4af5ce20bb95 100644 --- a/packages/client-xray-node/commands/PutTraceSegmentsCommand.ts +++ b/packages/client-xray-node/commands/PutTraceSegmentsCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {PutTraceSegmentsInput} from '../types/PutTraceSegmentsInput'; import {PutTraceSegmentsOutput} from '../types/PutTraceSegmentsOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/PutTraceSegmentsInput'; +export * from '../types/PutTraceSegmentsOutput'; +export * from '../types/PutTraceSegmentsExceptionsUnion'; export class PutTraceSegmentsCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/commands/UpdateSamplingRuleCommand.ts b/packages/client-xray-node/commands/UpdateSamplingRuleCommand.ts index 45146784dd43..dc1932426f23 100644 --- a/packages/client-xray-node/commands/UpdateSamplingRuleCommand.ts +++ b/packages/client-xray-node/commands/UpdateSamplingRuleCommand.ts @@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion'; import {UpdateSamplingRuleInput} from '../types/UpdateSamplingRuleInput'; import {UpdateSamplingRuleOutput} from '../types/UpdateSamplingRuleOutput'; import {XRayResolvedConfiguration} from '../XRayConfiguration'; +export * from '../types/UpdateSamplingRuleInput'; +export * from '../types/UpdateSamplingRuleOutput'; +export * from '../types/UpdateSamplingRuleExceptionsUnion'; export class UpdateSamplingRuleCommand implements __aws_sdk_types.Command< InputTypesUnion, diff --git a/packages/client-xray-node/model/ServiceMetadata.ts b/packages/client-xray-node/model/ServiceMetadata.ts index 0dec3fdaf32b..7dd73cd61eb1 100644 --- a/packages/client-xray-node/model/ServiceMetadata.ts +++ b/packages/client-xray-node/model/ServiceMetadata.ts @@ -9,4 +9,4 @@ export const ServiceMetadata: _ServiceMetadata_ = { signatureVersion: 'v4', uid: 'xray-2016-04-12' }; -export const clientVersion: string = '0.1.0-preview.2'; \ No newline at end of file +export const clientVersion: string = '0.1.0-preview.3'; \ No newline at end of file diff --git a/packages/client-xray-node/package.json b/packages/client-xray-node/package.json index 100fa9f99d47..a4fb2a1d98bc 100644 --- a/packages/client-xray-node/package.json +++ b/packages/client-xray-node/package.json @@ -56,4 +56,4 @@ "typedoc": "^0.10.0", "typescript": "^3.0.0" } -} +} \ No newline at end of file