@aws-sdk/client-accessanalyzer 3.296.0 → 3.297.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-types/AccessAnalyzer.d.ts +29 -0
- package/dist-types/AccessAnalyzerClient.d.ts +24 -4
- package/dist-types/commands/ApplyArchiveRuleCommand.d.ts +16 -0
- package/dist-types/commands/CancelPolicyGenerationCommand.d.ts +16 -0
- package/dist-types/commands/CreateAccessPreviewCommand.d.ts +16 -0
- package/dist-types/commands/CreateAnalyzerCommand.d.ts +16 -0
- package/dist-types/commands/CreateArchiveRuleCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAnalyzerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteArchiveRuleCommand.d.ts +16 -0
- package/dist-types/commands/GetAccessPreviewCommand.d.ts +16 -0
- package/dist-types/commands/GetAnalyzedResourceCommand.d.ts +16 -0
- package/dist-types/commands/GetAnalyzerCommand.d.ts +16 -0
- package/dist-types/commands/GetArchiveRuleCommand.d.ts +16 -0
- package/dist-types/commands/GetFindingCommand.d.ts +16 -0
- package/dist-types/commands/GetGeneratedPolicyCommand.d.ts +16 -0
- package/dist-types/commands/ListAccessPreviewFindingsCommand.d.ts +16 -0
- package/dist-types/commands/ListAccessPreviewsCommand.d.ts +16 -0
- package/dist-types/commands/ListAnalyzedResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListAnalyzersCommand.d.ts +16 -0
- package/dist-types/commands/ListArchiveRulesCommand.d.ts +16 -0
- package/dist-types/commands/ListFindingsCommand.d.ts +16 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +16 -0
- package/dist-types/commands/StartResourceScanCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateArchiveRuleCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFindingsCommand.d.ts +16 -0
- package/dist-types/commands/ValidatePolicyCommand.d.ts +16 -0
- package/dist-types/models/AccessAnalyzerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +228 -1
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccessPreviewFindingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAccessPreviewsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAnalyzedResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAnalyzersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListArchiveRulesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFindingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ValidatePolicyPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -29,6 +29,7 @@ import { UpdateArchiveRuleCommandInput, UpdateArchiveRuleCommandOutput } from ".
|
|
|
29
29
|
import { UpdateFindingsCommandInput, UpdateFindingsCommandOutput } from "./commands/UpdateFindingsCommand";
|
|
30
30
|
import { ValidatePolicyCommandInput, ValidatePolicyCommandOutput } from "./commands/ValidatePolicyCommand";
|
|
31
31
|
/**
|
|
32
|
+
* @public
|
|
32
33
|
* <p>Identity and Access Management Access Analyzer helps identify potential resource-access risks by enabling you to
|
|
33
34
|
* identify any policies that grant access to an external principal. It does this by using
|
|
34
35
|
* logic-based reasoning to analyze resource-based policies in your Amazon Web Services environment. An
|
|
@@ -41,6 +42,7 @@ import { ValidatePolicyCommandInput, ValidatePolicyCommandOutput } from "./comma
|
|
|
41
42
|
*/
|
|
42
43
|
export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
43
44
|
/**
|
|
45
|
+
* @public
|
|
44
46
|
* <p>Retroactively applies the archive rule to existing findings that meet the archive rule
|
|
45
47
|
* criteria.</p>
|
|
46
48
|
*/
|
|
@@ -48,12 +50,14 @@ export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
|
48
50
|
applyArchiveRule(args: ApplyArchiveRuleCommandInput, cb: (err: any, data?: ApplyArchiveRuleCommandOutput) => void): void;
|
|
49
51
|
applyArchiveRule(args: ApplyArchiveRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ApplyArchiveRuleCommandOutput) => void): void;
|
|
50
52
|
/**
|
|
53
|
+
* @public
|
|
51
54
|
* <p>Cancels the requested policy generation.</p>
|
|
52
55
|
*/
|
|
53
56
|
cancelPolicyGeneration(args: CancelPolicyGenerationCommandInput, options?: __HttpHandlerOptions): Promise<CancelPolicyGenerationCommandOutput>;
|
|
54
57
|
cancelPolicyGeneration(args: CancelPolicyGenerationCommandInput, cb: (err: any, data?: CancelPolicyGenerationCommandOutput) => void): void;
|
|
55
58
|
cancelPolicyGeneration(args: CancelPolicyGenerationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelPolicyGenerationCommandOutput) => void): void;
|
|
56
59
|
/**
|
|
60
|
+
* @public
|
|
57
61
|
* <p>Creates an access preview that allows you to preview IAM Access Analyzer findings for your
|
|
58
62
|
* resource before deploying resource permissions.</p>
|
|
59
63
|
*/
|
|
@@ -61,12 +65,14 @@ export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
|
61
65
|
createAccessPreview(args: CreateAccessPreviewCommandInput, cb: (err: any, data?: CreateAccessPreviewCommandOutput) => void): void;
|
|
62
66
|
createAccessPreview(args: CreateAccessPreviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAccessPreviewCommandOutput) => void): void;
|
|
63
67
|
/**
|
|
68
|
+
* @public
|
|
64
69
|
* <p>Creates an analyzer for your account.</p>
|
|
65
70
|
*/
|
|
66
71
|
createAnalyzer(args: CreateAnalyzerCommandInput, options?: __HttpHandlerOptions): Promise<CreateAnalyzerCommandOutput>;
|
|
67
72
|
createAnalyzer(args: CreateAnalyzerCommandInput, cb: (err: any, data?: CreateAnalyzerCommandOutput) => void): void;
|
|
68
73
|
createAnalyzer(args: CreateAnalyzerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAnalyzerCommandOutput) => void): void;
|
|
69
74
|
/**
|
|
75
|
+
* @public
|
|
70
76
|
* <p>Creates an archive rule for the specified analyzer. Archive rules automatically archive
|
|
71
77
|
* new findings that meet the criteria you define when you create the rule.</p>
|
|
72
78
|
* <p>To learn about filter keys that you can use to create an archive rule, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html">IAM Access Analyzer filter keys</a> in the <b>IAM User Guide</b>.</p>
|
|
@@ -75,6 +81,7 @@ export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
|
75
81
|
createArchiveRule(args: CreateArchiveRuleCommandInput, cb: (err: any, data?: CreateArchiveRuleCommandOutput) => void): void;
|
|
76
82
|
createArchiveRule(args: CreateArchiveRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateArchiveRuleCommandOutput) => void): void;
|
|
77
83
|
/**
|
|
84
|
+
* @public
|
|
78
85
|
* <p>Deletes the specified analyzer. When you delete an analyzer, IAM Access Analyzer is disabled
|
|
79
86
|
* for the account or organization in the current or specific Region. All findings that were
|
|
80
87
|
* generated by the analyzer are deleted. You cannot undo this action.</p>
|
|
@@ -83,30 +90,35 @@ export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
|
83
90
|
deleteAnalyzer(args: DeleteAnalyzerCommandInput, cb: (err: any, data?: DeleteAnalyzerCommandOutput) => void): void;
|
|
84
91
|
deleteAnalyzer(args: DeleteAnalyzerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAnalyzerCommandOutput) => void): void;
|
|
85
92
|
/**
|
|
93
|
+
* @public
|
|
86
94
|
* <p>Deletes the specified archive rule.</p>
|
|
87
95
|
*/
|
|
88
96
|
deleteArchiveRule(args: DeleteArchiveRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteArchiveRuleCommandOutput>;
|
|
89
97
|
deleteArchiveRule(args: DeleteArchiveRuleCommandInput, cb: (err: any, data?: DeleteArchiveRuleCommandOutput) => void): void;
|
|
90
98
|
deleteArchiveRule(args: DeleteArchiveRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteArchiveRuleCommandOutput) => void): void;
|
|
91
99
|
/**
|
|
100
|
+
* @public
|
|
92
101
|
* <p>Retrieves information about an access preview for the specified analyzer.</p>
|
|
93
102
|
*/
|
|
94
103
|
getAccessPreview(args: GetAccessPreviewCommandInput, options?: __HttpHandlerOptions): Promise<GetAccessPreviewCommandOutput>;
|
|
95
104
|
getAccessPreview(args: GetAccessPreviewCommandInput, cb: (err: any, data?: GetAccessPreviewCommandOutput) => void): void;
|
|
96
105
|
getAccessPreview(args: GetAccessPreviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccessPreviewCommandOutput) => void): void;
|
|
97
106
|
/**
|
|
107
|
+
* @public
|
|
98
108
|
* <p>Retrieves information about a resource that was analyzed.</p>
|
|
99
109
|
*/
|
|
100
110
|
getAnalyzedResource(args: GetAnalyzedResourceCommandInput, options?: __HttpHandlerOptions): Promise<GetAnalyzedResourceCommandOutput>;
|
|
101
111
|
getAnalyzedResource(args: GetAnalyzedResourceCommandInput, cb: (err: any, data?: GetAnalyzedResourceCommandOutput) => void): void;
|
|
102
112
|
getAnalyzedResource(args: GetAnalyzedResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnalyzedResourceCommandOutput) => void): void;
|
|
103
113
|
/**
|
|
114
|
+
* @public
|
|
104
115
|
* <p>Retrieves information about the specified analyzer.</p>
|
|
105
116
|
*/
|
|
106
117
|
getAnalyzer(args: GetAnalyzerCommandInput, options?: __HttpHandlerOptions): Promise<GetAnalyzerCommandOutput>;
|
|
107
118
|
getAnalyzer(args: GetAnalyzerCommandInput, cb: (err: any, data?: GetAnalyzerCommandOutput) => void): void;
|
|
108
119
|
getAnalyzer(args: GetAnalyzerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnalyzerCommandOutput) => void): void;
|
|
109
120
|
/**
|
|
121
|
+
* @public
|
|
110
122
|
* <p>Retrieves information about an archive rule.</p>
|
|
111
123
|
* <p>To learn about filter keys that you can use to create an archive rule, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html">IAM Access Analyzer filter keys</a> in the <b>IAM User Guide</b>.</p>
|
|
112
124
|
*/
|
|
@@ -114,12 +126,14 @@ export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
|
114
126
|
getArchiveRule(args: GetArchiveRuleCommandInput, cb: (err: any, data?: GetArchiveRuleCommandOutput) => void): void;
|
|
115
127
|
getArchiveRule(args: GetArchiveRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetArchiveRuleCommandOutput) => void): void;
|
|
116
128
|
/**
|
|
129
|
+
* @public
|
|
117
130
|
* <p>Retrieves information about the specified finding.</p>
|
|
118
131
|
*/
|
|
119
132
|
getFinding(args: GetFindingCommandInput, options?: __HttpHandlerOptions): Promise<GetFindingCommandOutput>;
|
|
120
133
|
getFinding(args: GetFindingCommandInput, cb: (err: any, data?: GetFindingCommandOutput) => void): void;
|
|
121
134
|
getFinding(args: GetFindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFindingCommandOutput) => void): void;
|
|
122
135
|
/**
|
|
136
|
+
* @public
|
|
123
137
|
* <p>Retrieves the policy that was generated using <code>StartPolicyGeneration</code>.
|
|
124
138
|
* </p>
|
|
125
139
|
*/
|
|
@@ -127,6 +141,7 @@ export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
|
127
141
|
getGeneratedPolicy(args: GetGeneratedPolicyCommandInput, cb: (err: any, data?: GetGeneratedPolicyCommandOutput) => void): void;
|
|
128
142
|
getGeneratedPolicy(args: GetGeneratedPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGeneratedPolicyCommandOutput) => void): void;
|
|
129
143
|
/**
|
|
144
|
+
* @public
|
|
130
145
|
* <p>Retrieves a list of access preview findings generated by the specified access
|
|
131
146
|
* preview.</p>
|
|
132
147
|
*/
|
|
@@ -134,12 +149,14 @@ export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
|
134
149
|
listAccessPreviewFindings(args: ListAccessPreviewFindingsCommandInput, cb: (err: any, data?: ListAccessPreviewFindingsCommandOutput) => void): void;
|
|
135
150
|
listAccessPreviewFindings(args: ListAccessPreviewFindingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccessPreviewFindingsCommandOutput) => void): void;
|
|
136
151
|
/**
|
|
152
|
+
* @public
|
|
137
153
|
* <p>Retrieves a list of access previews for the specified analyzer.</p>
|
|
138
154
|
*/
|
|
139
155
|
listAccessPreviews(args: ListAccessPreviewsCommandInput, options?: __HttpHandlerOptions): Promise<ListAccessPreviewsCommandOutput>;
|
|
140
156
|
listAccessPreviews(args: ListAccessPreviewsCommandInput, cb: (err: any, data?: ListAccessPreviewsCommandOutput) => void): void;
|
|
141
157
|
listAccessPreviews(args: ListAccessPreviewsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccessPreviewsCommandOutput) => void): void;
|
|
142
158
|
/**
|
|
159
|
+
* @public
|
|
143
160
|
* <p>Retrieves a list of resources of the specified type that have been analyzed by the
|
|
144
161
|
* specified analyzer..</p>
|
|
145
162
|
*/
|
|
@@ -147,18 +164,21 @@ export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
|
147
164
|
listAnalyzedResources(args: ListAnalyzedResourcesCommandInput, cb: (err: any, data?: ListAnalyzedResourcesCommandOutput) => void): void;
|
|
148
165
|
listAnalyzedResources(args: ListAnalyzedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAnalyzedResourcesCommandOutput) => void): void;
|
|
149
166
|
/**
|
|
167
|
+
* @public
|
|
150
168
|
* <p>Retrieves a list of analyzers.</p>
|
|
151
169
|
*/
|
|
152
170
|
listAnalyzers(args: ListAnalyzersCommandInput, options?: __HttpHandlerOptions): Promise<ListAnalyzersCommandOutput>;
|
|
153
171
|
listAnalyzers(args: ListAnalyzersCommandInput, cb: (err: any, data?: ListAnalyzersCommandOutput) => void): void;
|
|
154
172
|
listAnalyzers(args: ListAnalyzersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAnalyzersCommandOutput) => void): void;
|
|
155
173
|
/**
|
|
174
|
+
* @public
|
|
156
175
|
* <p>Retrieves a list of archive rules created for the specified analyzer.</p>
|
|
157
176
|
*/
|
|
158
177
|
listArchiveRules(args: ListArchiveRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListArchiveRulesCommandOutput>;
|
|
159
178
|
listArchiveRules(args: ListArchiveRulesCommandInput, cb: (err: any, data?: ListArchiveRulesCommandOutput) => void): void;
|
|
160
179
|
listArchiveRules(args: ListArchiveRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListArchiveRulesCommandOutput) => void): void;
|
|
161
180
|
/**
|
|
181
|
+
* @public
|
|
162
182
|
* <p>Retrieves a list of findings generated by the specified analyzer.</p>
|
|
163
183
|
* <p>To learn about filter keys that you can use to retrieve a list of findings, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html">IAM Access Analyzer filter keys</a> in the <b>IAM User Guide</b>.</p>
|
|
164
184
|
*/
|
|
@@ -166,54 +186,63 @@ export declare class AccessAnalyzer extends AccessAnalyzerClient {
|
|
|
166
186
|
listFindings(args: ListFindingsCommandInput, cb: (err: any, data?: ListFindingsCommandOutput) => void): void;
|
|
167
187
|
listFindings(args: ListFindingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFindingsCommandOutput) => void): void;
|
|
168
188
|
/**
|
|
189
|
+
* @public
|
|
169
190
|
* <p>Lists all of the policy generations requested in the last seven days.</p>
|
|
170
191
|
*/
|
|
171
192
|
listPolicyGenerations(args: ListPolicyGenerationsCommandInput, options?: __HttpHandlerOptions): Promise<ListPolicyGenerationsCommandOutput>;
|
|
172
193
|
listPolicyGenerations(args: ListPolicyGenerationsCommandInput, cb: (err: any, data?: ListPolicyGenerationsCommandOutput) => void): void;
|
|
173
194
|
listPolicyGenerations(args: ListPolicyGenerationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPolicyGenerationsCommandOutput) => void): void;
|
|
174
195
|
/**
|
|
196
|
+
* @public
|
|
175
197
|
* <p>Retrieves a list of tags applied to the specified resource.</p>
|
|
176
198
|
*/
|
|
177
199
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
178
200
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
179
201
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
180
202
|
/**
|
|
203
|
+
* @public
|
|
181
204
|
* <p>Starts the policy generation request.</p>
|
|
182
205
|
*/
|
|
183
206
|
startPolicyGeneration(args: StartPolicyGenerationCommandInput, options?: __HttpHandlerOptions): Promise<StartPolicyGenerationCommandOutput>;
|
|
184
207
|
startPolicyGeneration(args: StartPolicyGenerationCommandInput, cb: (err: any, data?: StartPolicyGenerationCommandOutput) => void): void;
|
|
185
208
|
startPolicyGeneration(args: StartPolicyGenerationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartPolicyGenerationCommandOutput) => void): void;
|
|
186
209
|
/**
|
|
210
|
+
* @public
|
|
187
211
|
* <p>Immediately starts a scan of the policies applied to the specified resource.</p>
|
|
188
212
|
*/
|
|
189
213
|
startResourceScan(args: StartResourceScanCommandInput, options?: __HttpHandlerOptions): Promise<StartResourceScanCommandOutput>;
|
|
190
214
|
startResourceScan(args: StartResourceScanCommandInput, cb: (err: any, data?: StartResourceScanCommandOutput) => void): void;
|
|
191
215
|
startResourceScan(args: StartResourceScanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartResourceScanCommandOutput) => void): void;
|
|
192
216
|
/**
|
|
217
|
+
* @public
|
|
193
218
|
* <p>Adds a tag to the specified resource.</p>
|
|
194
219
|
*/
|
|
195
220
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
196
221
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
197
222
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
198
223
|
/**
|
|
224
|
+
* @public
|
|
199
225
|
* <p>Removes a tag from the specified resource.</p>
|
|
200
226
|
*/
|
|
201
227
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
202
228
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
203
229
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
204
230
|
/**
|
|
231
|
+
* @public
|
|
205
232
|
* <p>Updates the criteria and values for the specified archive rule.</p>
|
|
206
233
|
*/
|
|
207
234
|
updateArchiveRule(args: UpdateArchiveRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateArchiveRuleCommandOutput>;
|
|
208
235
|
updateArchiveRule(args: UpdateArchiveRuleCommandInput, cb: (err: any, data?: UpdateArchiveRuleCommandOutput) => void): void;
|
|
209
236
|
updateArchiveRule(args: UpdateArchiveRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateArchiveRuleCommandOutput) => void): void;
|
|
210
237
|
/**
|
|
238
|
+
* @public
|
|
211
239
|
* <p>Updates the status for the specified findings.</p>
|
|
212
240
|
*/
|
|
213
241
|
updateFindings(args: UpdateFindingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFindingsCommandOutput>;
|
|
214
242
|
updateFindings(args: UpdateFindingsCommandInput, cb: (err: any, data?: UpdateFindingsCommandOutput) => void): void;
|
|
215
243
|
updateFindings(args: UpdateFindingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFindingsCommandOutput) => void): void;
|
|
216
244
|
/**
|
|
245
|
+
* @public
|
|
217
246
|
* <p>Requests the validation of a policy and returns a list of findings. The findings help
|
|
218
247
|
* you identify issues and provide actionable recommendations to resolve the issue and enable
|
|
219
248
|
* you to author functional policies that meet security best practices. </p>
|
|
@@ -36,15 +36,24 @@ import { UpdateArchiveRuleCommandInput, UpdateArchiveRuleCommandOutput } from ".
|
|
|
36
36
|
import { UpdateFindingsCommandInput, UpdateFindingsCommandOutput } from "./commands/UpdateFindingsCommand";
|
|
37
37
|
import { ValidatePolicyCommandInput, ValidatePolicyCommandOutput } from "./commands/ValidatePolicyCommand";
|
|
38
38
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
39
42
|
export type ServiceInputTypes = ApplyArchiveRuleCommandInput | CancelPolicyGenerationCommandInput | CreateAccessPreviewCommandInput | CreateAnalyzerCommandInput | CreateArchiveRuleCommandInput | DeleteAnalyzerCommandInput | DeleteArchiveRuleCommandInput | GetAccessPreviewCommandInput | GetAnalyzedResourceCommandInput | GetAnalyzerCommandInput | GetArchiveRuleCommandInput | GetFindingCommandInput | GetGeneratedPolicyCommandInput | ListAccessPreviewFindingsCommandInput | ListAccessPreviewsCommandInput | ListAnalyzedResourcesCommandInput | ListAnalyzersCommandInput | ListArchiveRulesCommandInput | ListFindingsCommandInput | ListPolicyGenerationsCommandInput | ListTagsForResourceCommandInput | StartPolicyGenerationCommandInput | StartResourceScanCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateArchiveRuleCommandInput | UpdateFindingsCommandInput | ValidatePolicyCommandInput;
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
40
46
|
export type ServiceOutputTypes = ApplyArchiveRuleCommandOutput | CancelPolicyGenerationCommandOutput | CreateAccessPreviewCommandOutput | CreateAnalyzerCommandOutput | CreateArchiveRuleCommandOutput | DeleteAnalyzerCommandOutput | DeleteArchiveRuleCommandOutput | GetAccessPreviewCommandOutput | GetAnalyzedResourceCommandOutput | GetAnalyzerCommandOutput | GetArchiveRuleCommandOutput | GetFindingCommandOutput | GetGeneratedPolicyCommandOutput | ListAccessPreviewFindingsCommandOutput | ListAccessPreviewsCommandOutput | ListAnalyzedResourcesCommandOutput | ListAnalyzersCommandOutput | ListArchiveRulesCommandOutput | ListFindingsCommandOutput | ListPolicyGenerationsCommandOutput | ListTagsForResourceCommandOutput | StartPolicyGenerationCommandOutput | StartResourceScanCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateArchiveRuleCommandOutput | UpdateFindingsCommandOutput | ValidatePolicyCommandOutput;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
41
50
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
42
51
|
/**
|
|
43
52
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
44
53
|
*/
|
|
45
54
|
requestHandler?: __HttpHandler;
|
|
46
55
|
/**
|
|
47
|
-
* A constructor for a class implementing the {@link
|
|
56
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
48
57
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
49
58
|
* @internal
|
|
50
59
|
*/
|
|
@@ -134,23 +143,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
134
143
|
*/
|
|
135
144
|
logger?: __Logger;
|
|
136
145
|
/**
|
|
137
|
-
* The {@link
|
|
146
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
138
147
|
*/
|
|
139
148
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
140
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
141
153
|
type AccessAnalyzerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
142
154
|
/**
|
|
143
|
-
*
|
|
155
|
+
* @public
|
|
156
|
+
*
|
|
157
|
+
* The configuration interface of AccessAnalyzerClient class constructor that set the region, credentials and other options.
|
|
144
158
|
*/
|
|
145
159
|
export interface AccessAnalyzerClientConfig extends AccessAnalyzerClientConfigType {
|
|
146
160
|
}
|
|
161
|
+
/**
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
147
164
|
type AccessAnalyzerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
148
165
|
/**
|
|
149
|
-
*
|
|
166
|
+
* @public
|
|
167
|
+
*
|
|
168
|
+
* The resolved configuration interface of AccessAnalyzerClient class. This is resolved and normalized from the {@link AccessAnalyzerClientConfig | constructor configuration interface}.
|
|
150
169
|
*/
|
|
151
170
|
export interface AccessAnalyzerClientResolvedConfig extends AccessAnalyzerClientResolvedConfigType {
|
|
152
171
|
}
|
|
153
172
|
/**
|
|
173
|
+
* @public
|
|
154
174
|
* <p>Identity and Access Management Access Analyzer helps identify potential resource-access risks by enabling you to
|
|
155
175
|
* identify any policies that grant access to an external principal. It does this by using
|
|
156
176
|
* logic-based reasoning to analyze resource-based policies in your Amazon Web Services environment. An
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
|
|
5
5
|
import { ApplyArchiveRuleRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ApplyArchiveRuleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ApplyArchiveRuleCommandInput extends ApplyArchiveRuleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ApplyArchiveRuleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retroactively applies the archive rule to existing findings that meet the archive rule
|
|
18
23
|
* criteria.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ApplyArchiveRuleCommandInput - {@link ApplyArchiveRuleCommandInput}
|
|
35
|
+
* @returns {@link ApplyArchiveRuleCommandOutput}
|
|
29
36
|
* @see {@link ApplyArchiveRuleCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ApplyArchiveRuleCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
50
57
|
export declare class ApplyArchiveRuleCommand extends $Command<ApplyArchiveRuleCommandInput, ApplyArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
51
58
|
readonly input: ApplyArchiveRuleCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ApplyArchiveRuleCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ApplyArchiveRuleCommandInput, ApplyArchiveRuleCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
|
|
5
5
|
import { CancelPolicyGenerationRequest, CancelPolicyGenerationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelPolicyGenerationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelPolicyGenerationCommandInput extends CancelPolicyGenerationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelPolicyGenerationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelPolicyGenerationCommandOutput extends CancelPolicyGenerationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Cancels the requested policy generation.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CancelPolicyGenerationCommandOutput extends CancelPolicyGenerat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CancelPolicyGenerationCommandInput - {@link CancelPolicyGenerationCommandInput}
|
|
34
|
+
* @returns {@link CancelPolicyGenerationCommandOutput}
|
|
28
35
|
* @see {@link CancelPolicyGenerationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CancelPolicyGenerationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CancelPolicyGenerationCommandOutput extends CancelPolicyGenerat
|
|
|
46
53
|
export declare class CancelPolicyGenerationCommand extends $Command<CancelPolicyGenerationCommandInput, CancelPolicyGenerationCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
47
54
|
readonly input: CancelPolicyGenerationCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CancelPolicyGenerationCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelPolicyGenerationCommandInput, CancelPolicyGenerationCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
|
|
5
5
|
import { CreateAccessPreviewRequest, CreateAccessPreviewResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateAccessPreviewCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateAccessPreviewCommandInput extends CreateAccessPreviewRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateAccessPreviewCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an access preview that allows you to preview IAM Access Analyzer findings for your
|
|
18
23
|
* resource before deploying resource permissions.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateAccessPreviewCommandInput - {@link CreateAccessPreviewCommandInput}
|
|
35
|
+
* @returns {@link CreateAccessPreviewCommandOutput}
|
|
29
36
|
* @see {@link CreateAccessPreviewCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateAccessPreviewCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewRes
|
|
|
56
63
|
export declare class CreateAccessPreviewCommand extends $Command<CreateAccessPreviewCommandInput, CreateAccessPreviewCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
57
64
|
readonly input: CreateAccessPreviewCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: CreateAccessPreviewCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAccessPreviewCommandInput, CreateAccessPreviewCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
|
|
5
5
|
import { CreateAnalyzerRequest, CreateAnalyzerResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateAnalyzerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateAnalyzerCommandInput extends CreateAnalyzerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateAnalyzerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an analyzer for your account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateAnalyzerCommandInput - {@link CreateAnalyzerCommandInput}
|
|
34
|
+
* @returns {@link CreateAnalyzerCommandOutput}
|
|
28
35
|
* @see {@link CreateAnalyzerCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateAnalyzerCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __M
|
|
|
52
59
|
export declare class CreateAnalyzerCommand extends $Command<CreateAnalyzerCommandInput, CreateAnalyzerCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateAnalyzerCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateAnalyzerCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAnalyzerCommandInput, CreateAnalyzerCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
|
|
5
5
|
import { CreateArchiveRuleRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateArchiveRuleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateArchiveRuleCommandInput extends CreateArchiveRuleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateArchiveRuleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an archive rule for the specified analyzer. Archive rules automatically archive
|
|
18
23
|
* new findings that meet the criteria you define when you create the rule.</p>
|
|
19
24
|
* <p>To learn about filter keys that you can use to create an archive rule, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html">IAM Access Analyzer filter keys</a> in the <b>IAM User Guide</b>.</p>
|
|
@@ -27,6 +32,8 @@ export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateArchiveRuleCommandInput - {@link CreateArchiveRuleCommandInput}
|
|
36
|
+
* @returns {@link CreateArchiveRuleCommandOutput}
|
|
30
37
|
* @see {@link CreateArchiveRuleCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateArchiveRuleCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
57
64
|
export declare class CreateArchiveRuleCommand extends $Command<CreateArchiveRuleCommandInput, CreateArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
58
65
|
readonly input: CreateArchiveRuleCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: CreateArchiveRuleCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateArchiveRuleCommandInput, CreateArchiveRuleCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
|
|
5
5
|
import { DeleteAnalyzerRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteAnalyzerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteAnalyzerCommandInput extends DeleteAnalyzerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteAnalyzerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified analyzer. When you delete an analyzer, IAM Access Analyzer is disabled
|
|
18
23
|
* for the account or organization in the current or specific Region. All findings that were
|
|
19
24
|
* generated by the analyzer are deleted. You cannot undo this action.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteAnalyzerCommandInput - {@link DeleteAnalyzerCommandInput}
|
|
36
|
+
* @returns {@link DeleteAnalyzerCommandOutput}
|
|
30
37
|
* @see {@link DeleteAnalyzerCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteAnalyzerCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {
|
|
|
51
58
|
export declare class DeleteAnalyzerCommand extends $Command<DeleteAnalyzerCommandInput, DeleteAnalyzerCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteAnalyzerCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteAnalyzerCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAnalyzerCommandInput, DeleteAnalyzerCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
|
|
5
5
|
import { DeleteArchiveRuleRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteArchiveRuleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteArchiveRuleCommandInput extends DeleteArchiveRuleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteArchiveRuleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified archive rule.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteArchiveRuleCommandInput - {@link DeleteArchiveRuleCommandInput}
|
|
34
|
+
* @returns {@link DeleteArchiveRuleCommandOutput}
|
|
28
35
|
* @see {@link DeleteArchiveRuleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteArchiveRuleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {
|
|
|
49
56
|
export declare class DeleteArchiveRuleCommand extends $Command<DeleteArchiveRuleCommandInput, DeleteArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteArchiveRuleCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteArchiveRuleCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteArchiveRuleCommandInput, DeleteArchiveRuleCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|