@aws-sdk/client-route53profiles 3.560.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/LICENSE +201 -0
- package/README.md +335 -0
- package/dist-cjs/Route53Profiles.js +43 -0
- package/dist-cjs/Route53ProfilesClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/AssociateProfileCommand.js +28 -0
- package/dist-cjs/commands/AssociateResourceToProfileCommand.js +28 -0
- package/dist-cjs/commands/CreateProfileCommand.js +28 -0
- package/dist-cjs/commands/DeleteProfileCommand.js +28 -0
- package/dist-cjs/commands/DisassociateProfileCommand.js +28 -0
- package/dist-cjs/commands/DisassociateResourceFromProfileCommand.js +28 -0
- package/dist-cjs/commands/GetProfileAssociationCommand.js +28 -0
- package/dist-cjs/commands/GetProfileCommand.js +28 -0
- package/dist-cjs/commands/GetProfileResourceAssociationCommand.js +28 -0
- package/dist-cjs/commands/ListProfileAssociationsCommand.js +28 -0
- package/dist-cjs/commands/ListProfileResourceAssociationsCommand.js +28 -0
- package/dist-cjs/commands/ListProfilesCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
- package/dist-cjs/commands/TagResourceCommand.js +28 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/UpdateProfileResourceAssociationCommand.js +28 -0
- package/dist-cjs/commands/index.js +19 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/Route53ProfilesServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +161 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListProfileAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListProfileResourceAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListProfilesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +719 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/Route53Profiles.js +39 -0
- package/dist-es/Route53ProfilesClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AssociateProfileCommand.js +24 -0
- package/dist-es/commands/AssociateResourceToProfileCommand.js +24 -0
- package/dist-es/commands/CreateProfileCommand.js +24 -0
- package/dist-es/commands/DeleteProfileCommand.js +24 -0
- package/dist-es/commands/DisassociateProfileCommand.js +24 -0
- package/dist-es/commands/DisassociateResourceFromProfileCommand.js +24 -0
- package/dist-es/commands/GetProfileAssociationCommand.js +24 -0
- package/dist-es/commands/GetProfileCommand.js +24 -0
- package/dist-es/commands/GetProfileResourceAssociationCommand.js +24 -0
- package/dist-es/commands/ListProfileAssociationsCommand.js +24 -0
- package/dist-es/commands/ListProfileResourceAssociationsCommand.js +24 -0
- package/dist-es/commands/ListProfilesCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
- package/dist-es/commands/TagResourceCommand.js +24 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/UpdateProfileResourceAssociationCommand.js +24 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/Route53ProfilesServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +148 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListProfileAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListProfileResourceAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListProfilesPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +684 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/Route53Profiles.d.ts +126 -0
- package/dist-types/Route53ProfilesClient.d.ts +189 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/AssociateProfileCommand.d.ts +119 -0
- package/dist-types/commands/AssociateResourceToProfileCommand.d.ts +116 -0
- package/dist-types/commands/CreateProfileCommand.d.ts +104 -0
- package/dist-types/commands/DeleteProfileCommand.d.ts +97 -0
- package/dist-types/commands/DisassociateProfileCommand.d.ts +102 -0
- package/dist-types/commands/DisassociateResourceFromProfileCommand.d.ts +114 -0
- package/dist-types/commands/GetProfileAssociationCommand.d.ts +91 -0
- package/dist-types/commands/GetProfileCommand.d.ts +92 -0
- package/dist-types/commands/GetProfileResourceAssociationCommand.d.ts +98 -0
- package/dist-types/commands/ListProfileAssociationsCommand.d.ts +102 -0
- package/dist-types/commands/ListProfileResourceAssociationsCommand.d.ts +114 -0
- package/dist-types/commands/ListProfilesCommand.d.ts +95 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
- package/dist-types/commands/TagResourceCommand.d.ts +82 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
- package/dist-types/commands/UpdateProfileResourceAssociationCommand.d.ts +115 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/Route53ProfilesServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1067 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListProfileAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProfileResourceAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProfilesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/Route53Profiles.d.ts +281 -0
- package/dist-types/ts3.4/Route53ProfilesClient.d.ts +217 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/AssociateProfileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/AssociateResourceToProfileCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DisassociateProfileCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DisassociateResourceFromProfileCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetProfileAssociationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetProfileResourceAssociationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListProfileAssociationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListProfileResourceAssociationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateProfileResourceAssociationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/Route53ProfilesServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +261 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListProfileAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProfileResourceAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProfilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +103 -0
|
@@ -0,0 +1,1067 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { Route53ProfilesServiceException as __BaseException } from "./Route53ProfilesServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>
|
|
5
|
+
* The current account doesn't have the IAM permissions required to perform the specified operation.
|
|
6
|
+
* </p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
Message?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* <p>
|
|
20
|
+
* Tag for the Profile.
|
|
21
|
+
* </p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export interface Tag {
|
|
25
|
+
/**
|
|
26
|
+
* <p>
|
|
27
|
+
* Key associated with the <code>Tag</code>.
|
|
28
|
+
* </p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
Key: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>
|
|
34
|
+
* Value for the Tag.
|
|
35
|
+
* </p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Value: string | undefined;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export interface AssociateProfileRequest {
|
|
44
|
+
/**
|
|
45
|
+
* <p>
|
|
46
|
+
* ID of the Profile.
|
|
47
|
+
* </p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
ProfileId: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>
|
|
53
|
+
* The ID of the VPC.
|
|
54
|
+
* </p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
ResourceId: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* <p>
|
|
60
|
+
* A name for the association.
|
|
61
|
+
* </p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
Name: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* <p>
|
|
67
|
+
* A list of the tag keys and values that you want to identify the Profile association.
|
|
68
|
+
* </p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
Tags?: Tag[];
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
* @enum
|
|
76
|
+
*/
|
|
77
|
+
export declare const ProfileStatus: {
|
|
78
|
+
readonly COMPLETE: "COMPLETE";
|
|
79
|
+
readonly CREATING: "CREATING";
|
|
80
|
+
readonly DELETED: "DELETED";
|
|
81
|
+
readonly DELETING: "DELETING";
|
|
82
|
+
readonly FAILED: "FAILED";
|
|
83
|
+
readonly UPDATING: "UPDATING";
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export type ProfileStatus = (typeof ProfileStatus)[keyof typeof ProfileStatus];
|
|
89
|
+
/**
|
|
90
|
+
* <p>
|
|
91
|
+
* An association between a Route 53 Profile and a VPC.
|
|
92
|
+
* </p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export interface ProfileAssociation {
|
|
96
|
+
/**
|
|
97
|
+
* <p>
|
|
98
|
+
* ID of the Profile association.
|
|
99
|
+
* </p>
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
Id?: string;
|
|
103
|
+
/**
|
|
104
|
+
* <p>
|
|
105
|
+
* Name of the Profile association.
|
|
106
|
+
* </p>
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
Name?: string;
|
|
110
|
+
/**
|
|
111
|
+
* <p>
|
|
112
|
+
* Amazon Web Services account ID of the Profile association owner.
|
|
113
|
+
* </p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
OwnerId?: string;
|
|
117
|
+
/**
|
|
118
|
+
* <p>
|
|
119
|
+
* ID of the Profile.
|
|
120
|
+
* </p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
ProfileId?: string;
|
|
124
|
+
/**
|
|
125
|
+
* <p>
|
|
126
|
+
* The Amazon Resource Name (ARN) of the VPC.
|
|
127
|
+
* </p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
ResourceId?: string;
|
|
131
|
+
/**
|
|
132
|
+
* <p>
|
|
133
|
+
* Status of the Profile association.
|
|
134
|
+
* </p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
Status?: ProfileStatus;
|
|
138
|
+
/**
|
|
139
|
+
* <p>
|
|
140
|
+
* Additional information about the Profile association.
|
|
141
|
+
* </p>
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
StatusMessage?: string;
|
|
145
|
+
/**
|
|
146
|
+
* <p>
|
|
147
|
+
* The date and time that the Profile association was created, in Unix time format and Coordinated Universal Time (UTC).
|
|
148
|
+
* </p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
CreationTime?: Date;
|
|
152
|
+
/**
|
|
153
|
+
* <p>
|
|
154
|
+
* The date and time that the Profile association was modified, in Unix time format and Coordinated Universal Time (UTC).
|
|
155
|
+
* </p>
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
ModificationTime?: Date;
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
export interface AssociateProfileResponse {
|
|
164
|
+
/**
|
|
165
|
+
* <p>
|
|
166
|
+
* The association that you just created. The association has an ID that you can use to identify it in other requests, like update and delete.
|
|
167
|
+
* </p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
ProfileAssociation?: ProfileAssociation;
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* <p>
|
|
174
|
+
* The request you submitted conflicts with an existing request.
|
|
175
|
+
* </p>
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
export declare class ConflictException extends __BaseException {
|
|
179
|
+
readonly name: "ConflictException";
|
|
180
|
+
readonly $fault: "client";
|
|
181
|
+
Message?: string;
|
|
182
|
+
/**
|
|
183
|
+
* @internal
|
|
184
|
+
*/
|
|
185
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* <p>
|
|
189
|
+
* One or more parameters in this request are not valid.
|
|
190
|
+
* </p>
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
194
|
+
readonly name: "InvalidParameterException";
|
|
195
|
+
readonly $fault: "client";
|
|
196
|
+
Message: string | undefined;
|
|
197
|
+
/**
|
|
198
|
+
* <p>
|
|
199
|
+
* The parameter field name for the invalid parameter exception.
|
|
200
|
+
* </p>
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
203
|
+
FieldName?: string;
|
|
204
|
+
/**
|
|
205
|
+
* @internal
|
|
206
|
+
*/
|
|
207
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* <p>
|
|
211
|
+
* The request caused one or more limits to be exceeded.
|
|
212
|
+
* </p>
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
export declare class LimitExceededException extends __BaseException {
|
|
216
|
+
readonly name: "LimitExceededException";
|
|
217
|
+
readonly $fault: "client";
|
|
218
|
+
Message?: string;
|
|
219
|
+
/**
|
|
220
|
+
* <p>
|
|
221
|
+
* The resource type that caused the limits to be exceeded.
|
|
222
|
+
* </p>
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
ResourceType?: string;
|
|
226
|
+
/**
|
|
227
|
+
* @internal
|
|
228
|
+
*/
|
|
229
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
230
|
+
}
|
|
231
|
+
/**
|
|
232
|
+
* <p>
|
|
233
|
+
* The resource you are trying to associate, has already been associated.
|
|
234
|
+
* </p>
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
238
|
+
readonly name: "ResourceExistsException";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
Message?: string;
|
|
241
|
+
/**
|
|
242
|
+
* <p>
|
|
243
|
+
* The resource type that caused the resource exists exception.
|
|
244
|
+
* </p>
|
|
245
|
+
* @public
|
|
246
|
+
*/
|
|
247
|
+
ResourceType?: string;
|
|
248
|
+
/**
|
|
249
|
+
* @internal
|
|
250
|
+
*/
|
|
251
|
+
constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* <p>
|
|
255
|
+
* The resource you are associating is not found.
|
|
256
|
+
* </p>
|
|
257
|
+
* @public
|
|
258
|
+
*/
|
|
259
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
260
|
+
readonly name: "ResourceNotFoundException";
|
|
261
|
+
readonly $fault: "client";
|
|
262
|
+
Message?: string;
|
|
263
|
+
/**
|
|
264
|
+
* <p>
|
|
265
|
+
* The resource type that caused the resource not found exception.
|
|
266
|
+
* </p>
|
|
267
|
+
* @public
|
|
268
|
+
*/
|
|
269
|
+
ResourceType?: string;
|
|
270
|
+
/**
|
|
271
|
+
* @internal
|
|
272
|
+
*/
|
|
273
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* <p>
|
|
277
|
+
* The request was throttled. Try again in a few minutes.
|
|
278
|
+
* </p>
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
export declare class ThrottlingException extends __BaseException {
|
|
282
|
+
readonly name: "ThrottlingException";
|
|
283
|
+
readonly $fault: "client";
|
|
284
|
+
Message?: string;
|
|
285
|
+
/**
|
|
286
|
+
* @internal
|
|
287
|
+
*/
|
|
288
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* <p>
|
|
292
|
+
* You have provided an invalid command.
|
|
293
|
+
* </p>
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
296
|
+
export declare class ValidationException extends __BaseException {
|
|
297
|
+
readonly name: "ValidationException";
|
|
298
|
+
readonly $fault: "client";
|
|
299
|
+
Message?: string;
|
|
300
|
+
/**
|
|
301
|
+
* @internal
|
|
302
|
+
*/
|
|
303
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
304
|
+
}
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
*/
|
|
308
|
+
export interface AssociateResourceToProfileRequest {
|
|
309
|
+
/**
|
|
310
|
+
* <p>
|
|
311
|
+
* ID of the Profile.
|
|
312
|
+
* </p>
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
315
|
+
ProfileId: string | undefined;
|
|
316
|
+
/**
|
|
317
|
+
* <p>
|
|
318
|
+
* Amazon resource number, ARN, of the DNS resource.
|
|
319
|
+
* </p>
|
|
320
|
+
* @public
|
|
321
|
+
*/
|
|
322
|
+
ResourceArn: string | undefined;
|
|
323
|
+
/**
|
|
324
|
+
* <p>
|
|
325
|
+
* Name for the resource association.
|
|
326
|
+
* </p>
|
|
327
|
+
* @public
|
|
328
|
+
*/
|
|
329
|
+
Name: string | undefined;
|
|
330
|
+
/**
|
|
331
|
+
* <p>
|
|
332
|
+
* If you are adding a DNS Firewall rule group, include also a priority in this format:
|
|
333
|
+
* </p>
|
|
334
|
+
* <p>
|
|
335
|
+
* <code>Key=FirewallRuleGroupPriority,Value=100</code>
|
|
336
|
+
* </p>
|
|
337
|
+
* @public
|
|
338
|
+
*/
|
|
339
|
+
ResourceProperties?: string;
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
* <p>
|
|
343
|
+
* The association between a Route 53 Profile and resources.
|
|
344
|
+
* </p>
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
export interface ProfileResourceAssociation {
|
|
348
|
+
/**
|
|
349
|
+
* <p>
|
|
350
|
+
* ID of the Profile resource association.
|
|
351
|
+
* </p>
|
|
352
|
+
* @public
|
|
353
|
+
*/
|
|
354
|
+
Id?: string;
|
|
355
|
+
/**
|
|
356
|
+
* <p>
|
|
357
|
+
* Name of the Profile resource association.
|
|
358
|
+
* </p>
|
|
359
|
+
* @public
|
|
360
|
+
*/
|
|
361
|
+
Name?: string;
|
|
362
|
+
/**
|
|
363
|
+
* <p>
|
|
364
|
+
* Amazon Web Services account ID of the Profile resource association owner.
|
|
365
|
+
* </p>
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
368
|
+
OwnerId?: string;
|
|
369
|
+
/**
|
|
370
|
+
* <p>
|
|
371
|
+
* Profile ID of the Profile that the resources are associated with.
|
|
372
|
+
* </p>
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
375
|
+
ProfileId?: string;
|
|
376
|
+
/**
|
|
377
|
+
* <p>
|
|
378
|
+
* The Amazon Resource Name (ARN) of the resource association.
|
|
379
|
+
* </p>
|
|
380
|
+
* @public
|
|
381
|
+
*/
|
|
382
|
+
ResourceArn?: string;
|
|
383
|
+
/**
|
|
384
|
+
* <p>
|
|
385
|
+
* Resource type, such as a private hosted zone, or DNS Firewall rule group.
|
|
386
|
+
* </p>
|
|
387
|
+
* @public
|
|
388
|
+
*/
|
|
389
|
+
ResourceType?: string;
|
|
390
|
+
/**
|
|
391
|
+
* <p>
|
|
392
|
+
* If the DNS resource is a DNS Firewall rule group, this indicates the priority.
|
|
393
|
+
* </p>
|
|
394
|
+
* @public
|
|
395
|
+
*/
|
|
396
|
+
ResourceProperties?: string;
|
|
397
|
+
/**
|
|
398
|
+
* <p>
|
|
399
|
+
* Status of the Profile resource association.
|
|
400
|
+
* </p>
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
403
|
+
Status?: ProfileStatus;
|
|
404
|
+
/**
|
|
405
|
+
* <p>
|
|
406
|
+
* Additional information about the Profile resource association.
|
|
407
|
+
* </p>
|
|
408
|
+
* @public
|
|
409
|
+
*/
|
|
410
|
+
StatusMessage?: string;
|
|
411
|
+
/**
|
|
412
|
+
* <p>
|
|
413
|
+
* The date and time that the Profile resource association was created, in Unix time format and Coordinated Universal Time (UTC).
|
|
414
|
+
* </p>
|
|
415
|
+
* @public
|
|
416
|
+
*/
|
|
417
|
+
CreationTime?: Date;
|
|
418
|
+
/**
|
|
419
|
+
* <p>
|
|
420
|
+
* The date and time that the Profile resource association was modified, in Unix time format and Coordinated Universal Time (UTC).
|
|
421
|
+
* </p>
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
ModificationTime?: Date;
|
|
425
|
+
}
|
|
426
|
+
/**
|
|
427
|
+
* @public
|
|
428
|
+
*/
|
|
429
|
+
export interface AssociateResourceToProfileResponse {
|
|
430
|
+
/**
|
|
431
|
+
* <p>
|
|
432
|
+
* Infromation about the <code>AssociateResourceToProfile</code>, including a status message.
|
|
433
|
+
* </p>
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
ProfileResourceAssociation?: ProfileResourceAssociation;
|
|
437
|
+
}
|
|
438
|
+
/**
|
|
439
|
+
* <p>
|
|
440
|
+
* An internal server error occured. Retry your request.
|
|
441
|
+
* </p>
|
|
442
|
+
* @public
|
|
443
|
+
*/
|
|
444
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
445
|
+
readonly name: "InternalServiceErrorException";
|
|
446
|
+
readonly $fault: "client";
|
|
447
|
+
Message?: string;
|
|
448
|
+
/**
|
|
449
|
+
* @internal
|
|
450
|
+
*/
|
|
451
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
452
|
+
}
|
|
453
|
+
/**
|
|
454
|
+
* @public
|
|
455
|
+
*/
|
|
456
|
+
export interface CreateProfileRequest {
|
|
457
|
+
/**
|
|
458
|
+
* <p>
|
|
459
|
+
* A name for the Profile.
|
|
460
|
+
* </p>
|
|
461
|
+
* @public
|
|
462
|
+
*/
|
|
463
|
+
Name: string | undefined;
|
|
464
|
+
/**
|
|
465
|
+
* <p>
|
|
466
|
+
* <code>ClientToken</code> is an idempotency token that ensures a call to <code>CreateProfile</code> completes only once. You choose the value to pass.
|
|
467
|
+
* For example, an issue might prevent you from getting a response from <code>CreateProfile</code>.
|
|
468
|
+
* In this case, safely retry your call to <code>CreateProfile</code> by using the same <code>CreateProfile</code> parameter value.
|
|
469
|
+
* </p>
|
|
470
|
+
* @public
|
|
471
|
+
*/
|
|
472
|
+
ClientToken?: string;
|
|
473
|
+
/**
|
|
474
|
+
* <p>
|
|
475
|
+
* A list of the tag keys and values that you want to associate with the Route 53 Profile.
|
|
476
|
+
* </p>
|
|
477
|
+
* @public
|
|
478
|
+
*/
|
|
479
|
+
Tags?: Tag[];
|
|
480
|
+
}
|
|
481
|
+
/**
|
|
482
|
+
* @public
|
|
483
|
+
* @enum
|
|
484
|
+
*/
|
|
485
|
+
export declare const ShareStatus: {
|
|
486
|
+
readonly NOT_SHARED: "NOT_SHARED";
|
|
487
|
+
readonly SHARED_BY_ME: "SHARED_BY_ME";
|
|
488
|
+
readonly SHARED_WITH_ME: "SHARED_WITH_ME";
|
|
489
|
+
};
|
|
490
|
+
/**
|
|
491
|
+
* @public
|
|
492
|
+
*/
|
|
493
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
494
|
+
/**
|
|
495
|
+
* <p>
|
|
496
|
+
* A complex type that includes settings for a Route 53 Profile.
|
|
497
|
+
* </p>
|
|
498
|
+
* @public
|
|
499
|
+
*/
|
|
500
|
+
export interface Profile {
|
|
501
|
+
/**
|
|
502
|
+
* <p>
|
|
503
|
+
* ID of the Profile.
|
|
504
|
+
* </p>
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
507
|
+
Id?: string;
|
|
508
|
+
/**
|
|
509
|
+
* <p>
|
|
510
|
+
* The Amazon Resource Name (ARN) of the Profile.
|
|
511
|
+
* </p>
|
|
512
|
+
* @public
|
|
513
|
+
*/
|
|
514
|
+
Arn?: string;
|
|
515
|
+
/**
|
|
516
|
+
* <p>
|
|
517
|
+
* Name of the Profile.
|
|
518
|
+
* </p>
|
|
519
|
+
* @public
|
|
520
|
+
*/
|
|
521
|
+
Name?: string;
|
|
522
|
+
/**
|
|
523
|
+
* <p>
|
|
524
|
+
* Amazon Web Services account ID of the Profile owner.
|
|
525
|
+
* </p>
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
OwnerId?: string;
|
|
529
|
+
/**
|
|
530
|
+
* <p>
|
|
531
|
+
* The status for the Profile.
|
|
532
|
+
* </p>
|
|
533
|
+
* @public
|
|
534
|
+
*/
|
|
535
|
+
Status?: ProfileStatus;
|
|
536
|
+
/**
|
|
537
|
+
* <p>
|
|
538
|
+
* Status message that includes additiona information about the Profile.
|
|
539
|
+
* </p>
|
|
540
|
+
* @public
|
|
541
|
+
*/
|
|
542
|
+
StatusMessage?: string;
|
|
543
|
+
/**
|
|
544
|
+
* <p>
|
|
545
|
+
* Sharing status for the Profile.
|
|
546
|
+
* </p>
|
|
547
|
+
* @public
|
|
548
|
+
*/
|
|
549
|
+
ShareStatus?: ShareStatus;
|
|
550
|
+
/**
|
|
551
|
+
* <p>
|
|
552
|
+
* The date and time that the Profile was created, in Unix time format and Coordinated Universal Time (UTC).
|
|
553
|
+
* </p>
|
|
554
|
+
* @public
|
|
555
|
+
*/
|
|
556
|
+
CreationTime?: Date;
|
|
557
|
+
/**
|
|
558
|
+
* <p>
|
|
559
|
+
* The date and time that the Profile was modified, in Unix time format and Coordinated Universal Time (UTC).
|
|
560
|
+
* </p>
|
|
561
|
+
* @public
|
|
562
|
+
*/
|
|
563
|
+
ModificationTime?: Date;
|
|
564
|
+
/**
|
|
565
|
+
* <p>
|
|
566
|
+
* The <code>ClientToken</code> value that was assigned when the Profile was created.
|
|
567
|
+
* </p>
|
|
568
|
+
* @public
|
|
569
|
+
*/
|
|
570
|
+
ClientToken?: string;
|
|
571
|
+
}
|
|
572
|
+
/**
|
|
573
|
+
* @public
|
|
574
|
+
*/
|
|
575
|
+
export interface CreateProfileResponse {
|
|
576
|
+
/**
|
|
577
|
+
* <p>
|
|
578
|
+
* The Profile that you just created.
|
|
579
|
+
* </p>
|
|
580
|
+
* @public
|
|
581
|
+
*/
|
|
582
|
+
Profile?: Profile;
|
|
583
|
+
}
|
|
584
|
+
/**
|
|
585
|
+
* @public
|
|
586
|
+
*/
|
|
587
|
+
export interface DeleteProfileRequest {
|
|
588
|
+
/**
|
|
589
|
+
* <p>
|
|
590
|
+
* The ID of the Profile that you want to delete.
|
|
591
|
+
* </p>
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
ProfileId: string | undefined;
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
export interface DeleteProfileResponse {
|
|
600
|
+
/**
|
|
601
|
+
* <p>
|
|
602
|
+
* Information about the <code>DeleteProfile</code> request, including the status of the request.
|
|
603
|
+
* </p>
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
Profile?: Profile;
|
|
607
|
+
}
|
|
608
|
+
/**
|
|
609
|
+
* @public
|
|
610
|
+
*/
|
|
611
|
+
export interface DisassociateProfileRequest {
|
|
612
|
+
/**
|
|
613
|
+
* <p>
|
|
614
|
+
* ID of the Profile.
|
|
615
|
+
* </p>
|
|
616
|
+
* @public
|
|
617
|
+
*/
|
|
618
|
+
ProfileId: string | undefined;
|
|
619
|
+
/**
|
|
620
|
+
* <p>
|
|
621
|
+
* The ID of the VPC.
|
|
622
|
+
* </p>
|
|
623
|
+
* @public
|
|
624
|
+
*/
|
|
625
|
+
ResourceId: string | undefined;
|
|
626
|
+
}
|
|
627
|
+
/**
|
|
628
|
+
* @public
|
|
629
|
+
*/
|
|
630
|
+
export interface DisassociateProfileResponse {
|
|
631
|
+
/**
|
|
632
|
+
* <p>
|
|
633
|
+
* Information about the <code>DisassociateProfile</code> request.
|
|
634
|
+
* </p>
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
637
|
+
ProfileAssociation?: ProfileAssociation;
|
|
638
|
+
}
|
|
639
|
+
/**
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
642
|
+
export interface DisassociateResourceFromProfileRequest {
|
|
643
|
+
/**
|
|
644
|
+
* <p>
|
|
645
|
+
* The ID of the Profile.
|
|
646
|
+
* </p>
|
|
647
|
+
* @public
|
|
648
|
+
*/
|
|
649
|
+
ProfileId: string | undefined;
|
|
650
|
+
/**
|
|
651
|
+
* <p>The Amazon Resource Name (ARN) of the resource.
|
|
652
|
+
* </p>
|
|
653
|
+
* @public
|
|
654
|
+
*/
|
|
655
|
+
ResourceArn: string | undefined;
|
|
656
|
+
}
|
|
657
|
+
/**
|
|
658
|
+
* @public
|
|
659
|
+
*/
|
|
660
|
+
export interface DisassociateResourceFromProfileResponse {
|
|
661
|
+
/**
|
|
662
|
+
* <p>
|
|
663
|
+
* Information about the <code>DisassociateResourceFromProfile</code> request, including the status of the request.
|
|
664
|
+
* </p>
|
|
665
|
+
* @public
|
|
666
|
+
*/
|
|
667
|
+
ProfileResourceAssociation?: ProfileResourceAssociation;
|
|
668
|
+
}
|
|
669
|
+
/**
|
|
670
|
+
* @public
|
|
671
|
+
*/
|
|
672
|
+
export interface GetProfileRequest {
|
|
673
|
+
/**
|
|
674
|
+
* <p>
|
|
675
|
+
* ID of the Profile.
|
|
676
|
+
* </p>
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
679
|
+
ProfileId: string | undefined;
|
|
680
|
+
}
|
|
681
|
+
/**
|
|
682
|
+
* @public
|
|
683
|
+
*/
|
|
684
|
+
export interface GetProfileResponse {
|
|
685
|
+
/**
|
|
686
|
+
* <p>
|
|
687
|
+
* Information about the Profile, including the status of the Profile.
|
|
688
|
+
* </p>
|
|
689
|
+
* @public
|
|
690
|
+
*/
|
|
691
|
+
Profile?: Profile;
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
* @public
|
|
695
|
+
*/
|
|
696
|
+
export interface GetProfileAssociationRequest {
|
|
697
|
+
/**
|
|
698
|
+
* <p>
|
|
699
|
+
* The identifier of the association you want to get information about.
|
|
700
|
+
* </p>
|
|
701
|
+
* @public
|
|
702
|
+
*/
|
|
703
|
+
ProfileAssociationId: string | undefined;
|
|
704
|
+
}
|
|
705
|
+
/**
|
|
706
|
+
* @public
|
|
707
|
+
*/
|
|
708
|
+
export interface GetProfileAssociationResponse {
|
|
709
|
+
/**
|
|
710
|
+
* <p>
|
|
711
|
+
* Information about the Profile association that you specified in a <code>GetProfileAssociation</code> request.
|
|
712
|
+
* </p>
|
|
713
|
+
* @public
|
|
714
|
+
*/
|
|
715
|
+
ProfileAssociation?: ProfileAssociation;
|
|
716
|
+
}
|
|
717
|
+
/**
|
|
718
|
+
* @public
|
|
719
|
+
*/
|
|
720
|
+
export interface GetProfileResourceAssociationRequest {
|
|
721
|
+
/**
|
|
722
|
+
* <p>
|
|
723
|
+
*
|
|
724
|
+
* The ID of the profile resource association that you want to get information about.
|
|
725
|
+
* </p>
|
|
726
|
+
* @public
|
|
727
|
+
*/
|
|
728
|
+
ProfileResourceAssociationId: string | undefined;
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* @public
|
|
732
|
+
*/
|
|
733
|
+
export interface GetProfileResourceAssociationResponse {
|
|
734
|
+
/**
|
|
735
|
+
* <p>
|
|
736
|
+
* Information about the Profile resource association that you specified in a <code>GetProfileResourceAssociation</code> request.
|
|
737
|
+
* </p>
|
|
738
|
+
* @public
|
|
739
|
+
*/
|
|
740
|
+
ProfileResourceAssociation?: ProfileResourceAssociation;
|
|
741
|
+
}
|
|
742
|
+
/**
|
|
743
|
+
* <p>
|
|
744
|
+
* The <code>NextToken</code> you provided isn;t valid.
|
|
745
|
+
* </p>
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
748
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
749
|
+
readonly name: "InvalidNextTokenException";
|
|
750
|
+
readonly $fault: "client";
|
|
751
|
+
Message?: string;
|
|
752
|
+
/**
|
|
753
|
+
* @internal
|
|
754
|
+
*/
|
|
755
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
756
|
+
}
|
|
757
|
+
/**
|
|
758
|
+
* @public
|
|
759
|
+
*/
|
|
760
|
+
export interface ListProfileAssociationsRequest {
|
|
761
|
+
/**
|
|
762
|
+
* <p>
|
|
763
|
+
* ID of the VPC.
|
|
764
|
+
* </p>
|
|
765
|
+
* @public
|
|
766
|
+
*/
|
|
767
|
+
ResourceId?: string;
|
|
768
|
+
/**
|
|
769
|
+
* <p>
|
|
770
|
+
* ID of the Profile.
|
|
771
|
+
* </p>
|
|
772
|
+
* @public
|
|
773
|
+
*/
|
|
774
|
+
ProfileId?: string;
|
|
775
|
+
/**
|
|
776
|
+
* <p>
|
|
777
|
+
* The maximum number of objects that you want to return for this request. If more objects are available, in the response,
|
|
778
|
+
* a <code>NextToken</code> value, which you can use in a subsequent call to get the next batch of objects, is provided.</p>
|
|
779
|
+
* <p>
|
|
780
|
+
* If you don't specify a value for <code>MaxResults</code>, up to 100 objects are returned.
|
|
781
|
+
* </p>
|
|
782
|
+
* @public
|
|
783
|
+
*/
|
|
784
|
+
MaxResults?: number;
|
|
785
|
+
/**
|
|
786
|
+
* <p>
|
|
787
|
+
* For the first call to this list request, omit this value.
|
|
788
|
+
* </p>
|
|
789
|
+
* <p>When you request a list of objects, at most the number of objects specified by <code>MaxResults</code> is returned.
|
|
790
|
+
* If more objects are available for retrieval, a <code>NextToken</code> value is returned in the response.
|
|
791
|
+
* To retrieve the next batch of objects, use the token that was returned for the prior request in your next request.</p>
|
|
792
|
+
* @public
|
|
793
|
+
*/
|
|
794
|
+
NextToken?: string;
|
|
795
|
+
}
|
|
796
|
+
/**
|
|
797
|
+
* @public
|
|
798
|
+
*/
|
|
799
|
+
export interface ListProfileAssociationsResponse {
|
|
800
|
+
/**
|
|
801
|
+
* <p>
|
|
802
|
+
* A complex type that containts settings information about the profile's VPC associations.
|
|
803
|
+
* </p>
|
|
804
|
+
* @public
|
|
805
|
+
*/
|
|
806
|
+
ProfileAssociations?: ProfileAssociation[];
|
|
807
|
+
/**
|
|
808
|
+
* <p>
|
|
809
|
+
* If more than <code>MaxResults</code> profile associations match the specified criteria, you can submit another
|
|
810
|
+
* <code>ListProfileAssociations</code> request to get the next group of results. In the next request, specify the value of <code>NextToken</code> from the previous response.
|
|
811
|
+
* </p>
|
|
812
|
+
* @public
|
|
813
|
+
*/
|
|
814
|
+
NextToken?: string;
|
|
815
|
+
}
|
|
816
|
+
/**
|
|
817
|
+
* @public
|
|
818
|
+
*/
|
|
819
|
+
export interface ListProfileResourceAssociationsRequest {
|
|
820
|
+
/**
|
|
821
|
+
* <p>
|
|
822
|
+
* The ID of the Profile.
|
|
823
|
+
* </p>
|
|
824
|
+
* @public
|
|
825
|
+
*/
|
|
826
|
+
ProfileId: string | undefined;
|
|
827
|
+
/**
|
|
828
|
+
* <p>
|
|
829
|
+
* ID of a resource if you want information on only one type.
|
|
830
|
+
* </p>
|
|
831
|
+
* @public
|
|
832
|
+
*/
|
|
833
|
+
ResourceType?: string;
|
|
834
|
+
/**
|
|
835
|
+
* <p>
|
|
836
|
+
* The maximum number of objects that you want to return for this request. If more objects are available, in the response,
|
|
837
|
+
* a <code>NextToken</code> value, which you can use in a subsequent call to get the next batch of objects, is provided.</p>
|
|
838
|
+
* <p>
|
|
839
|
+
* If you don't specify a value for <code>MaxResults</code>, up to 100 objects are returned.
|
|
840
|
+
* </p>
|
|
841
|
+
* @public
|
|
842
|
+
*/
|
|
843
|
+
MaxResults?: number;
|
|
844
|
+
/**
|
|
845
|
+
* <p>
|
|
846
|
+
* For the first call to this list request, omit this value.
|
|
847
|
+
* </p>
|
|
848
|
+
* <p>When you request a list of objects, at most the number of objects specified by <code>MaxResults</code> is returned.
|
|
849
|
+
* If more objects are available for retrieval, a <code>NextToken</code> value is returned in the response.
|
|
850
|
+
* To retrieve the next batch of objects, use the token that was returned for the prior request in your next request.</p>
|
|
851
|
+
* @public
|
|
852
|
+
*/
|
|
853
|
+
NextToken?: string;
|
|
854
|
+
}
|
|
855
|
+
/**
|
|
856
|
+
* @public
|
|
857
|
+
*/
|
|
858
|
+
export interface ListProfileResourceAssociationsResponse {
|
|
859
|
+
/**
|
|
860
|
+
* <p>
|
|
861
|
+
* Information about the profile resource association that you specified in a <code>GetProfileResourceAssociation</code> request.
|
|
862
|
+
* </p>
|
|
863
|
+
* @public
|
|
864
|
+
*/
|
|
865
|
+
ProfileResourceAssociations?: ProfileResourceAssociation[];
|
|
866
|
+
/**
|
|
867
|
+
* <p>
|
|
868
|
+
* If more than <code>MaxResults</code> resource associations match the specified criteria, you can submit another
|
|
869
|
+
* <code>ListProfileResourceAssociations</code> request to get the next group of results. In the next request, specify the value of <code>NextToken</code> from the previous response.
|
|
870
|
+
* </p>
|
|
871
|
+
* @public
|
|
872
|
+
*/
|
|
873
|
+
NextToken?: string;
|
|
874
|
+
}
|
|
875
|
+
/**
|
|
876
|
+
* @public
|
|
877
|
+
*/
|
|
878
|
+
export interface ListProfilesRequest {
|
|
879
|
+
/**
|
|
880
|
+
* <p>
|
|
881
|
+
* The maximum number of objects that you want to return for this request. If more objects are available, in the response,
|
|
882
|
+
* a <code>NextToken</code> value, which you can use in a subsequent call to get the next batch of objects, is provided.</p>
|
|
883
|
+
* <p>
|
|
884
|
+
* If you don't specify a value for <code>MaxResults</code>, up to 100 objects are returned.
|
|
885
|
+
* </p>
|
|
886
|
+
* @public
|
|
887
|
+
*/
|
|
888
|
+
MaxResults?: number;
|
|
889
|
+
/**
|
|
890
|
+
* <p>
|
|
891
|
+
* For the first call to this list request, omit this value.
|
|
892
|
+
* </p>
|
|
893
|
+
* <p>When you request a list of objects, at most the number of objects specified by <code>MaxResults</code> is returned.
|
|
894
|
+
* If more objects are available for retrieval, a <code>NextToken</code> value is returned in the response.
|
|
895
|
+
* To retrieve the next batch of objects, use the token that was returned for the prior request in your next request.</p>
|
|
896
|
+
* @public
|
|
897
|
+
*/
|
|
898
|
+
NextToken?: string;
|
|
899
|
+
}
|
|
900
|
+
/**
|
|
901
|
+
* <p>
|
|
902
|
+
* Summary information about a Route 53 Profile.
|
|
903
|
+
* </p>
|
|
904
|
+
* @public
|
|
905
|
+
*/
|
|
906
|
+
export interface ProfileSummary {
|
|
907
|
+
/**
|
|
908
|
+
* <p>
|
|
909
|
+
* ID of the Profile.
|
|
910
|
+
* </p>
|
|
911
|
+
* @public
|
|
912
|
+
*/
|
|
913
|
+
Id?: string;
|
|
914
|
+
/**
|
|
915
|
+
* <p>
|
|
916
|
+
* The Amazon Resource Name (ARN) of the Profile.
|
|
917
|
+
* </p>
|
|
918
|
+
* @public
|
|
919
|
+
*/
|
|
920
|
+
Arn?: string;
|
|
921
|
+
/**
|
|
922
|
+
* <p>
|
|
923
|
+
* Name of the Profile.
|
|
924
|
+
* </p>
|
|
925
|
+
* @public
|
|
926
|
+
*/
|
|
927
|
+
Name?: string;
|
|
928
|
+
/**
|
|
929
|
+
* <p>
|
|
930
|
+
* Share status of the Profile.
|
|
931
|
+
* </p>
|
|
932
|
+
* @public
|
|
933
|
+
*/
|
|
934
|
+
ShareStatus?: ShareStatus;
|
|
935
|
+
}
|
|
936
|
+
/**
|
|
937
|
+
* @public
|
|
938
|
+
*/
|
|
939
|
+
export interface ListProfilesResponse {
|
|
940
|
+
/**
|
|
941
|
+
* <p>
|
|
942
|
+
* Summary information about the Profiles.
|
|
943
|
+
* </p>
|
|
944
|
+
* @public
|
|
945
|
+
*/
|
|
946
|
+
ProfileSummaries?: ProfileSummary[];
|
|
947
|
+
/**
|
|
948
|
+
* <p>
|
|
949
|
+
* If more than <code>MaxResults</code> resource associations match the specified criteria, you can submit another
|
|
950
|
+
* <code>ListProfiles</code> request to get the next group of results. In the next request, specify the value of <code>NextToken</code> from the previous response.
|
|
951
|
+
* </p>
|
|
952
|
+
* @public
|
|
953
|
+
*/
|
|
954
|
+
NextToken?: string;
|
|
955
|
+
}
|
|
956
|
+
/**
|
|
957
|
+
* @public
|
|
958
|
+
*/
|
|
959
|
+
export interface ListTagsForResourceRequest {
|
|
960
|
+
/**
|
|
961
|
+
* <p>
|
|
962
|
+
* The Amazon Resource Name (ARN) for the resource that you want to list the tags for.
|
|
963
|
+
* </p>
|
|
964
|
+
* @public
|
|
965
|
+
*/
|
|
966
|
+
ResourceArn: string | undefined;
|
|
967
|
+
}
|
|
968
|
+
/**
|
|
969
|
+
* @public
|
|
970
|
+
*/
|
|
971
|
+
export interface ListTagsForResourceResponse {
|
|
972
|
+
/**
|
|
973
|
+
* <p>
|
|
974
|
+
* The tags that are associated with the resource that you specified in the <code>ListTagsForResource</code> request.
|
|
975
|
+
* </p>
|
|
976
|
+
* @public
|
|
977
|
+
*/
|
|
978
|
+
Tags: Record<string, string> | undefined;
|
|
979
|
+
}
|
|
980
|
+
/**
|
|
981
|
+
* @public
|
|
982
|
+
*/
|
|
983
|
+
export interface TagResourceRequest {
|
|
984
|
+
/**
|
|
985
|
+
* <p>
|
|
986
|
+
* The Amazon Resource Name (ARN) for the resource that you want to add tags to.
|
|
987
|
+
* </p>
|
|
988
|
+
* @public
|
|
989
|
+
*/
|
|
990
|
+
ResourceArn: string | undefined;
|
|
991
|
+
/**
|
|
992
|
+
* <p>
|
|
993
|
+
* The tags that you want to add to the specified resource.
|
|
994
|
+
* </p>
|
|
995
|
+
* @public
|
|
996
|
+
*/
|
|
997
|
+
Tags: Record<string, string> | undefined;
|
|
998
|
+
}
|
|
999
|
+
/**
|
|
1000
|
+
* @public
|
|
1001
|
+
*/
|
|
1002
|
+
export interface TagResourceResponse {
|
|
1003
|
+
}
|
|
1004
|
+
/**
|
|
1005
|
+
* @public
|
|
1006
|
+
*/
|
|
1007
|
+
export interface UntagResourceRequest {
|
|
1008
|
+
/**
|
|
1009
|
+
* <p>
|
|
1010
|
+
* The Amazon Resource Name (ARN) for the resource that you want to remove tags from.
|
|
1011
|
+
* </p>
|
|
1012
|
+
* @public
|
|
1013
|
+
*/
|
|
1014
|
+
ResourceArn: string | undefined;
|
|
1015
|
+
/**
|
|
1016
|
+
* <p>
|
|
1017
|
+
* The tags that you want to remove to the specified resource.
|
|
1018
|
+
* </p>
|
|
1019
|
+
* @public
|
|
1020
|
+
*/
|
|
1021
|
+
TagKeys: string[] | undefined;
|
|
1022
|
+
}
|
|
1023
|
+
/**
|
|
1024
|
+
* @public
|
|
1025
|
+
*/
|
|
1026
|
+
export interface UntagResourceResponse {
|
|
1027
|
+
}
|
|
1028
|
+
/**
|
|
1029
|
+
* @public
|
|
1030
|
+
*/
|
|
1031
|
+
export interface UpdateProfileResourceAssociationRequest {
|
|
1032
|
+
/**
|
|
1033
|
+
* <p>
|
|
1034
|
+
* ID of the resource association.
|
|
1035
|
+
* </p>
|
|
1036
|
+
* @public
|
|
1037
|
+
*/
|
|
1038
|
+
ProfileResourceAssociationId: string | undefined;
|
|
1039
|
+
/**
|
|
1040
|
+
* <p>
|
|
1041
|
+
* Name of the resource association.
|
|
1042
|
+
* </p>
|
|
1043
|
+
* @public
|
|
1044
|
+
*/
|
|
1045
|
+
Name?: string;
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>
|
|
1048
|
+
* If you are adding a DNS Firewall rule group, include also a priority in this format:</p>
|
|
1049
|
+
* <p>
|
|
1050
|
+
* <code>Key=FirewallRuleGroupPriority,Value=100</code>.
|
|
1051
|
+
* </p>
|
|
1052
|
+
* @public
|
|
1053
|
+
*/
|
|
1054
|
+
ResourceProperties?: string;
|
|
1055
|
+
}
|
|
1056
|
+
/**
|
|
1057
|
+
* @public
|
|
1058
|
+
*/
|
|
1059
|
+
export interface UpdateProfileResourceAssociationResponse {
|
|
1060
|
+
/**
|
|
1061
|
+
* <p>
|
|
1062
|
+
* Information about the <code>UpdateProfileResourceAssociation</code> request, including a status message.
|
|
1063
|
+
* </p>
|
|
1064
|
+
* @public
|
|
1065
|
+
*/
|
|
1066
|
+
ProfileResourceAssociation?: ProfileResourceAssociation;
|
|
1067
|
+
}
|