@aws-sdk/client-acm 3.1087.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/ACM.d.ts +129 -159
- package/dist-types/ts3.4/ACMClient.d.ts +14 -24
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +2 -3
- package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/SearchCertificatesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +14 -28
- package/dist-types/ts3.4/models/errors.d.ts +16 -49
- package/dist-types/ts3.4/models/models_0.d.ts +2 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -30
- package/dist-types/ts3.4/runtimeConfig.d.ts +10 -24
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -30
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +3 -5
- package/package.json +38 -38
|
@@ -9,19 +9,16 @@ export declare const CertificateExport: {
|
|
|
9
9
|
readonly DISABLED: "DISABLED";
|
|
10
10
|
readonly ENABLED: "ENABLED";
|
|
11
11
|
};
|
|
12
|
-
export type CertificateExport =
|
|
13
|
-
(typeof CertificateExport)[keyof typeof CertificateExport];
|
|
12
|
+
export type CertificateExport = (typeof CertificateExport)[keyof typeof CertificateExport];
|
|
14
13
|
export declare const CertificateManagedBy: {
|
|
15
14
|
readonly CLOUDFRONT: "CLOUDFRONT";
|
|
16
15
|
};
|
|
17
|
-
export type CertificateManagedBy =
|
|
18
|
-
(typeof CertificateManagedBy)[keyof typeof CertificateManagedBy];
|
|
16
|
+
export type CertificateManagedBy = (typeof CertificateManagedBy)[keyof typeof CertificateManagedBy];
|
|
19
17
|
export declare const RenewalEligibility: {
|
|
20
18
|
readonly ELIGIBLE: "ELIGIBLE";
|
|
21
19
|
readonly INELIGIBLE: "INELIGIBLE";
|
|
22
20
|
};
|
|
23
|
-
export type RenewalEligibility =
|
|
24
|
-
(typeof RenewalEligibility)[keyof typeof RenewalEligibility];
|
|
21
|
+
export type RenewalEligibility = (typeof RenewalEligibility)[keyof typeof RenewalEligibility];
|
|
25
22
|
export declare const RenewalStatus: {
|
|
26
23
|
readonly FAILED: "FAILED";
|
|
27
24
|
readonly PENDING_AUTO_RENEWAL: "PENDING_AUTO_RENEWAL";
|
|
@@ -38,29 +35,25 @@ export declare const CertificateStatus: {
|
|
|
38
35
|
readonly REVOKED: "REVOKED";
|
|
39
36
|
readonly VALIDATION_TIMED_OUT: "VALIDATION_TIMED_OUT";
|
|
40
37
|
};
|
|
41
|
-
export type CertificateStatus =
|
|
42
|
-
(typeof CertificateStatus)[keyof typeof CertificateStatus];
|
|
38
|
+
export type CertificateStatus = (typeof CertificateStatus)[keyof typeof CertificateStatus];
|
|
43
39
|
export declare const CertificateType: {
|
|
44
40
|
readonly AMAZON_ISSUED: "AMAZON_ISSUED";
|
|
45
41
|
readonly IMPORTED: "IMPORTED";
|
|
46
42
|
readonly PRIVATE: "PRIVATE";
|
|
47
43
|
};
|
|
48
|
-
export type CertificateType =
|
|
49
|
-
(typeof CertificateType)[keyof typeof CertificateType];
|
|
44
|
+
export type CertificateType = (typeof CertificateType)[keyof typeof CertificateType];
|
|
50
45
|
export declare const ValidationMethod: {
|
|
51
46
|
readonly DNS: "DNS";
|
|
52
47
|
readonly EMAIL: "EMAIL";
|
|
53
48
|
readonly HTTP: "HTTP";
|
|
54
49
|
};
|
|
55
|
-
export type ValidationMethod =
|
|
56
|
-
(typeof ValidationMethod)[keyof typeof ValidationMethod];
|
|
50
|
+
export type ValidationMethod = (typeof ValidationMethod)[keyof typeof ValidationMethod];
|
|
57
51
|
export declare const AcmeAccountStatus: {
|
|
58
52
|
readonly DEACTIVATED: "DEACTIVATED";
|
|
59
53
|
readonly REVOKED: "REVOKED";
|
|
60
54
|
readonly VALID: "VALID";
|
|
61
55
|
};
|
|
62
|
-
export type AcmeAccountStatus =
|
|
63
|
-
(typeof AcmeAccountStatus)[keyof typeof AcmeAccountStatus];
|
|
56
|
+
export type AcmeAccountStatus = (typeof AcmeAccountStatus)[keyof typeof AcmeAccountStatus];
|
|
64
57
|
export declare const AcmeAuthorizationBehavior: {
|
|
65
58
|
readonly PRE_APPROVED: "PRE_APPROVED";
|
|
66
59
|
};
|
|
@@ -88,8 +81,7 @@ export declare const DomainScopeOption: {
|
|
|
88
81
|
readonly DISABLED: "DISABLED";
|
|
89
82
|
readonly ENABLED: "ENABLED";
|
|
90
83
|
};
|
|
91
|
-
export type DomainScopeOption =
|
|
92
|
-
(typeof DomainScopeOption)[keyof typeof DomainScopeOption];
|
|
84
|
+
export type DomainScopeOption = (typeof DomainScopeOption)[keyof typeof DomainScopeOption];
|
|
93
85
|
export declare const RecordType: {
|
|
94
86
|
readonly CNAME: "CNAME";
|
|
95
87
|
};
|
|
@@ -97,8 +89,7 @@ export type RecordType = (typeof RecordType)[keyof typeof RecordType];
|
|
|
97
89
|
export declare const PrevalidationType: {
|
|
98
90
|
readonly DNS_PREVALIDATION: "DNS_PREVALIDATION";
|
|
99
91
|
};
|
|
100
|
-
export type PrevalidationType =
|
|
101
|
-
(typeof PrevalidationType)[keyof typeof PrevalidationType];
|
|
92
|
+
export type PrevalidationType = (typeof PrevalidationType)[keyof typeof PrevalidationType];
|
|
102
93
|
export declare const AcmeDomainValidationStatus: {
|
|
103
94
|
readonly DELETING: "DELETING";
|
|
104
95
|
readonly INVALID: "INVALID";
|
|
@@ -112,16 +103,14 @@ export declare const PublicKeyAlgorithm: {
|
|
|
112
103
|
readonly EC_SECP384_R1: "EC_secp384r1";
|
|
113
104
|
readonly RSA_2048: "RSA_2048";
|
|
114
105
|
};
|
|
115
|
-
export type PublicKeyAlgorithm =
|
|
116
|
-
(typeof PublicKeyAlgorithm)[keyof typeof PublicKeyAlgorithm];
|
|
106
|
+
export type PublicKeyAlgorithm = (typeof PublicKeyAlgorithm)[keyof typeof PublicKeyAlgorithm];
|
|
117
107
|
export declare const AcmeEndpointStatus: {
|
|
118
108
|
readonly ACTIVE: "ACTIVE";
|
|
119
109
|
readonly CREATING: "CREATING";
|
|
120
110
|
readonly DELETING: "DELETING";
|
|
121
111
|
readonly FAILED: "FAILED";
|
|
122
112
|
};
|
|
123
|
-
export type AcmeEndpointStatus =
|
|
124
|
-
(typeof AcmeEndpointStatus)[keyof typeof AcmeEndpointStatus];
|
|
113
|
+
export type AcmeEndpointStatus = (typeof AcmeEndpointStatus)[keyof typeof AcmeEndpointStatus];
|
|
125
114
|
export declare const DomainStatus: {
|
|
126
115
|
readonly FAILED: "FAILED";
|
|
127
116
|
readonly PENDING_VALIDATION: "PENDING_VALIDATION";
|
|
@@ -142,8 +131,7 @@ export declare const ExtendedKeyUsageName: {
|
|
|
142
131
|
readonly TLS_WEB_CLIENT_AUTHENTICATION: "TLS_WEB_CLIENT_AUTHENTICATION";
|
|
143
132
|
readonly TLS_WEB_SERVER_AUTHENTICATION: "TLS_WEB_SERVER_AUTHENTICATION";
|
|
144
133
|
};
|
|
145
|
-
export type ExtendedKeyUsageName =
|
|
146
|
-
(typeof ExtendedKeyUsageName)[keyof typeof ExtendedKeyUsageName];
|
|
134
|
+
export type ExtendedKeyUsageName = (typeof ExtendedKeyUsageName)[keyof typeof ExtendedKeyUsageName];
|
|
147
135
|
export declare const FailureReason: {
|
|
148
136
|
readonly ADDITIONAL_VERIFICATION_REQUIRED: "ADDITIONAL_VERIFICATION_REQUIRED";
|
|
149
137
|
readonly CAA_ERROR: "CAA_ERROR";
|
|
@@ -207,14 +195,12 @@ export declare const RevocationReason: {
|
|
|
207
195
|
readonly SUPERSEDED: "SUPERSEDED";
|
|
208
196
|
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
209
197
|
};
|
|
210
|
-
export type RevocationReason =
|
|
211
|
-
(typeof RevocationReason)[keyof typeof RevocationReason];
|
|
198
|
+
export type RevocationReason = (typeof RevocationReason)[keyof typeof RevocationReason];
|
|
212
199
|
export declare const ComparisonOperator: {
|
|
213
200
|
readonly CONTAINS: "CONTAINS";
|
|
214
201
|
readonly EQUALS: "EQUALS";
|
|
215
202
|
};
|
|
216
|
-
export type ComparisonOperator =
|
|
217
|
-
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
203
|
+
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
218
204
|
export declare const TimeType: {
|
|
219
205
|
readonly DAYS: "DAYS";
|
|
220
206
|
readonly HOURS: "HOURS";
|
|
@@ -5,37 +5,27 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
5
5
|
readonly name: "AccessDeniedException";
|
|
6
6
|
readonly $fault: "client";
|
|
7
7
|
Message?: string | undefined;
|
|
8
|
-
constructor(
|
|
9
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
-
);
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
11
9
|
}
|
|
12
10
|
export declare class InvalidArnException extends __BaseException {
|
|
13
11
|
readonly name: "InvalidArnException";
|
|
14
12
|
readonly $fault: "client";
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<InvalidArnException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class InvalidParameterException extends __BaseException {
|
|
20
16
|
readonly name: "InvalidParameterException";
|
|
21
17
|
readonly $fault: "client";
|
|
22
|
-
constructor(
|
|
23
|
-
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
24
|
-
);
|
|
18
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
25
19
|
}
|
|
26
20
|
export declare class InvalidTagException extends __BaseException {
|
|
27
21
|
readonly name: "InvalidTagException";
|
|
28
22
|
readonly $fault: "client";
|
|
29
|
-
constructor(
|
|
30
|
-
opts: __ExceptionOptionType<InvalidTagException, __BaseException>
|
|
31
|
-
);
|
|
23
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
32
24
|
}
|
|
33
25
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
34
26
|
readonly name: "ResourceNotFoundException";
|
|
35
27
|
readonly $fault: "client";
|
|
36
|
-
constructor(
|
|
37
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
38
|
-
);
|
|
28
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
39
29
|
}
|
|
40
30
|
export declare class TagPolicyException extends __BaseException {
|
|
41
31
|
readonly name: "TagPolicyException";
|
|
@@ -46,23 +36,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
46
36
|
readonly name: "ThrottlingException";
|
|
47
37
|
readonly $fault: "client";
|
|
48
38
|
throttlingReasons?: ThrottlingReason[] | undefined;
|
|
49
|
-
constructor(
|
|
50
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
51
|
-
);
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
52
40
|
}
|
|
53
41
|
export declare class TooManyTagsException extends __BaseException {
|
|
54
42
|
readonly name: "TooManyTagsException";
|
|
55
43
|
readonly $fault: "client";
|
|
56
|
-
constructor(
|
|
57
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
58
|
-
);
|
|
44
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
59
45
|
}
|
|
60
46
|
export declare class ValidationException extends __BaseException {
|
|
61
47
|
readonly name: "ValidationException";
|
|
62
48
|
readonly $fault: "client";
|
|
63
|
-
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
65
|
-
);
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
66
50
|
}
|
|
67
51
|
export declare class ConflictException extends __BaseException {
|
|
68
52
|
readonly name: "ConflictException";
|
|
@@ -73,59 +57,42 @@ export declare class InternalServerException extends __BaseException {
|
|
|
73
57
|
readonly name: "InternalServerException";
|
|
74
58
|
readonly $fault: "server";
|
|
75
59
|
$retryable: {};
|
|
76
|
-
constructor(
|
|
77
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
78
|
-
);
|
|
60
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
79
61
|
}
|
|
80
62
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
81
63
|
readonly name: "ServiceQuotaExceededException";
|
|
82
64
|
readonly $fault: "client";
|
|
83
|
-
constructor(
|
|
84
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
85
|
-
);
|
|
65
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
86
66
|
}
|
|
87
67
|
export declare class ResourceInUseException extends __BaseException {
|
|
88
68
|
readonly name: "ResourceInUseException";
|
|
89
69
|
readonly $fault: "client";
|
|
90
|
-
constructor(
|
|
91
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
92
|
-
);
|
|
70
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
93
71
|
}
|
|
94
72
|
export declare class RequestInProgressException extends __BaseException {
|
|
95
73
|
readonly name: "RequestInProgressException";
|
|
96
74
|
readonly $fault: "client";
|
|
97
|
-
constructor(
|
|
98
|
-
opts: __ExceptionOptionType<RequestInProgressException, __BaseException>
|
|
99
|
-
);
|
|
75
|
+
constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
|
|
100
76
|
}
|
|
101
77
|
export declare class LimitExceededException extends __BaseException {
|
|
102
78
|
readonly name: "LimitExceededException";
|
|
103
79
|
readonly $fault: "client";
|
|
104
|
-
constructor(
|
|
105
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
106
|
-
);
|
|
80
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
107
81
|
}
|
|
108
82
|
export declare class InvalidArgsException extends __BaseException {
|
|
109
83
|
readonly name: "InvalidArgsException";
|
|
110
84
|
readonly $fault: "client";
|
|
111
|
-
constructor(
|
|
112
|
-
opts: __ExceptionOptionType<InvalidArgsException, __BaseException>
|
|
113
|
-
);
|
|
85
|
+
constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
|
|
114
86
|
}
|
|
115
87
|
export declare class InvalidDomainValidationOptionsException extends __BaseException {
|
|
116
88
|
readonly name: "InvalidDomainValidationOptionsException";
|
|
117
89
|
readonly $fault: "client";
|
|
118
90
|
constructor(
|
|
119
|
-
opts: __ExceptionOptionType<
|
|
120
|
-
InvalidDomainValidationOptionsException,
|
|
121
|
-
__BaseException
|
|
122
|
-
>
|
|
91
|
+
opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>,
|
|
123
92
|
);
|
|
124
93
|
}
|
|
125
94
|
export declare class InvalidStateException extends __BaseException {
|
|
126
95
|
readonly name: "InvalidStateException";
|
|
127
96
|
readonly $fault: "client";
|
|
128
|
-
constructor(
|
|
129
|
-
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
130
|
-
);
|
|
97
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
131
98
|
}
|
|
@@ -417,9 +417,7 @@ export interface KeyUsage {
|
|
|
417
417
|
Name?: KeyUsageName | undefined;
|
|
418
418
|
}
|
|
419
419
|
export interface CertificateOptions {
|
|
420
|
-
CertificateTransparencyLoggingPreference?:
|
|
421
|
-
| CertificateTransparencyLoggingPreference
|
|
422
|
-
| undefined;
|
|
420
|
+
CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference | undefined;
|
|
423
421
|
Export?: CertificateExport | undefined;
|
|
424
422
|
}
|
|
425
423
|
export interface RenewalSummary {
|
|
@@ -468,9 +466,7 @@ export interface CommonNameFilter {
|
|
|
468
466
|
Value: string | undefined;
|
|
469
467
|
ComparisonOperator: ComparisonOperator | undefined;
|
|
470
468
|
}
|
|
471
|
-
export type SubjectFilter =
|
|
472
|
-
| SubjectFilter.CommonNameMember
|
|
473
|
-
| SubjectFilter.$UnknownMember;
|
|
469
|
+
export type SubjectFilter = SubjectFilter.CommonNameMember | SubjectFilter.$UnknownMember;
|
|
474
470
|
export declare namespace SubjectFilter {
|
|
475
471
|
interface CommonNameMember {
|
|
476
472
|
CommonName: CommonNameFilter;
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,23 +81,17 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
clientContextParams?: {
|
|
107
|
-
serviceType?:
|
|
108
|
-
| string
|
|
109
|
-
| undefined
|
|
110
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
94
|
+
serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
111
95
|
};
|
|
112
|
-
serviceType?:
|
|
113
|
-
| string
|
|
114
|
-
| undefined
|
|
115
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
96
|
+
serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
116
97
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,23 +81,17 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
clientContextParams?: {
|
|
102
|
-
serviceType?:
|
|
103
|
-
| string
|
|
104
|
-
| undefined
|
|
105
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
94
|
+
serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
106
95
|
};
|
|
107
|
-
serviceType?:
|
|
108
|
-
| string
|
|
109
|
-
| undefined
|
|
110
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
96
|
+
serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
111
97
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,23 +85,17 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
clientContextParams?: {
|
|
111
|
-
serviceType?:
|
|
112
|
-
| string
|
|
113
|
-
| undefined
|
|
114
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
98
|
+
serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
115
99
|
};
|
|
116
|
-
serviceType?:
|
|
117
|
-
| string
|
|
118
|
-
| undefined
|
|
119
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
100
|
+
serviceType?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
120
101
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ACMHttpAuthSchemeProvider;
|
|
@@ -8,11 +8,9 @@ import { ACMServiceException } from "../models/ACMServiceException";
|
|
|
8
8
|
import { ResourceNotFoundException } from "../models/errors";
|
|
9
9
|
export declare const waitForAcmeDomainValidationDeleted: (
|
|
10
10
|
params: WaiterConfiguration<ACMClient>,
|
|
11
|
-
input: DescribeAcmeDomainValidationCommandInput
|
|
12
|
-
) => Promise<
|
|
13
|
-
WaiterResult<DescribeAcmeDomainValidationCommandOutput | ACMServiceException>
|
|
14
|
-
>;
|
|
11
|
+
input: DescribeAcmeDomainValidationCommandInput,
|
|
12
|
+
) => Promise<WaiterResult<DescribeAcmeDomainValidationCommandOutput | ACMServiceException>>;
|
|
15
13
|
export declare const waitUntilAcmeDomainValidationDeleted: (
|
|
16
14
|
params: WaiterConfiguration<ACMClient>,
|
|
17
|
-
input: DescribeAcmeDomainValidationCommandInput
|
|
15
|
+
input: DescribeAcmeDomainValidationCommandInput,
|
|
18
16
|
) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -7,11 +7,9 @@ import {
|
|
|
7
7
|
import { ACMServiceException } from "../models/ACMServiceException";
|
|
8
8
|
export declare const waitForAcmeDomainValidationValidated: (
|
|
9
9
|
params: WaiterConfiguration<ACMClient>,
|
|
10
|
-
input: DescribeAcmeDomainValidationCommandInput
|
|
11
|
-
) => Promise<
|
|
12
|
-
WaiterResult<DescribeAcmeDomainValidationCommandOutput | ACMServiceException>
|
|
13
|
-
>;
|
|
10
|
+
input: DescribeAcmeDomainValidationCommandInput,
|
|
11
|
+
) => Promise<WaiterResult<DescribeAcmeDomainValidationCommandOutput | ACMServiceException>>;
|
|
14
12
|
export declare const waitUntilAcmeDomainValidationValidated: (
|
|
15
13
|
params: WaiterConfiguration<ACMClient>,
|
|
16
|
-
input: DescribeAcmeDomainValidationCommandInput
|
|
14
|
+
input: DescribeAcmeDomainValidationCommandInput,
|
|
17
15
|
) => Promise<WaiterResult<DescribeAcmeDomainValidationCommandOutput>>;
|
|
@@ -7,11 +7,9 @@ import {
|
|
|
7
7
|
import { ACMServiceException } from "../models/ACMServiceException";
|
|
8
8
|
export declare const waitForAcmeEndpointActive: (
|
|
9
9
|
params: WaiterConfiguration<ACMClient>,
|
|
10
|
-
input: DescribeAcmeEndpointCommandInput
|
|
11
|
-
) => Promise<
|
|
12
|
-
WaiterResult<DescribeAcmeEndpointCommandOutput | ACMServiceException>
|
|
13
|
-
>;
|
|
10
|
+
input: DescribeAcmeEndpointCommandInput,
|
|
11
|
+
) => Promise<WaiterResult<DescribeAcmeEndpointCommandOutput | ACMServiceException>>;
|
|
14
12
|
export declare const waitUntilAcmeEndpointActive: (
|
|
15
13
|
params: WaiterConfiguration<ACMClient>,
|
|
16
|
-
input: DescribeAcmeEndpointCommandInput
|
|
14
|
+
input: DescribeAcmeEndpointCommandInput,
|
|
17
15
|
) => Promise<WaiterResult<DescribeAcmeEndpointCommandOutput>>;
|
|
@@ -8,11 +8,9 @@ import { ACMServiceException } from "../models/ACMServiceException";
|
|
|
8
8
|
import { ResourceNotFoundException } from "../models/errors";
|
|
9
9
|
export declare const waitForAcmeEndpointDeleted: (
|
|
10
10
|
params: WaiterConfiguration<ACMClient>,
|
|
11
|
-
input: DescribeAcmeEndpointCommandInput
|
|
12
|
-
) => Promise<
|
|
13
|
-
WaiterResult<DescribeAcmeEndpointCommandOutput | ACMServiceException>
|
|
14
|
-
>;
|
|
11
|
+
input: DescribeAcmeEndpointCommandInput,
|
|
12
|
+
) => Promise<WaiterResult<DescribeAcmeEndpointCommandOutput | ACMServiceException>>;
|
|
15
13
|
export declare const waitUntilAcmeEndpointDeleted: (
|
|
16
14
|
params: WaiterConfiguration<ACMClient>,
|
|
17
|
-
input: DescribeAcmeEndpointCommandInput
|
|
15
|
+
input: DescribeAcmeEndpointCommandInput,
|
|
18
16
|
) => Promise<WaiterResult<ResourceNotFoundException>>;
|
|
@@ -7,11 +7,9 @@ import {
|
|
|
7
7
|
import { ACMServiceException } from "../models/ACMServiceException";
|
|
8
8
|
export declare const waitForCertificateValidated: (
|
|
9
9
|
params: WaiterConfiguration<ACMClient>,
|
|
10
|
-
input: DescribeCertificateCommandInput
|
|
11
|
-
) => Promise<
|
|
12
|
-
WaiterResult<DescribeCertificateCommandOutput | ACMServiceException>
|
|
13
|
-
>;
|
|
10
|
+
input: DescribeCertificateCommandInput,
|
|
11
|
+
) => Promise<WaiterResult<DescribeCertificateCommandOutput | ACMServiceException>>;
|
|
14
12
|
export declare const waitUntilCertificateValidated: (
|
|
15
13
|
params: WaiterConfiguration<ACMClient>,
|
|
16
|
-
input: DescribeCertificateCommandInput
|
|
14
|
+
input: DescribeCertificateCommandInput,
|
|
17
15
|
) => Promise<WaiterResult<DescribeCertificateCommandOutput>>;
|