@jjrawlins/cdk-iam-policy-builder-helper 0.0.78 → 0.0.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +4 -4
- package/{cdk-iam-policy-builder-helper → cdkiampolicybuilderhelper}/go.mod +3 -3
- package/{cdk-iam-policy-builder-helper → cdkiampolicybuilderhelper}/jsii/jsii.go +2 -2
- package/cdkiampolicybuilderhelper/version +1 -0
- package/lib/constructs/Actions.d.ts +33 -0
- package/lib/constructs/Actions.js +34 -1
- package/lib/constructs/ManagedPolicies.d.ts +4 -0
- package/lib/constructs/ManagedPolicies.js +5 -1
- package/methods_list.txt +33 -0
- package/node_modules/@aws-sdk/client-iam/README.md +8 -0
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +243 -73
- package/node_modules/@aws-sdk/client-iam/dist-es/IAM.js +2 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateDelegationRequestCommand.js +22 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/models/models_0.js +4 -26
- package/node_modules/@aws-sdk/client-iam/dist-es/models/models_1.js +26 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/protocols/Aws_query.js +195 -49
- package/node_modules/@aws-sdk/client-iam/dist-types/IAM.d.ts +7 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/IAMClient.d.ts +3 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateDelegationRequestCommand.d.ts +114 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SetSecurityTokenServicePreferencesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SimulateCustomPolicyCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +116 -295
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_1.d.ts +296 -1
- package/node_modules/@aws-sdk/client-iam/dist-types/protocols/Aws_query.d.ts +9 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/IAM.d.ts +17 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/IAMClient.d.ts +6 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateDelegationRequestCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SetSecurityTokenServicePreferencesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SimulateCustomPolicyCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/models/models_0.d.ts +30 -44
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/models/models_1.d.ts +45 -1
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/protocols/Aws_query.d.ts +12 -0
- package/node_modules/@aws-sdk/client-iam/package.json +5 -5
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +277 -270
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +3 -10
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +3 -10
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +3 -10
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +3 -10
- package/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +0 -26
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +265 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +10 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +0 -24
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/schemas/schemas_0.d.ts +26 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +0 -18
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/schemas/schemas_0.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sso/package.json +4 -4
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/package.json +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +246 -310
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +3 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +0 -13
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +211 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +10 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +0 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +23 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +4 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +8 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +0 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +28 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +4 -4
- package/node_modules/@aws-sdk/token-providers/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/node_modules/@smithy/abort-controller/package.json +2 -2
- package/node_modules/@smithy/config-resolver/package.json +5 -5
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +4 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +4 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +1 -1
- package/node_modules/@smithy/core/package.json +7 -7
- package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
- package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
- package/node_modules/@smithy/hash-node/package.json +2 -2
- package/node_modules/@smithy/invalid-dependency/package.json +2 -2
- package/node_modules/@smithy/middleware-content-length/package.json +3 -3
- package/node_modules/@smithy/middleware-endpoint/package.json +8 -8
- package/node_modules/@smithy/middleware-retry/package.json +8 -8
- package/node_modules/@smithy/middleware-serde/package.json +3 -3
- package/node_modules/@smithy/middleware-stack/package.json +2 -2
- package/node_modules/@smithy/node-config-provider/package.json +4 -4
- package/node_modules/@smithy/node-http-handler/package.json +5 -5
- package/node_modules/@smithy/property-provider/package.json +2 -2
- package/node_modules/@smithy/protocol-http/package.json +2 -2
- package/node_modules/@smithy/querystring-builder/package.json +2 -2
- package/node_modules/@smithy/querystring-parser/package.json +2 -2
- package/node_modules/@smithy/service-error-classification/package.json +2 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +2 -3
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +10 -6
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +1 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +3 -3
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +2 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/readFile.d.ts +21 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +21 -0
- package/node_modules/@smithy/shared-ini-file-loader/package.json +5 -5
- package/node_modules/@smithy/signature-v4/package.json +4 -4
- package/node_modules/@smithy/smithy-client/package.json +7 -7
- package/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +12 -12
- package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +5 -5
- package/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +15 -15
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +12 -12
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +5 -5
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +15 -15
- package/node_modules/@smithy/types/package.json +1 -1
- package/node_modules/@smithy/url-parser/package.json +3 -3
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
- package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
- package/node_modules/@smithy/util-endpoints/package.json +3 -3
- package/node_modules/@smithy/util-middleware/package.json +2 -2
- package/node_modules/@smithy/util-retry/package.json +3 -3
- package/node_modules/@smithy/util-stream/package.json +4 -4
- package/node_modules/@smithy/util-waiter/package.json +3 -3
- package/package.json +4 -4
- package/cdk-iam-policy-builder-helper/version +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -22
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -65
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -11
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -58
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types/package.json +0 -57
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/README.md +0 -115
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-cjs/index.js +0 -91
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/abort-handler.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/extensions/retry.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/http.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/index.js +0 -42
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/profile.js +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/schema/schema.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/schema/sentinels.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/schema/static-schemas.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/schema/traits.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/transfer.js +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -128
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/index.d.ts +0 -42
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +0 -136
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -230
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +0 -82
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -128
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -42
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +0 -142
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -245
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +0 -101
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types/package.json +0 -61
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -22
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -65
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -11
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -58
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types/package.json +0 -57
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/README.md +0 -115
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-cjs/index.js +0 -91
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/abort-handler.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/extensions/retry.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/http.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/index.js +0 -42
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/profile.js +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/schema/schema.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/schema/sentinels.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/schema/static-schemas.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/schema/traits.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/transfer.js +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -128
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/index.d.ts +0 -42
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +0 -136
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -230
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +0 -82
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -128
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -42
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +0 -142
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -245
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +0 -101
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
- package/node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types/package.json +0 -61
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -22
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/function.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/index.js +0 -34
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -65
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/function.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -11
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -34
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -58
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -30
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -34
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@aws-sdk/types/package.json +0 -57
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/README.md +0 -115
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-cjs/index.js +0 -91
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/abort-handler.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/abort.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/checksum.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/client.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/command.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/crypto.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/encode.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/eventStream.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/extensions/retry.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/http.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/index.js +0 -42
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/logger.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/middleware.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/pagination.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/profile.js +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/response.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/retry.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/schema/schema.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/schema/sentinels.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/schema/static-schemas.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/schema/traits.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/serde.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/shapes.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/signature.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/stream.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/transfer.js +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/uri.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/util.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-es/waiter.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -128
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/index.d.ts +0 -42
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +0 -136
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -230
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +0 -82
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -128
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -42
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +0 -142
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -245
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +0 -101
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
- package/node_modules/@aws-crypto/util/node_modules/@smithy/types/package.json +0 -61
- package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +0 -210
- package/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +0 -38
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -53
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/protocols/Aws_restJson1.js +0 -257
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +0 -11
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +0 -17
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +0 -17
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +0 -13
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +0 -7
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +0 -7
- /package/{cdk-iam-policy-builder-helper → cdkiampolicybuilderhelper}/LICENSE +0 -0
- /package/{cdk-iam-policy-builder-helper → cdkiampolicybuilderhelper}/README.md +0 -0
|
@@ -167,6 +167,10 @@ export class PasswordPolicyViolationException extends __BaseException {
|
|
|
167
167
|
Object.setPrototypeOf(this, PasswordPolicyViolationException.prototype);
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
|
+
export const PolicyParameterTypeEnum = {
|
|
171
|
+
STRING: "string",
|
|
172
|
+
STRING_LIST: "stringList",
|
|
173
|
+
};
|
|
170
174
|
export class OpenIdIdpCommunicationErrorException extends __BaseException {
|
|
171
175
|
name = "OpenIdIdpCommunicationErrorException";
|
|
172
176
|
$fault = "client";
|
|
@@ -441,32 +445,6 @@ export const GlobalEndpointTokenVersion = {
|
|
|
441
445
|
v1Token: "v1Token",
|
|
442
446
|
v2Token: "v2Token",
|
|
443
447
|
};
|
|
444
|
-
export class PolicyEvaluationException extends __BaseException {
|
|
445
|
-
name = "PolicyEvaluationException";
|
|
446
|
-
$fault = "server";
|
|
447
|
-
constructor(opts) {
|
|
448
|
-
super({
|
|
449
|
-
name: "PolicyEvaluationException",
|
|
450
|
-
$fault: "server",
|
|
451
|
-
...opts,
|
|
452
|
-
});
|
|
453
|
-
Object.setPrototypeOf(this, PolicyEvaluationException.prototype);
|
|
454
|
-
}
|
|
455
|
-
}
|
|
456
|
-
export const ContextKeyTypeEnum = {
|
|
457
|
-
BINARY: "binary",
|
|
458
|
-
BINARY_LIST: "binaryList",
|
|
459
|
-
BOOLEAN: "boolean",
|
|
460
|
-
BOOLEAN_LIST: "booleanList",
|
|
461
|
-
DATE: "date",
|
|
462
|
-
DATE_LIST: "dateList",
|
|
463
|
-
IP: "ip",
|
|
464
|
-
IP_LIST: "ipList",
|
|
465
|
-
NUMERIC: "numeric",
|
|
466
|
-
NUMERIC_LIST: "numericList",
|
|
467
|
-
STRING: "string",
|
|
468
|
-
STRING_LIST: "stringList",
|
|
469
|
-
};
|
|
470
448
|
export const AccessKeyFilterSensitiveLog = (obj) => ({
|
|
471
449
|
...obj,
|
|
472
450
|
...(obj.SecretAccessKey && { SecretAccessKey: SENSITIVE_STRING }),
|
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { IAMServiceException as __BaseException } from "./IAMServiceException";
|
|
3
|
+
export class PolicyEvaluationException extends __BaseException {
|
|
4
|
+
name = "PolicyEvaluationException";
|
|
5
|
+
$fault = "server";
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "PolicyEvaluationException",
|
|
9
|
+
$fault: "server",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
Object.setPrototypeOf(this, PolicyEvaluationException.prototype);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export const ContextKeyTypeEnum = {
|
|
16
|
+
BINARY: "binary",
|
|
17
|
+
BINARY_LIST: "binaryList",
|
|
18
|
+
BOOLEAN: "boolean",
|
|
19
|
+
BOOLEAN_LIST: "booleanList",
|
|
20
|
+
DATE: "date",
|
|
21
|
+
DATE_LIST: "dateList",
|
|
22
|
+
IP: "ip",
|
|
23
|
+
IP_LIST: "ipList",
|
|
24
|
+
NUMERIC: "numeric",
|
|
25
|
+
NUMERIC_LIST: "numericList",
|
|
26
|
+
STRING: "string",
|
|
27
|
+
STRING_LIST: "stringList",
|
|
28
|
+
};
|
|
3
29
|
export const PolicyEvaluationDecisionType = {
|
|
4
30
|
ALLOWED: "allowed",
|
|
5
31
|
EXPLICIT_DENY: "explicitDeny",
|
|
@@ -2,8 +2,8 @@ import { parseXmlBody as parseBody, parseXmlErrorBody as parseErrorBody } from "
|
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
3
|
import { collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectString as __expectString, extendedEncodeURIComponent as __extendedEncodeURIComponent, getArrayIfSingleItem as __getArrayIfSingleItem, parseBoolean as __parseBoolean, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, strictParseInt32 as __strictParseInt32, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { IAMServiceException as __BaseException } from "../models/IAMServiceException";
|
|
5
|
-
import { AccountNotManagementOrDelegatedAdministratorException, CallerIsNotManagementAccountException, ConcurrentModificationException, CredentialReportExpiredException, CredentialReportNotPresentException, CredentialReportNotReadyException, DeleteConflictException, EntityAlreadyExistsException, EntityTemporarilyUnmodifiableException, InvalidAuthenticationCodeException, InvalidInputException, InvalidUserTypeException, LimitExceededException, MalformedPolicyDocumentException, NoSuchEntityException, OpenIdIdpCommunicationErrorException, OrganizationNotFoundException, OrganizationNotInAllFeaturesModeException, PasswordPolicyViolationException,
|
|
6
|
-
import { DuplicateCertificateException, DuplicateSSHPublicKeyException, InvalidCertificateException, InvalidPublicKeyException, KeyPairMismatchException, MalformedCertificateException, } from "../models/models_1";
|
|
5
|
+
import { AccountNotManagementOrDelegatedAdministratorException, CallerIsNotManagementAccountException, ConcurrentModificationException, CredentialReportExpiredException, CredentialReportNotPresentException, CredentialReportNotReadyException, DeleteConflictException, EntityAlreadyExistsException, EntityTemporarilyUnmodifiableException, InvalidAuthenticationCodeException, InvalidInputException, InvalidUserTypeException, LimitExceededException, MalformedPolicyDocumentException, NoSuchEntityException, OpenIdIdpCommunicationErrorException, OrganizationNotFoundException, OrganizationNotInAllFeaturesModeException, PasswordPolicyViolationException, PolicyNotAttachableException, ReportGenerationLimitExceededException, ServiceAccessNotEnabledException, ServiceFailureException, ServiceNotSupportedException, UnmodifiableEntityException, UnrecognizedPublicKeyEncodingException, } from "../models/models_0";
|
|
6
|
+
import { DuplicateCertificateException, DuplicateSSHPublicKeyException, InvalidCertificateException, InvalidPublicKeyException, KeyPairMismatchException, MalformedCertificateException, PolicyEvaluationException, } from "../models/models_1";
|
|
7
7
|
export const se_AddClientIDToOpenIDConnectProviderCommand = async (input, context) => {
|
|
8
8
|
const headers = SHARED_HEADERS;
|
|
9
9
|
let body;
|
|
@@ -94,6 +94,16 @@ export const se_CreateAccountAliasCommand = async (input, context) => {
|
|
|
94
94
|
});
|
|
95
95
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
96
96
|
};
|
|
97
|
+
export const se_CreateDelegationRequestCommand = async (input, context) => {
|
|
98
|
+
const headers = SHARED_HEADERS;
|
|
99
|
+
let body;
|
|
100
|
+
body = buildFormUrlencodedString({
|
|
101
|
+
...se_CreateDelegationRequestRequest(input, context),
|
|
102
|
+
[_A]: _CDR,
|
|
103
|
+
[_V]: _,
|
|
104
|
+
});
|
|
105
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
106
|
+
};
|
|
97
107
|
export const se_CreateGroupCommand = async (input, context) => {
|
|
98
108
|
const headers = SHARED_HEADERS;
|
|
99
109
|
let body;
|
|
@@ -1727,6 +1737,19 @@ export const de_CreateAccountAliasCommand = async (output, context) => {
|
|
|
1727
1737
|
};
|
|
1728
1738
|
return response;
|
|
1729
1739
|
};
|
|
1740
|
+
export const de_CreateDelegationRequestCommand = async (output, context) => {
|
|
1741
|
+
if (output.statusCode >= 300) {
|
|
1742
|
+
return de_CommandError(output, context);
|
|
1743
|
+
}
|
|
1744
|
+
const data = await parseBody(output.body, context);
|
|
1745
|
+
let contents = {};
|
|
1746
|
+
contents = de_CreateDelegationRequestResponse(data.CreateDelegationRequestResult, context);
|
|
1747
|
+
const response = {
|
|
1748
|
+
$metadata: deserializeMetadata(output),
|
|
1749
|
+
...contents,
|
|
1750
|
+
};
|
|
1751
|
+
return response;
|
|
1752
|
+
};
|
|
1730
1753
|
export const de_CreateGroupCommand = async (output, context) => {
|
|
1731
1754
|
if (output.statusCode >= 300) {
|
|
1732
1755
|
return de_CommandError(output, context);
|
|
@@ -4114,10 +4137,45 @@ const se_CreateAccountAliasRequest = (input, context) => {
|
|
|
4114
4137
|
}
|
|
4115
4138
|
return entries;
|
|
4116
4139
|
};
|
|
4117
|
-
const
|
|
4140
|
+
const se_CreateDelegationRequestRequest = (input, context) => {
|
|
4118
4141
|
const entries = {};
|
|
4142
|
+
if (input[_OAI] != null) {
|
|
4143
|
+
entries[_OAI] = input[_OAI];
|
|
4144
|
+
}
|
|
4145
|
+
if (input[_D] != null) {
|
|
4146
|
+
entries[_D] = input[_D];
|
|
4147
|
+
}
|
|
4119
4148
|
if (input[_P] != null) {
|
|
4120
|
-
|
|
4149
|
+
const memberEntries = se_DelegationPermission(input[_P], context);
|
|
4150
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4151
|
+
const loc = `Permissions.${key}`;
|
|
4152
|
+
entries[loc] = value;
|
|
4153
|
+
});
|
|
4154
|
+
}
|
|
4155
|
+
if (input[_RM] != null) {
|
|
4156
|
+
entries[_RM] = input[_RM];
|
|
4157
|
+
}
|
|
4158
|
+
if (input[_RWI] != null) {
|
|
4159
|
+
entries[_RWI] = input[_RWI];
|
|
4160
|
+
}
|
|
4161
|
+
if (input[_RU] != null) {
|
|
4162
|
+
entries[_RU] = input[_RU];
|
|
4163
|
+
}
|
|
4164
|
+
if (input[_NC] != null) {
|
|
4165
|
+
entries[_NC] = input[_NC];
|
|
4166
|
+
}
|
|
4167
|
+
if (input[_SD] != null) {
|
|
4168
|
+
entries[_SD] = input[_SD];
|
|
4169
|
+
}
|
|
4170
|
+
if (input[_OSBO] != null) {
|
|
4171
|
+
entries[_OSBO] = input[_OSBO];
|
|
4172
|
+
}
|
|
4173
|
+
return entries;
|
|
4174
|
+
};
|
|
4175
|
+
const se_CreateGroupRequest = (input, context) => {
|
|
4176
|
+
const entries = {};
|
|
4177
|
+
if (input[_Pa] != null) {
|
|
4178
|
+
entries[_Pa] = input[_Pa];
|
|
4121
4179
|
}
|
|
4122
4180
|
if (input[_GN] != null) {
|
|
4123
4181
|
entries[_GN] = input[_GN];
|
|
@@ -4129,8 +4187,8 @@ const se_CreateInstanceProfileRequest = (input, context) => {
|
|
|
4129
4187
|
if (input[_IPN] != null) {
|
|
4130
4188
|
entries[_IPN] = input[_IPN];
|
|
4131
4189
|
}
|
|
4132
|
-
if (input[
|
|
4133
|
-
entries[
|
|
4190
|
+
if (input[_Pa] != null) {
|
|
4191
|
+
entries[_Pa] = input[_Pa];
|
|
4134
4192
|
}
|
|
4135
4193
|
if (input[_T] != null) {
|
|
4136
4194
|
const memberEntries = se_tagListType(input[_T], context);
|
|
@@ -4149,8 +4207,8 @@ const se_CreateLoginProfileRequest = (input, context) => {
|
|
|
4149
4207
|
if (input[_UN] != null) {
|
|
4150
4208
|
entries[_UN] = input[_UN];
|
|
4151
4209
|
}
|
|
4152
|
-
if (input[
|
|
4153
|
-
entries[
|
|
4210
|
+
if (input[_Pas] != null) {
|
|
4211
|
+
entries[_Pas] = input[_Pas];
|
|
4154
4212
|
}
|
|
4155
4213
|
if (input[_PRR] != null) {
|
|
4156
4214
|
entries[_PRR] = input[_PRR];
|
|
@@ -4199,8 +4257,8 @@ const se_CreatePolicyRequest = (input, context) => {
|
|
|
4199
4257
|
if (input[_PN] != null) {
|
|
4200
4258
|
entries[_PN] = input[_PN];
|
|
4201
4259
|
}
|
|
4202
|
-
if (input[
|
|
4203
|
-
entries[
|
|
4260
|
+
if (input[_Pa] != null) {
|
|
4261
|
+
entries[_Pa] = input[_Pa];
|
|
4204
4262
|
}
|
|
4205
4263
|
if (input[_PD] != null) {
|
|
4206
4264
|
entries[_PD] = input[_PD];
|
|
@@ -4235,8 +4293,8 @@ const se_CreatePolicyVersionRequest = (input, context) => {
|
|
|
4235
4293
|
};
|
|
4236
4294
|
const se_CreateRoleRequest = (input, context) => {
|
|
4237
4295
|
const entries = {};
|
|
4238
|
-
if (input[
|
|
4239
|
-
entries[
|
|
4296
|
+
if (input[_Pa] != null) {
|
|
4297
|
+
entries[_Pa] = input[_Pa];
|
|
4240
4298
|
}
|
|
4241
4299
|
if (input[_RN] != null) {
|
|
4242
4300
|
entries[_RN] = input[_RN];
|
|
@@ -4319,8 +4377,8 @@ const se_CreateServiceSpecificCredentialRequest = (input, context) => {
|
|
|
4319
4377
|
};
|
|
4320
4378
|
const se_CreateUserRequest = (input, context) => {
|
|
4321
4379
|
const entries = {};
|
|
4322
|
-
if (input[
|
|
4323
|
-
entries[
|
|
4380
|
+
if (input[_Pa] != null) {
|
|
4381
|
+
entries[_Pa] = input[_Pa];
|
|
4324
4382
|
}
|
|
4325
4383
|
if (input[_UN] != null) {
|
|
4326
4384
|
entries[_UN] = input[_UN];
|
|
@@ -4342,8 +4400,8 @@ const se_CreateUserRequest = (input, context) => {
|
|
|
4342
4400
|
};
|
|
4343
4401
|
const se_CreateVirtualMFADeviceRequest = (input, context) => {
|
|
4344
4402
|
const entries = {};
|
|
4345
|
-
if (input[
|
|
4346
|
-
entries[
|
|
4403
|
+
if (input[_Pa] != null) {
|
|
4404
|
+
entries[_Pa] = input[_Pa];
|
|
4347
4405
|
}
|
|
4348
4406
|
if (input[_VMFADN] != null) {
|
|
4349
4407
|
entries[_VMFADN] = input[_VMFADN];
|
|
@@ -4370,6 +4428,23 @@ const se_DeactivateMFADeviceRequest = (input, context) => {
|
|
|
4370
4428
|
}
|
|
4371
4429
|
return entries;
|
|
4372
4430
|
};
|
|
4431
|
+
const se_DelegationPermission = (input, context) => {
|
|
4432
|
+
const entries = {};
|
|
4433
|
+
if (input[_PTA] != null) {
|
|
4434
|
+
entries[_PTA] = input[_PTA];
|
|
4435
|
+
}
|
|
4436
|
+
if (input[_Par] != null) {
|
|
4437
|
+
const memberEntries = se_policyParameterListType(input[_Par], context);
|
|
4438
|
+
if (input[_Par]?.length === 0) {
|
|
4439
|
+
entries.Parameters = [];
|
|
4440
|
+
}
|
|
4441
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4442
|
+
const loc = `Parameters.${key}`;
|
|
4443
|
+
entries[loc] = value;
|
|
4444
|
+
});
|
|
4445
|
+
}
|
|
4446
|
+
return entries;
|
|
4447
|
+
};
|
|
4373
4448
|
const se_DeleteAccessKeyRequest = (input, context) => {
|
|
4374
4449
|
const entries = {};
|
|
4375
4450
|
if (input[_UN] != null) {
|
|
@@ -5349,6 +5424,53 @@ const se_ListVirtualMFADevicesRequest = (input, context) => {
|
|
|
5349
5424
|
}
|
|
5350
5425
|
return entries;
|
|
5351
5426
|
};
|
|
5427
|
+
const se_PolicyParameter = (input, context) => {
|
|
5428
|
+
const entries = {};
|
|
5429
|
+
if (input[_N] != null) {
|
|
5430
|
+
entries[_N] = input[_N];
|
|
5431
|
+
}
|
|
5432
|
+
if (input[_Va] != null) {
|
|
5433
|
+
const memberEntries = se_policyParameterValuesListType(input[_Va], context);
|
|
5434
|
+
if (input[_Va]?.length === 0) {
|
|
5435
|
+
entries.Values = [];
|
|
5436
|
+
}
|
|
5437
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
5438
|
+
const loc = `Values.${key}`;
|
|
5439
|
+
entries[loc] = value;
|
|
5440
|
+
});
|
|
5441
|
+
}
|
|
5442
|
+
if (input[_Ty] != null) {
|
|
5443
|
+
entries[_Ty] = input[_Ty];
|
|
5444
|
+
}
|
|
5445
|
+
return entries;
|
|
5446
|
+
};
|
|
5447
|
+
const se_policyParameterListType = (input, context) => {
|
|
5448
|
+
const entries = {};
|
|
5449
|
+
let counter = 1;
|
|
5450
|
+
for (const entry of input) {
|
|
5451
|
+
if (entry === null) {
|
|
5452
|
+
continue;
|
|
5453
|
+
}
|
|
5454
|
+
const memberEntries = se_PolicyParameter(entry, context);
|
|
5455
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
5456
|
+
entries[`member.${counter}.${key}`] = value;
|
|
5457
|
+
});
|
|
5458
|
+
counter++;
|
|
5459
|
+
}
|
|
5460
|
+
return entries;
|
|
5461
|
+
};
|
|
5462
|
+
const se_policyParameterValuesListType = (input, context) => {
|
|
5463
|
+
const entries = {};
|
|
5464
|
+
let counter = 1;
|
|
5465
|
+
for (const entry of input) {
|
|
5466
|
+
if (entry === null) {
|
|
5467
|
+
continue;
|
|
5468
|
+
}
|
|
5469
|
+
entries[`member.${counter}`] = entry;
|
|
5470
|
+
counter++;
|
|
5471
|
+
}
|
|
5472
|
+
return entries;
|
|
5473
|
+
};
|
|
5352
5474
|
const se_PutGroupPolicyRequest = (input, context) => {
|
|
5353
5475
|
const entries = {};
|
|
5354
5476
|
if (input[_GN] != null) {
|
|
@@ -5669,8 +5791,8 @@ const se_Tag = (input, context) => {
|
|
|
5669
5791
|
if (input[_K] != null) {
|
|
5670
5792
|
entries[_K] = input[_K];
|
|
5671
5793
|
}
|
|
5672
|
-
if (input[
|
|
5673
|
-
entries[
|
|
5794
|
+
if (input[_Val] != null) {
|
|
5795
|
+
entries[_Val] = input[_Val];
|
|
5674
5796
|
}
|
|
5675
5797
|
return entries;
|
|
5676
5798
|
};
|
|
@@ -6057,8 +6179,8 @@ const se_UpdateLoginProfileRequest = (input, context) => {
|
|
|
6057
6179
|
if (input[_UN] != null) {
|
|
6058
6180
|
entries[_UN] = input[_UN];
|
|
6059
6181
|
}
|
|
6060
|
-
if (input[
|
|
6061
|
-
entries[
|
|
6182
|
+
if (input[_Pas] != null) {
|
|
6183
|
+
entries[_Pas] = input[_Pas];
|
|
6062
6184
|
}
|
|
6063
6185
|
if (input[_PRR] != null) {
|
|
6064
6186
|
entries[_PRR] = input[_PRR];
|
|
@@ -6191,8 +6313,8 @@ const se_UpdateUserRequest = (input, context) => {
|
|
|
6191
6313
|
};
|
|
6192
6314
|
const se_UploadServerCertificateRequest = (input, context) => {
|
|
6193
6315
|
const entries = {};
|
|
6194
|
-
if (input[
|
|
6195
|
-
entries[
|
|
6316
|
+
if (input[_Pa] != null) {
|
|
6317
|
+
entries[_Pa] = input[_Pa];
|
|
6196
6318
|
}
|
|
6197
6319
|
if (input[_SCN] != null) {
|
|
6198
6320
|
entries[_SCN] = input[_SCN];
|
|
@@ -6421,6 +6543,16 @@ const de_CreateAccessKeyResponse = (output, context) => {
|
|
|
6421
6543
|
}
|
|
6422
6544
|
return contents;
|
|
6423
6545
|
};
|
|
6546
|
+
const de_CreateDelegationRequestResponse = (output, context) => {
|
|
6547
|
+
const contents = {};
|
|
6548
|
+
if (output[_CDL] != null) {
|
|
6549
|
+
contents[_CDL] = __expectString(output[_CDL]);
|
|
6550
|
+
}
|
|
6551
|
+
if (output[_DRI] != null) {
|
|
6552
|
+
contents[_DRI] = __expectString(output[_DRI]);
|
|
6553
|
+
}
|
|
6554
|
+
return contents;
|
|
6555
|
+
};
|
|
6424
6556
|
const de_CreateGroupResponse = (output, context) => {
|
|
6425
6557
|
const contents = {};
|
|
6426
6558
|
if (output[_Gr] != null) {
|
|
@@ -6669,8 +6801,8 @@ const de_EntityInfo = (output, context) => {
|
|
|
6669
6801
|
if (output[_I] != null) {
|
|
6670
6802
|
contents[_I] = __expectString(output[_I]);
|
|
6671
6803
|
}
|
|
6672
|
-
if (output[
|
|
6673
|
-
contents[
|
|
6804
|
+
if (output[_Pa] != null) {
|
|
6805
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
6674
6806
|
}
|
|
6675
6807
|
return contents;
|
|
6676
6808
|
};
|
|
@@ -7162,8 +7294,8 @@ const de_GetUserResponse = (output, context) => {
|
|
|
7162
7294
|
};
|
|
7163
7295
|
const de_Group = (output, context) => {
|
|
7164
7296
|
const contents = {};
|
|
7165
|
-
if (output[
|
|
7166
|
-
contents[
|
|
7297
|
+
if (output[_Pa] != null) {
|
|
7298
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
7167
7299
|
}
|
|
7168
7300
|
if (output[_GN] != null) {
|
|
7169
7301
|
contents[_GN] = __expectString(output[_GN]);
|
|
@@ -7181,8 +7313,8 @@ const de_Group = (output, context) => {
|
|
|
7181
7313
|
};
|
|
7182
7314
|
const de_GroupDetail = (output, context) => {
|
|
7183
7315
|
const contents = {};
|
|
7184
|
-
if (output[
|
|
7185
|
-
contents[
|
|
7316
|
+
if (output[_Pa] != null) {
|
|
7317
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
7186
7318
|
}
|
|
7187
7319
|
if (output[_GN] != null) {
|
|
7188
7320
|
contents[_GN] = __expectString(output[_GN]);
|
|
@@ -7233,8 +7365,8 @@ const de_groupNameListType = (output, context) => {
|
|
|
7233
7365
|
};
|
|
7234
7366
|
const de_InstanceProfile = (output, context) => {
|
|
7235
7367
|
const contents = {};
|
|
7236
|
-
if (output[
|
|
7237
|
-
contents[
|
|
7368
|
+
if (output[_Pa] != null) {
|
|
7369
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
7238
7370
|
}
|
|
7239
7371
|
if (output[_IPN] != null) {
|
|
7240
7372
|
contents[_IPN] = __expectString(output[_IPN]);
|
|
@@ -7933,8 +8065,8 @@ const de_ManagedPolicyDetail = (output, context) => {
|
|
|
7933
8065
|
if (output[_Ar] != null) {
|
|
7934
8066
|
contents[_Ar] = __expectString(output[_Ar]);
|
|
7935
8067
|
}
|
|
7936
|
-
if (output[
|
|
7937
|
-
contents[
|
|
8068
|
+
if (output[_Pa] != null) {
|
|
8069
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
7938
8070
|
}
|
|
7939
8071
|
if (output[_DVI] != null) {
|
|
7940
8072
|
contents[_DVI] = __expectString(output[_DVI]);
|
|
@@ -8100,8 +8232,8 @@ const de_Policy = (output, context) => {
|
|
|
8100
8232
|
if (output[_Ar] != null) {
|
|
8101
8233
|
contents[_Ar] = __expectString(output[_Ar]);
|
|
8102
8234
|
}
|
|
8103
|
-
if (output[
|
|
8104
|
-
contents[
|
|
8235
|
+
if (output[_Pa] != null) {
|
|
8236
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
8105
8237
|
}
|
|
8106
8238
|
if (output[_DVI] != null) {
|
|
8107
8239
|
contents[_DVI] = __expectString(output[_DVI]);
|
|
@@ -8348,8 +8480,8 @@ const de_ResourceSpecificResultListType = (output, context) => {
|
|
|
8348
8480
|
};
|
|
8349
8481
|
const de_Role = (output, context) => {
|
|
8350
8482
|
const contents = {};
|
|
8351
|
-
if (output[
|
|
8352
|
-
contents[
|
|
8483
|
+
if (output[_Pa] != null) {
|
|
8484
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
8353
8485
|
}
|
|
8354
8486
|
if (output[_RN] != null) {
|
|
8355
8487
|
contents[_RN] = __expectString(output[_RN]);
|
|
@@ -8388,8 +8520,8 @@ const de_Role = (output, context) => {
|
|
|
8388
8520
|
};
|
|
8389
8521
|
const de_RoleDetail = (output, context) => {
|
|
8390
8522
|
const contents = {};
|
|
8391
|
-
if (output[
|
|
8392
|
-
contents[
|
|
8523
|
+
if (output[_Pa] != null) {
|
|
8524
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
8393
8525
|
}
|
|
8394
8526
|
if (output[_RN] != null) {
|
|
8395
8527
|
contents[_RN] = __expectString(output[_RN]);
|
|
@@ -8533,8 +8665,8 @@ const de_ServerCertificate = (output, context) => {
|
|
|
8533
8665
|
};
|
|
8534
8666
|
const de_ServerCertificateMetadata = (output, context) => {
|
|
8535
8667
|
const contents = {};
|
|
8536
|
-
if (output[
|
|
8537
|
-
contents[
|
|
8668
|
+
if (output[_Pa] != null) {
|
|
8669
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
8538
8670
|
}
|
|
8539
8671
|
if (output[_SCN] != null) {
|
|
8540
8672
|
contents[_SCN] = __expectString(output[_SCN]);
|
|
@@ -8802,8 +8934,8 @@ const de_Tag = (output, context) => {
|
|
|
8802
8934
|
if (output[_K] != null) {
|
|
8803
8935
|
contents[_K] = __expectString(output[_K]);
|
|
8804
8936
|
}
|
|
8805
|
-
if (output[
|
|
8806
|
-
contents[
|
|
8937
|
+
if (output[_Val] != null) {
|
|
8938
|
+
contents[_Val] = __expectString(output[_Val]);
|
|
8807
8939
|
}
|
|
8808
8940
|
return contents;
|
|
8809
8941
|
};
|
|
@@ -8905,8 +9037,8 @@ const de_UploadSSHPublicKeyResponse = (output, context) => {
|
|
|
8905
9037
|
};
|
|
8906
9038
|
const de_User = (output, context) => {
|
|
8907
9039
|
const contents = {};
|
|
8908
|
-
if (output[
|
|
8909
|
-
contents[
|
|
9040
|
+
if (output[_Pa] != null) {
|
|
9041
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
8910
9042
|
}
|
|
8911
9043
|
if (output[_UN] != null) {
|
|
8912
9044
|
contents[_UN] = __expectString(output[_UN]);
|
|
@@ -8936,8 +9068,8 @@ const de_User = (output, context) => {
|
|
|
8936
9068
|
};
|
|
8937
9069
|
const de_UserDetail = (output, context) => {
|
|
8938
9070
|
const contents = {};
|
|
8939
|
-
if (output[
|
|
8940
|
-
contents[
|
|
9071
|
+
if (output[_Pa] != null) {
|
|
9072
|
+
contents[_Pa] = __expectString(output[_Pa]);
|
|
8941
9073
|
}
|
|
8942
9074
|
if (output[_UN] != null) {
|
|
8943
9075
|
contents[_UN] = __expectString(output[_UN]);
|
|
@@ -9096,6 +9228,8 @@ const _CAK = "CreateAccessKey";
|
|
|
9096
9228
|
const _CB = "CertificateBody";
|
|
9097
9229
|
const _CC = "CertificateChain";
|
|
9098
9230
|
const _CD = "CreateDate";
|
|
9231
|
+
const _CDL = "ConsoleDeepLink";
|
|
9232
|
+
const _CDR = "CreateDelegationRequest";
|
|
9099
9233
|
const _CE = "ContextEntries";
|
|
9100
9234
|
const _CG = "CreateGroup";
|
|
9101
9235
|
const _CI = "CertificateId";
|
|
@@ -9139,6 +9273,7 @@ const _DORS = "DisableOrganizationsRootSessions";
|
|
|
9139
9273
|
const _DP = "DeletePolicy";
|
|
9140
9274
|
const _DPV = "DeletePolicyVersion";
|
|
9141
9275
|
const _DR = "DeleteRole";
|
|
9276
|
+
const _DRI = "DelegationRequestId";
|
|
9142
9277
|
const _DRP = "DeleteRolePolicy";
|
|
9143
9278
|
const _DRPB = "DeleteRolePermissionsBoundary";
|
|
9144
9279
|
const _DRPe = "DetachRolePolicy";
|
|
@@ -9293,6 +9428,7 @@ const _MS = "MatchedStatements";
|
|
|
9293
9428
|
const _MSD = "MaxSessionDuration";
|
|
9294
9429
|
const _Me = "Message";
|
|
9295
9430
|
const _N = "Name";
|
|
9431
|
+
const _NC = "NotificationChannel";
|
|
9296
9432
|
const _NGN = "NewGroupName";
|
|
9297
9433
|
const _NOSA = "NumberOfServicesAccessible";
|
|
9298
9434
|
const _NOSNA = "NumberOfServicesNotAccessed";
|
|
@@ -9301,13 +9437,15 @@ const _NPe = "NewPath";
|
|
|
9301
9437
|
const _NSCN = "NewServerCertificateName";
|
|
9302
9438
|
const _NUN = "NewUserName";
|
|
9303
9439
|
const _OA = "OnlyAttached";
|
|
9440
|
+
const _OAI = "OwnerAccountId";
|
|
9304
9441
|
const _ODD = "OrganizationsDecisionDetail";
|
|
9305
9442
|
const _OI = "OrganizationId";
|
|
9306
9443
|
const _OIDCPA = "OpenIDConnectProviderArn";
|
|
9307
9444
|
const _OIDCPL = "OpenIDConnectProviderList";
|
|
9308
9445
|
const _OP = "OldPassword";
|
|
9309
9446
|
const _OPI = "OrganizationsPolicyId";
|
|
9310
|
-
const
|
|
9447
|
+
const _OSBO = "OnlySendByOwner";
|
|
9448
|
+
const _P = "Permissions";
|
|
9311
9449
|
const _PA = "PolicyArn";
|
|
9312
9450
|
const _PB = "PermissionsBoundary";
|
|
9313
9451
|
const _PBA = "PermissionsBoundaryArn";
|
|
@@ -9335,13 +9473,16 @@ const _PRPa = "PasswordReusePrevention";
|
|
|
9335
9473
|
const _PRR = "PasswordResetRequired";
|
|
9336
9474
|
const _PSA = "PolicySourceArn";
|
|
9337
9475
|
const _PT = "PolicyType";
|
|
9476
|
+
const _PTA = "PolicyTemplateArn";
|
|
9338
9477
|
const _PU = "PolicyUsers";
|
|
9339
9478
|
const _PUF = "PolicyUsageFilter";
|
|
9340
9479
|
const _PUP = "PutUserPolicy";
|
|
9341
9480
|
const _PUPB = "PutUserPermissionsBoundary";
|
|
9342
9481
|
const _PV = "PolicyVersion";
|
|
9343
9482
|
const _PVL = "PolicyVersionList";
|
|
9344
|
-
const _Pa = "
|
|
9483
|
+
const _Pa = "Path";
|
|
9484
|
+
const _Par = "Parameters";
|
|
9485
|
+
const _Pas = "Password";
|
|
9345
9486
|
const _Po = "Policy";
|
|
9346
9487
|
const _Pol = "Policies";
|
|
9347
9488
|
const _QRCPNG = "QRCodePNG";
|
|
@@ -9354,6 +9495,7 @@ const _RHO = "ResourceHandlingOption";
|
|
|
9354
9495
|
const _RI = "RoleId";
|
|
9355
9496
|
const _RLC = "RequireLowercaseCharacters";
|
|
9356
9497
|
const _RLU = "RoleLastUsed";
|
|
9498
|
+
const _RM = "RequestMessage";
|
|
9357
9499
|
const _RMFAD = "ResyncMFADevice";
|
|
9358
9500
|
const _RN = "RoleName";
|
|
9359
9501
|
const _RNe = "RequireNumbers";
|
|
@@ -9365,9 +9507,11 @@ const _RRFIP = "RemoveRoleFromInstanceProfile";
|
|
|
9365
9507
|
const _RS = "RequireSymbols";
|
|
9366
9508
|
const _RSR = "ResourceSpecificResults";
|
|
9367
9509
|
const _RSSC = "ResetServiceSpecificCredential";
|
|
9510
|
+
const _RU = "RedirectUrl";
|
|
9368
9511
|
const _RUC = "RequireUppercaseCharacters";
|
|
9369
9512
|
const _RUFG = "RemoveUserFromGroup";
|
|
9370
9513
|
const _RUL = "RoleUsageList";
|
|
9514
|
+
const _RWI = "RequestorWorkflowId";
|
|
9371
9515
|
const _Re = "Reason";
|
|
9372
9516
|
const _Res = "Resources";
|
|
9373
9517
|
const _Ro = "Role";
|
|
@@ -9387,6 +9531,7 @@ const _SCML = "ServerCertificateMetadataList";
|
|
|
9387
9531
|
const _SCN = "ServerCertificateName";
|
|
9388
9532
|
const _SCP = "SimulateCustomPolicy";
|
|
9389
9533
|
const _SCS = "ServiceCredentialSecret";
|
|
9534
|
+
const _SD = "SessionDuration";
|
|
9390
9535
|
const _SDPV = "SetDefaultPolicyVersion";
|
|
9391
9536
|
const _SK = "SortKey";
|
|
9392
9537
|
const _SLA = "ServicesLastAccessed";
|
|
@@ -9466,7 +9611,8 @@ const _VMFAD = "VirtualMFADevice";
|
|
|
9466
9611
|
const _VMFADN = "VirtualMFADeviceName";
|
|
9467
9612
|
const _VMFADi = "VirtualMFADevices";
|
|
9468
9613
|
const _VU = "ValidUntil";
|
|
9469
|
-
const _Va = "
|
|
9614
|
+
const _Va = "Values";
|
|
9615
|
+
const _Val = "Value";
|
|
9470
9616
|
const _Ve = "Versions";
|
|
9471
9617
|
const _e = "entry";
|
|
9472
9618
|
const _m = "message";
|
|
@@ -8,6 +8,7 @@ import { AttachUserPolicyCommandInput, AttachUserPolicyCommandOutput } from "./c
|
|
|
8
8
|
import { ChangePasswordCommandInput, ChangePasswordCommandOutput } from "./commands/ChangePasswordCommand";
|
|
9
9
|
import { CreateAccessKeyCommandInput, CreateAccessKeyCommandOutput } from "./commands/CreateAccessKeyCommand";
|
|
10
10
|
import { CreateAccountAliasCommandInput, CreateAccountAliasCommandOutput } from "./commands/CreateAccountAliasCommand";
|
|
11
|
+
import { CreateDelegationRequestCommandInput, CreateDelegationRequestCommandOutput } from "./commands/CreateDelegationRequestCommand";
|
|
11
12
|
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
12
13
|
import { CreateInstanceProfileCommandInput, CreateInstanceProfileCommandOutput } from "./commands/CreateInstanceProfileCommand";
|
|
13
14
|
import { CreateLoginProfileCommandInput, CreateLoginProfileCommandOutput } from "./commands/CreateLoginProfileCommand";
|
|
@@ -220,6 +221,12 @@ export interface IAM {
|
|
|
220
221
|
createAccountAlias(args: CreateAccountAliasCommandInput, options?: __HttpHandlerOptions): Promise<CreateAccountAliasCommandOutput>;
|
|
221
222
|
createAccountAlias(args: CreateAccountAliasCommandInput, cb: (err: any, data?: CreateAccountAliasCommandOutput) => void): void;
|
|
222
223
|
createAccountAlias(args: CreateAccountAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAccountAliasCommandOutput) => void): void;
|
|
224
|
+
/**
|
|
225
|
+
* @see {@link CreateDelegationRequestCommand}
|
|
226
|
+
*/
|
|
227
|
+
createDelegationRequest(args: CreateDelegationRequestCommandInput, options?: __HttpHandlerOptions): Promise<CreateDelegationRequestCommandOutput>;
|
|
228
|
+
createDelegationRequest(args: CreateDelegationRequestCommandInput, cb: (err: any, data?: CreateDelegationRequestCommandOutput) => void): void;
|
|
229
|
+
createDelegationRequest(args: CreateDelegationRequestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDelegationRequestCommandOutput) => void): void;
|
|
223
230
|
/**
|
|
224
231
|
* @see {@link CreateGroupCommand}
|
|
225
232
|
*/
|