@aws-sdk/client-dax 3.300.0 → 3.303.0
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/dist-cjs/models/models_0.js +4 -5
- package/dist-es/models/models_0.js +4 -5
- package/dist-types/commands/CreateClusterCommand.d.ts +6 -6
- package/dist-types/commands/CreateParameterGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateSubnetGroupCommand.d.ts +2 -2
- package/dist-types/commands/DecreaseReplicationFactorCommand.d.ts +3 -3
- package/dist-types/commands/DeleteClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteParameterGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSubnetGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClustersCommand.d.ts +2 -2
- package/dist-types/commands/DescribeDefaultParametersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEventsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeParameterGroupsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeParametersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSubnetGroupsCommand.d.ts +2 -2
- package/dist-types/commands/IncreaseReplicationFactorCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/RebootNodeCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateClusterCommand.d.ts +2 -2
- package/dist-types/commands/UpdateParameterGroupCommand.d.ts +3 -3
- package/dist-types/commands/UpdateSubnetGroupCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +9 -4
- package/dist-types/ts3.4/models/models_0.d.ts +6 -4
- package/package.json +34 -34
|
@@ -28,11 +28,10 @@ class ClusterQuotaForCustomerExceededFault extends DAXServiceException_1.DAXServ
|
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
exports.ClusterQuotaForCustomerExceededFault = ClusterQuotaForCustomerExceededFault;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
})(ClusterEndpointEncryptionType = exports.ClusterEndpointEncryptionType || (exports.ClusterEndpointEncryptionType = {}));
|
|
31
|
+
exports.ClusterEndpointEncryptionType = {
|
|
32
|
+
NONE: "NONE",
|
|
33
|
+
TLS: "TLS",
|
|
34
|
+
};
|
|
36
35
|
class InsufficientClusterCapacityFault extends DAXServiceException_1.DAXServiceException {
|
|
37
36
|
constructor(opts) {
|
|
38
37
|
super({
|
|
@@ -23,11 +23,10 @@ export class ClusterQuotaForCustomerExceededFault extends __BaseException {
|
|
|
23
23
|
Object.setPrototypeOf(this, ClusterQuotaForCustomerExceededFault.prototype);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
export
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
})(ClusterEndpointEncryptionType || (ClusterEndpointEncryptionType = {}));
|
|
26
|
+
export const ClusterEndpointEncryptionType = {
|
|
27
|
+
NONE: "NONE",
|
|
28
|
+
TLS: "TLS",
|
|
29
|
+
};
|
|
31
30
|
export class InsufficientClusterCapacityFault extends __BaseException {
|
|
32
31
|
constructor(opts) {
|
|
33
32
|
super({
|
|
@@ -26,29 +26,29 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
|
|
|
26
26
|
* import { DAXClient, CreateClusterCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, CreateClusterCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateClusterRequest
|
|
30
30
|
* ClusterName: "STRING_VALUE", // required
|
|
31
31
|
* NodeType: "STRING_VALUE", // required
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
33
33
|
* ReplicationFactor: Number("int"), // required
|
|
34
|
-
* AvailabilityZones: [
|
|
34
|
+
* AvailabilityZones: [ // AvailabilityZoneList
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* SubnetGroupName: "STRING_VALUE",
|
|
38
|
-
* SecurityGroupIds: [
|
|
38
|
+
* SecurityGroupIds: [ // SecurityGroupIdentifierList
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* PreferredMaintenanceWindow: "STRING_VALUE",
|
|
42
42
|
* NotificationTopicArn: "STRING_VALUE",
|
|
43
43
|
* IamRoleArn: "STRING_VALUE", // required
|
|
44
44
|
* ParameterGroupName: "STRING_VALUE",
|
|
45
|
-
* Tags: [
|
|
46
|
-
* {
|
|
45
|
+
* Tags: [ // TagList
|
|
46
|
+
* { // Tag
|
|
47
47
|
* Key: "STRING_VALUE",
|
|
48
48
|
* Value: "STRING_VALUE",
|
|
49
49
|
* },
|
|
50
50
|
* ],
|
|
51
|
-
* SSESpecification: {
|
|
51
|
+
* SSESpecification: { // SSESpecification
|
|
52
52
|
* Enabled: true || false, // required
|
|
53
53
|
* },
|
|
54
54
|
* ClusterEndpointEncryptionType: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface CreateParameterGroupCommandOutput extends CreateParameterGroupR
|
|
|
27
27
|
* import { DAXClient, CreateParameterGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, CreateParameterGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateParameterGroupRequest
|
|
31
31
|
* ParameterGroupName: "STRING_VALUE", // required
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -26,10 +26,10 @@ export interface CreateSubnetGroupCommandOutput extends CreateSubnetGroupRespons
|
|
|
26
26
|
* import { DAXClient, CreateSubnetGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, CreateSubnetGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateSubnetGroupRequest
|
|
30
30
|
* SubnetGroupName: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
|
-
* SubnetIds: [ // required
|
|
32
|
+
* SubnetIds: [ // SubnetIdentifierList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -29,13 +29,13 @@ export interface DecreaseReplicationFactorCommandOutput extends DecreaseReplicat
|
|
|
29
29
|
* import { DAXClient, DecreaseReplicationFactorCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
30
30
|
* // const { DAXClient, DecreaseReplicationFactorCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
31
31
|
* const client = new DAXClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DecreaseReplicationFactorRequest
|
|
33
33
|
* ClusterName: "STRING_VALUE", // required
|
|
34
34
|
* NewReplicationFactor: Number("int"), // required
|
|
35
|
-
* AvailabilityZones: [
|
|
35
|
+
* AvailabilityZones: [ // AvailabilityZoneList
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
|
-
* NodeIdsToRemove: [
|
|
38
|
+
* NodeIdsToRemove: [ // NodeIdentifierList
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* };
|
|
@@ -30,7 +30,7 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
|
|
|
30
30
|
* import { DAXClient, DeleteClusterCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
31
31
|
* // const { DAXClient, DeleteClusterCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
32
32
|
* const client = new DAXClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteClusterRequest
|
|
34
34
|
* ClusterName: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteClusterCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DeleteParameterGroupCommandOutput extends DeleteParameterGroupR
|
|
|
27
27
|
* import { DAXClient, DeleteParameterGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, DeleteParameterGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteParameterGroupRequest
|
|
31
31
|
* ParameterGroupName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteParameterGroupCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DeleteSubnetGroupCommandOutput extends DeleteSubnetGroupRespons
|
|
|
30
30
|
* import { DAXClient, DeleteSubnetGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
31
31
|
* // const { DAXClient, DeleteSubnetGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
32
32
|
* const client = new DAXClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteSubnetGroupRequest
|
|
34
34
|
* SubnetGroupName: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteSubnetGroupCommand(input);
|
|
@@ -38,8 +38,8 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse,
|
|
|
38
38
|
* import { DAXClient, DescribeClustersCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
39
39
|
* // const { DAXClient, DescribeClustersCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
40
40
|
* const client = new DAXClient(config);
|
|
41
|
-
* const input = {
|
|
42
|
-
* ClusterNames: [
|
|
41
|
+
* const input = { // DescribeClustersRequest
|
|
42
|
+
* ClusterNames: [ // ClusterNameList
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
45
|
* MaxResults: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface DescribeDefaultParametersCommandOutput extends DescribeDefaultP
|
|
|
27
27
|
* import { DAXClient, DescribeDefaultParametersCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, DescribeDefaultParametersCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeDefaultParametersRequest
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -30,7 +30,7 @@ export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __M
|
|
|
30
30
|
* import { DAXClient, DescribeEventsCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
31
31
|
* // const { DAXClient, DescribeEventsCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
32
32
|
* const client = new DAXClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DescribeEventsRequest
|
|
34
34
|
* SourceName: "STRING_VALUE",
|
|
35
35
|
* SourceType: "STRING_VALUE",
|
|
36
36
|
* StartTime: new Date("TIMESTAMP"),
|
|
@@ -27,8 +27,8 @@ export interface DescribeParameterGroupsCommandOutput extends DescribeParameterG
|
|
|
27
27
|
* import { DAXClient, DescribeParameterGroupsCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, DescribeParameterGroupsCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* ParameterGroupNames: [
|
|
30
|
+
* const input = { // DescribeParameterGroupsRequest
|
|
31
|
+
* ParameterGroupNames: [ // ParameterGroupNameList
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface DescribeParametersCommandOutput extends DescribeParametersRespo
|
|
|
26
26
|
* import { DAXClient, DescribeParametersCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, DescribeParametersCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeParametersRequest
|
|
30
30
|
* ParameterGroupName: "STRING_VALUE", // required
|
|
31
31
|
* Source: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -27,8 +27,8 @@ export interface DescribeSubnetGroupsCommandOutput extends DescribeSubnetGroupsR
|
|
|
27
27
|
* import { DAXClient, DescribeSubnetGroupsCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, DescribeSubnetGroupsCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* SubnetGroupNames: [
|
|
30
|
+
* const input = { // DescribeSubnetGroupsRequest
|
|
31
|
+
* SubnetGroupNames: [ // SubnetGroupNameList
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -26,10 +26,10 @@ export interface IncreaseReplicationFactorCommandOutput extends IncreaseReplicat
|
|
|
26
26
|
* import { DAXClient, IncreaseReplicationFactorCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, IncreaseReplicationFactorCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // IncreaseReplicationFactorRequest
|
|
30
30
|
* ClusterName: "STRING_VALUE", // required
|
|
31
31
|
* NewReplicationFactor: Number("int"), // required
|
|
32
|
-
* AvailabilityZones: [
|
|
32
|
+
* AvailabilityZones: [ // AvailabilityZoneList
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
27
27
|
* import { DAXClient, ListTagsCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, ListTagsCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListTagsRequest
|
|
31
31
|
* ResourceName: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -32,7 +32,7 @@ export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataB
|
|
|
32
32
|
* import { DAXClient, RebootNodeCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
33
33
|
* // const { DAXClient, RebootNodeCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
34
34
|
* const client = new DAXClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // RebootNodeRequest
|
|
36
36
|
* ClusterName: "STRING_VALUE", // required
|
|
37
37
|
* NodeId: "STRING_VALUE", // required
|
|
38
38
|
* };
|
|
@@ -27,10 +27,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
27
27
|
* import { DAXClient, TagResourceCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, TagResourceCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // TagResourceRequest
|
|
31
31
|
* ResourceName: "STRING_VALUE", // required
|
|
32
|
-
* Tags: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* Tags: [ // TagList // required
|
|
33
|
+
* { // Tag
|
|
34
34
|
* Key: "STRING_VALUE",
|
|
35
35
|
* Value: "STRING_VALUE",
|
|
36
36
|
* },
|
|
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
27
27
|
* import { DAXClient, UntagResourceCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
28
28
|
* // const { DAXClient, UntagResourceCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
29
29
|
* const client = new DAXClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
31
|
* ResourceName: "STRING_VALUE", // required
|
|
32
|
-
* TagKeys: [ // required
|
|
32
|
+
* TagKeys: [ // KeyList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -28,14 +28,14 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __Met
|
|
|
28
28
|
* import { DAXClient, UpdateClusterCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
29
29
|
* // const { DAXClient, UpdateClusterCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
30
30
|
* const client = new DAXClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateClusterRequest
|
|
32
32
|
* ClusterName: "STRING_VALUE", // required
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
34
|
* PreferredMaintenanceWindow: "STRING_VALUE",
|
|
35
35
|
* NotificationTopicArn: "STRING_VALUE",
|
|
36
36
|
* NotificationTopicStatus: "STRING_VALUE",
|
|
37
37
|
* ParameterGroupName: "STRING_VALUE",
|
|
38
|
-
* SecurityGroupIds: [
|
|
38
|
+
* SecurityGroupIds: [ // SecurityGroupIdentifierList
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* };
|
|
@@ -28,10 +28,10 @@ export interface UpdateParameterGroupCommandOutput extends UpdateParameterGroupR
|
|
|
28
28
|
* import { DAXClient, UpdateParameterGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
29
29
|
* // const { DAXClient, UpdateParameterGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
30
30
|
* const client = new DAXClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateParameterGroupRequest
|
|
32
32
|
* ParameterGroupName: "STRING_VALUE", // required
|
|
33
|
-
* ParameterNameValues: [ // required
|
|
34
|
-
* {
|
|
33
|
+
* ParameterNameValues: [ // ParameterNameValueList // required
|
|
34
|
+
* { // ParameterNameValue
|
|
35
35
|
* ParameterName: "STRING_VALUE",
|
|
36
36
|
* ParameterValue: "STRING_VALUE",
|
|
37
37
|
* },
|
|
@@ -26,10 +26,10 @@ export interface UpdateSubnetGroupCommandOutput extends UpdateSubnetGroupRespons
|
|
|
26
26
|
* import { DAXClient, UpdateSubnetGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import
|
|
27
27
|
* // const { DAXClient, UpdateSubnetGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import
|
|
28
28
|
* const client = new DAXClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateSubnetGroupRequest
|
|
30
30
|
* SubnetGroupName: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
|
-
* SubnetIds: [
|
|
32
|
+
* SubnetIds: [ // SubnetIdentifierList
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -27,11 +27,16 @@ export declare class ClusterQuotaForCustomerExceededFault extends __BaseExceptio
|
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
29
|
* @public
|
|
30
|
+
* @enum
|
|
30
31
|
*/
|
|
31
|
-
export declare
|
|
32
|
-
NONE
|
|
33
|
-
TLS
|
|
34
|
-
}
|
|
32
|
+
export declare const ClusterEndpointEncryptionType: {
|
|
33
|
+
readonly NONE: "NONE";
|
|
34
|
+
readonly TLS: "TLS";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type ClusterEndpointEncryptionType = (typeof ClusterEndpointEncryptionType)[keyof typeof ClusterEndpointEncryptionType];
|
|
35
40
|
/**
|
|
36
41
|
* @public
|
|
37
42
|
* <p>Represents the settings used to enable server-side encryption.</p>
|
|
@@ -17,10 +17,12 @@ export declare class ClusterQuotaForCustomerExceededFault extends __BaseExceptio
|
|
|
17
17
|
>
|
|
18
18
|
);
|
|
19
19
|
}
|
|
20
|
-
export declare
|
|
21
|
-
NONE
|
|
22
|
-
TLS
|
|
23
|
-
}
|
|
20
|
+
export declare const ClusterEndpointEncryptionType: {
|
|
21
|
+
readonly NONE: "NONE";
|
|
22
|
+
readonly TLS: "TLS";
|
|
23
|
+
};
|
|
24
|
+
export type ClusterEndpointEncryptionType =
|
|
25
|
+
(typeof ClusterEndpointEncryptionType)[keyof typeof ClusterEndpointEncryptionType];
|
|
24
26
|
export interface SSESpecification {
|
|
25
27
|
Enabled: boolean | undefined;
|
|
26
28
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dax",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dax Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|