@aws-sdk/client-securityhub 3.154.0 → 3.155.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/CHANGELOG.md +11 -0
- package/dist-cjs/commands/InviteMembersCommand.js +2 -1
- package/dist-cjs/commands/ListEnabledProductsForImportCommand.js +3 -3
- package/dist-cjs/commands/ListFindingAggregatorsCommand.js +3 -3
- package/dist-cjs/commands/ListInvitationsCommand.js +3 -3
- package/dist-cjs/commands/ListMembersCommand.js +3 -3
- package/dist-cjs/commands/ListOrganizationAdminAccountsCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/models/models_0.js +53 -53
- package/dist-cjs/models/models_1.js +60 -58
- package/dist-cjs/models/models_2.js +53 -1
- package/dist-cjs/protocols/Aws_restJson1.js +330 -0
- package/dist-es/commands/InviteMembersCommand.js +2 -1
- package/dist-es/commands/ListEnabledProductsForImportCommand.js +1 -1
- package/dist-es/commands/ListFindingAggregatorsCommand.js +1 -1
- package/dist-es/commands/ListInvitationsCommand.js +1 -1
- package/dist-es/commands/ListMembersCommand.js +1 -1
- package/dist-es/commands/ListOrganizationAdminAccountsCommand.js +1 -1
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -1
- package/dist-es/models/models_0.js +12 -12
- package/dist-es/models/models_1.js +18 -13
- package/dist-es/models/models_2.js +13 -0
- package/dist-es/protocols/Aws_restJson1.js +259 -3
- package/dist-types/commands/InviteMembersCommand.d.ts +2 -1
- package/dist-types/commands/ListEnabledProductsForImportCommand.d.ts +1 -1
- package/dist-types/commands/ListFindingAggregatorsCommand.d.ts +1 -1
- package/dist-types/commands/ListInvitationsCommand.d.ts +1 -1
- package/dist-types/commands/ListMembersCommand.d.ts +1 -1
- package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1272 -257
- package/dist-types/models/models_1.d.ts +663 -233
- package/dist-types/models/models_2.d.ts +199 -2
- package/dist-types/ts3.4/commands/InviteMembersCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListEnabledProductsForImportCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListFindingAggregatorsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListOrganizationAdminAccountsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +172 -114
- package/dist-types/ts3.4/models/models_1.d.ts +132 -101
- package/dist-types/ts3.4/models/models_2.d.ts +102 -2
- package/package.json +1 -1
|
@@ -1,5 +1,150 @@
|
|
|
1
|
-
import { AutoEnableStandards } from "./models_0";
|
|
2
|
-
import { AwsSecurityFindingFilters, ControlStatus, NoteUpdate, RecordState } from "./models_1";
|
|
1
|
+
import { AdminAccount, AutoEnableStandards } from "./models_0";
|
|
2
|
+
import { AwsSecurityFindingFilters, ControlStatus, FindingAggregator, Invitation, Member, NoteUpdate, RecordState, Result } from "./models_1";
|
|
3
|
+
export interface InviteMembersResponse {
|
|
4
|
+
/**
|
|
5
|
+
* <p>The list of Amazon Web Services accounts that could not be processed. For each account, the list
|
|
6
|
+
* includes the account ID and the email address.</p>
|
|
7
|
+
*/
|
|
8
|
+
UnprocessedAccounts?: Result[];
|
|
9
|
+
}
|
|
10
|
+
export interface ListEnabledProductsForImportRequest {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The token that is required for pagination. On your first call to the
|
|
13
|
+
* <code>ListEnabledProductsForImport</code> operation, set the value of this parameter to
|
|
14
|
+
* <code>NULL</code>.</p>
|
|
15
|
+
* <p>For subsequent calls to the operation, to continue listing data, set the value of this
|
|
16
|
+
* parameter to the value returned from the previous response.</p>
|
|
17
|
+
*/
|
|
18
|
+
NextToken?: string;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The maximum number of items to return in the response.</p>
|
|
21
|
+
*/
|
|
22
|
+
MaxResults?: number;
|
|
23
|
+
}
|
|
24
|
+
export interface ListEnabledProductsForImportResponse {
|
|
25
|
+
/**
|
|
26
|
+
* <p>The list of ARNs for the resources that represent your subscriptions to products. </p>
|
|
27
|
+
*/
|
|
28
|
+
ProductSubscriptions?: string[];
|
|
29
|
+
/**
|
|
30
|
+
* <p>The pagination token to use to request the next page of results.</p>
|
|
31
|
+
*/
|
|
32
|
+
NextToken?: string;
|
|
33
|
+
}
|
|
34
|
+
export interface ListFindingAggregatorsRequest {
|
|
35
|
+
/**
|
|
36
|
+
* <p>The token returned with the previous set of results. Identifies the next set of results to return.</p>
|
|
37
|
+
*/
|
|
38
|
+
NextToken?: string;
|
|
39
|
+
/**
|
|
40
|
+
* <p>The maximum number of results to return. This operation currently only returns a single result.</p>
|
|
41
|
+
*/
|
|
42
|
+
MaxResults?: number;
|
|
43
|
+
}
|
|
44
|
+
export interface ListFindingAggregatorsResponse {
|
|
45
|
+
/**
|
|
46
|
+
* <p>The list of finding aggregators. This operation currently only returns a single result.</p>
|
|
47
|
+
*/
|
|
48
|
+
FindingAggregators?: FindingAggregator[];
|
|
49
|
+
/**
|
|
50
|
+
* <p>If there are more results, this is the token to provide in the next call to <code>ListFindingAggregators</code>.</p>
|
|
51
|
+
* <p>This operation currently only returns a single result.
|
|
52
|
+
* </p>
|
|
53
|
+
*/
|
|
54
|
+
NextToken?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface ListInvitationsRequest {
|
|
57
|
+
/**
|
|
58
|
+
* <p>The maximum number of items to return in the response. </p>
|
|
59
|
+
*/
|
|
60
|
+
MaxResults?: number;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The token that is required for pagination. On your first call to the
|
|
63
|
+
* <code>ListInvitations</code> operation, set the value of this parameter to
|
|
64
|
+
* <code>NULL</code>.</p>
|
|
65
|
+
* <p>For subsequent calls to the operation, to continue listing data, set the value of this
|
|
66
|
+
* parameter to the value returned from the previous response.</p>
|
|
67
|
+
*/
|
|
68
|
+
NextToken?: string;
|
|
69
|
+
}
|
|
70
|
+
export interface ListInvitationsResponse {
|
|
71
|
+
/**
|
|
72
|
+
* <p>The details of the invitations returned by the operation.</p>
|
|
73
|
+
*/
|
|
74
|
+
Invitations?: Invitation[];
|
|
75
|
+
/**
|
|
76
|
+
* <p>The pagination token to use to request the next page of results.</p>
|
|
77
|
+
*/
|
|
78
|
+
NextToken?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface ListMembersRequest {
|
|
81
|
+
/**
|
|
82
|
+
* <p>Specifies which member accounts to include in the response based on their relationship
|
|
83
|
+
* status with the administrator account. The default value is <code>TRUE</code>.</p>
|
|
84
|
+
* <p>If <code>OnlyAssociated</code> is set to <code>TRUE</code>, the response includes member
|
|
85
|
+
* accounts whose relationship status with the administrator account is set to <code>ENABLED</code>.</p>
|
|
86
|
+
* <p>If <code>OnlyAssociated</code> is set to <code>FALSE</code>, the response includes all
|
|
87
|
+
* existing member accounts. </p>
|
|
88
|
+
*/
|
|
89
|
+
OnlyAssociated?: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* <p>The maximum number of items to return in the response. </p>
|
|
92
|
+
*/
|
|
93
|
+
MaxResults?: number;
|
|
94
|
+
/**
|
|
95
|
+
* <p>The token that is required for pagination. On your first call to the
|
|
96
|
+
* <code>ListMembers</code> operation, set the value of this parameter to
|
|
97
|
+
* <code>NULL</code>.</p>
|
|
98
|
+
* <p>For subsequent calls to the operation, to continue listing data, set the value of this
|
|
99
|
+
* parameter to the value returned from the previous response.</p>
|
|
100
|
+
*/
|
|
101
|
+
NextToken?: string;
|
|
102
|
+
}
|
|
103
|
+
export interface ListMembersResponse {
|
|
104
|
+
/**
|
|
105
|
+
* <p>Member details returned by the operation.</p>
|
|
106
|
+
*/
|
|
107
|
+
Members?: Member[];
|
|
108
|
+
/**
|
|
109
|
+
* <p>The pagination token to use to request the next page of results.</p>
|
|
110
|
+
*/
|
|
111
|
+
NextToken?: string;
|
|
112
|
+
}
|
|
113
|
+
export interface ListOrganizationAdminAccountsRequest {
|
|
114
|
+
/**
|
|
115
|
+
* <p>The maximum number of items to return in the response.</p>
|
|
116
|
+
*/
|
|
117
|
+
MaxResults?: number;
|
|
118
|
+
/**
|
|
119
|
+
* <p>The token that is required for pagination. On your first call to the
|
|
120
|
+
* <code>ListOrganizationAdminAccounts</code> operation, set the value of this parameter to
|
|
121
|
+
* <code>NULL</code>. For subsequent calls to the operation, to continue listing data, set
|
|
122
|
+
* the value of this parameter to the value returned from the previous response. </p>
|
|
123
|
+
*/
|
|
124
|
+
NextToken?: string;
|
|
125
|
+
}
|
|
126
|
+
export interface ListOrganizationAdminAccountsResponse {
|
|
127
|
+
/**
|
|
128
|
+
* <p>The list of Security Hub administrator accounts.</p>
|
|
129
|
+
*/
|
|
130
|
+
AdminAccounts?: AdminAccount[];
|
|
131
|
+
/**
|
|
132
|
+
* <p>The pagination token to use to request the next page of results.</p>
|
|
133
|
+
*/
|
|
134
|
+
NextToken?: string;
|
|
135
|
+
}
|
|
136
|
+
export interface ListTagsForResourceRequest {
|
|
137
|
+
/**
|
|
138
|
+
* <p>The ARN of the resource to retrieve tags for.</p>
|
|
139
|
+
*/
|
|
140
|
+
ResourceArn: string | undefined;
|
|
141
|
+
}
|
|
142
|
+
export interface ListTagsForResourceResponse {
|
|
143
|
+
/**
|
|
144
|
+
* <p>The tags associated with a resource.</p>
|
|
145
|
+
*/
|
|
146
|
+
Tags?: Record<string, string>;
|
|
147
|
+
}
|
|
3
148
|
export interface TagResourceRequest {
|
|
4
149
|
/**
|
|
5
150
|
* <p>The ARN of the resource to apply the tags to.</p>
|
|
@@ -175,6 +320,58 @@ export interface UpdateStandardsControlRequest {
|
|
|
175
320
|
}
|
|
176
321
|
export interface UpdateStandardsControlResponse {
|
|
177
322
|
}
|
|
323
|
+
/**
|
|
324
|
+
* @internal
|
|
325
|
+
*/
|
|
326
|
+
export declare const InviteMembersResponseFilterSensitiveLog: (obj: InviteMembersResponse) => any;
|
|
327
|
+
/**
|
|
328
|
+
* @internal
|
|
329
|
+
*/
|
|
330
|
+
export declare const ListEnabledProductsForImportRequestFilterSensitiveLog: (obj: ListEnabledProductsForImportRequest) => any;
|
|
331
|
+
/**
|
|
332
|
+
* @internal
|
|
333
|
+
*/
|
|
334
|
+
export declare const ListEnabledProductsForImportResponseFilterSensitiveLog: (obj: ListEnabledProductsForImportResponse) => any;
|
|
335
|
+
/**
|
|
336
|
+
* @internal
|
|
337
|
+
*/
|
|
338
|
+
export declare const ListFindingAggregatorsRequestFilterSensitiveLog: (obj: ListFindingAggregatorsRequest) => any;
|
|
339
|
+
/**
|
|
340
|
+
* @internal
|
|
341
|
+
*/
|
|
342
|
+
export declare const ListFindingAggregatorsResponseFilterSensitiveLog: (obj: ListFindingAggregatorsResponse) => any;
|
|
343
|
+
/**
|
|
344
|
+
* @internal
|
|
345
|
+
*/
|
|
346
|
+
export declare const ListInvitationsRequestFilterSensitiveLog: (obj: ListInvitationsRequest) => any;
|
|
347
|
+
/**
|
|
348
|
+
* @internal
|
|
349
|
+
*/
|
|
350
|
+
export declare const ListInvitationsResponseFilterSensitiveLog: (obj: ListInvitationsResponse) => any;
|
|
351
|
+
/**
|
|
352
|
+
* @internal
|
|
353
|
+
*/
|
|
354
|
+
export declare const ListMembersRequestFilterSensitiveLog: (obj: ListMembersRequest) => any;
|
|
355
|
+
/**
|
|
356
|
+
* @internal
|
|
357
|
+
*/
|
|
358
|
+
export declare const ListMembersResponseFilterSensitiveLog: (obj: ListMembersResponse) => any;
|
|
359
|
+
/**
|
|
360
|
+
* @internal
|
|
361
|
+
*/
|
|
362
|
+
export declare const ListOrganizationAdminAccountsRequestFilterSensitiveLog: (obj: ListOrganizationAdminAccountsRequest) => any;
|
|
363
|
+
/**
|
|
364
|
+
* @internal
|
|
365
|
+
*/
|
|
366
|
+
export declare const ListOrganizationAdminAccountsResponseFilterSensitiveLog: (obj: ListOrganizationAdminAccountsResponse) => any;
|
|
367
|
+
/**
|
|
368
|
+
* @internal
|
|
369
|
+
*/
|
|
370
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
371
|
+
/**
|
|
372
|
+
* @internal
|
|
373
|
+
*/
|
|
374
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
178
375
|
/**
|
|
179
376
|
* @internal
|
|
180
377
|
*/
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { InviteMembersRequest
|
|
3
|
+
import { InviteMembersRequest } from "../models/models_1";
|
|
4
|
+
import { InviteMembersResponse } from "../models/models_2";
|
|
4
5
|
import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient";
|
|
5
6
|
export interface InviteMembersCommandInput extends InviteMembersRequest {
|
|
6
7
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListEnabledProductsForImportRequest, ListEnabledProductsForImportResponse } from "../models/
|
|
3
|
+
import { ListEnabledProductsForImportRequest, ListEnabledProductsForImportResponse } from "../models/models_2";
|
|
4
4
|
import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient";
|
|
5
5
|
export interface ListEnabledProductsForImportCommandInput extends ListEnabledProductsForImportRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListFindingAggregatorsRequest, ListFindingAggregatorsResponse } from "../models/
|
|
3
|
+
import { ListFindingAggregatorsRequest, ListFindingAggregatorsResponse } from "../models/models_2";
|
|
4
4
|
import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient";
|
|
5
5
|
export interface ListFindingAggregatorsCommandInput extends ListFindingAggregatorsRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListInvitationsRequest, ListInvitationsResponse } from "../models/
|
|
3
|
+
import { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_2";
|
|
4
4
|
import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient";
|
|
5
5
|
export interface ListInvitationsCommandInput extends ListInvitationsRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListMembersRequest, ListMembersResponse } from "../models/
|
|
3
|
+
import { ListMembersRequest, ListMembersResponse } from "../models/models_2";
|
|
4
4
|
import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient";
|
|
5
5
|
export interface ListMembersCommandInput extends ListMembersRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/
|
|
3
|
+
import { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_2";
|
|
4
4
|
import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient";
|
|
5
5
|
export interface ListOrganizationAdminAccountsCommandInput extends ListOrganizationAdminAccountsRequest {
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/
|
|
3
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_2";
|
|
4
4
|
import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient";
|
|
5
5
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
6
6
|
}
|
|
@@ -602,6 +602,154 @@ export interface AwsAutoScalingLaunchConfigurationDetails {
|
|
|
602
602
|
MetadataOptions?: AwsAutoScalingLaunchConfigurationMetadataOptions;
|
|
603
603
|
}
|
|
604
604
|
|
|
605
|
+
export interface AwsBackupBackupPlanAdvancedBackupSettingsDetails {
|
|
606
|
+
|
|
607
|
+
BackupOptions?: Record<string, string>;
|
|
608
|
+
|
|
609
|
+
ResourceType?: string;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
export interface AwsBackupBackupPlanLifecycleDetails {
|
|
613
|
+
|
|
614
|
+
DeleteAfterDays?: number;
|
|
615
|
+
|
|
616
|
+
MoveToColdStorageAfterDays?: number;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
export interface AwsBackupBackupPlanRuleCopyActionsDetails {
|
|
620
|
+
|
|
621
|
+
DestinationBackupVaultArn?: string;
|
|
622
|
+
|
|
623
|
+
Lifecycle?: AwsBackupBackupPlanLifecycleDetails;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
export interface AwsBackupBackupPlanRuleDetails {
|
|
627
|
+
|
|
628
|
+
TargetBackupVault?: string;
|
|
629
|
+
|
|
630
|
+
StartWindowMinutes?: number;
|
|
631
|
+
|
|
632
|
+
ScheduleExpression?: string;
|
|
633
|
+
|
|
634
|
+
RuleName?: string;
|
|
635
|
+
|
|
636
|
+
RuleId?: string;
|
|
637
|
+
|
|
638
|
+
EnableContinuousBackup?: boolean;
|
|
639
|
+
|
|
640
|
+
CompletionWindowMinutes?: number;
|
|
641
|
+
|
|
642
|
+
CopyActions?: AwsBackupBackupPlanRuleCopyActionsDetails[];
|
|
643
|
+
|
|
644
|
+
Lifecycle?: AwsBackupBackupPlanLifecycleDetails;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
export interface AwsBackupBackupPlanBackupPlanDetails {
|
|
648
|
+
|
|
649
|
+
BackupPlanName?: string;
|
|
650
|
+
|
|
651
|
+
AdvancedBackupSettings?: AwsBackupBackupPlanAdvancedBackupSettingsDetails[];
|
|
652
|
+
|
|
653
|
+
BackupPlanRule?: AwsBackupBackupPlanRuleDetails[];
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
export interface AwsBackupBackupPlanDetails {
|
|
657
|
+
|
|
658
|
+
BackupPlan?: AwsBackupBackupPlanBackupPlanDetails;
|
|
659
|
+
|
|
660
|
+
BackupPlanArn?: string;
|
|
661
|
+
|
|
662
|
+
BackupPlanId?: string;
|
|
663
|
+
|
|
664
|
+
VersionId?: string;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
export interface AwsBackupBackupVaultNotificationsDetails {
|
|
668
|
+
|
|
669
|
+
BackupVaultEvents?: string[];
|
|
670
|
+
|
|
671
|
+
SnsTopicArn?: string;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
export interface AwsBackupBackupVaultDetails {
|
|
675
|
+
|
|
676
|
+
BackupVaultArn?: string;
|
|
677
|
+
|
|
678
|
+
BackupVaultName?: string;
|
|
679
|
+
|
|
680
|
+
EncryptionKeyArn?: string;
|
|
681
|
+
|
|
682
|
+
Notifications?: AwsBackupBackupVaultNotificationsDetails;
|
|
683
|
+
|
|
684
|
+
AccessPolicy?: string;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
export interface AwsBackupRecoveryPointCalculatedLifecycleDetails {
|
|
688
|
+
|
|
689
|
+
DeleteAt?: string;
|
|
690
|
+
|
|
691
|
+
MoveToColdStorageAt?: string;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
export interface AwsBackupRecoveryPointCreatedByDetails {
|
|
695
|
+
|
|
696
|
+
BackupPlanArn?: string;
|
|
697
|
+
|
|
698
|
+
BackupPlanId?: string;
|
|
699
|
+
|
|
700
|
+
BackupPlanVersion?: string;
|
|
701
|
+
|
|
702
|
+
BackupRuleId?: string;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
export interface AwsBackupRecoveryPointLifecycleDetails {
|
|
706
|
+
|
|
707
|
+
DeleteAfterDays?: number;
|
|
708
|
+
|
|
709
|
+
MoveToColdStorageAfterDays?: number;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
export interface AwsBackupRecoveryPointDetails {
|
|
713
|
+
|
|
714
|
+
BackupSizeInBytes?: number;
|
|
715
|
+
|
|
716
|
+
BackupVaultArn?: string;
|
|
717
|
+
|
|
718
|
+
BackupVaultName?: string;
|
|
719
|
+
|
|
720
|
+
CalculatedLifecycle?: AwsBackupRecoveryPointCalculatedLifecycleDetails;
|
|
721
|
+
|
|
722
|
+
CompletionDate?: string;
|
|
723
|
+
|
|
724
|
+
CreatedBy?: AwsBackupRecoveryPointCreatedByDetails;
|
|
725
|
+
|
|
726
|
+
CreationDate?: string;
|
|
727
|
+
|
|
728
|
+
EncryptionKeyArn?: string;
|
|
729
|
+
|
|
730
|
+
IamRoleArn?: string;
|
|
731
|
+
|
|
732
|
+
IsEncrypted?: boolean;
|
|
733
|
+
|
|
734
|
+
LastRestoreTime?: string;
|
|
735
|
+
|
|
736
|
+
Lifecycle?: AwsBackupRecoveryPointLifecycleDetails;
|
|
737
|
+
|
|
738
|
+
RecoveryPointArn?: string;
|
|
739
|
+
|
|
740
|
+
ResourceArn?: string;
|
|
741
|
+
|
|
742
|
+
ResourceType?: string;
|
|
743
|
+
|
|
744
|
+
SourceBackupVaultArn?: string;
|
|
745
|
+
|
|
746
|
+
Status?: string;
|
|
747
|
+
|
|
748
|
+
StatusMessage?: string;
|
|
749
|
+
|
|
750
|
+
StorageClass?: string;
|
|
751
|
+
}
|
|
752
|
+
|
|
605
753
|
export interface AwsCertificateManagerCertificateResourceRecord {
|
|
606
754
|
|
|
607
755
|
Name?: string;
|
|
@@ -3366,96 +3514,6 @@ export interface RuleGroupSourceStatefulRulesDetails {
|
|
|
3366
3514
|
RuleOptions?: RuleGroupSourceStatefulRulesOptionsDetails[];
|
|
3367
3515
|
}
|
|
3368
3516
|
|
|
3369
|
-
export interface RuleGroupSourceCustomActionsDetails {
|
|
3370
|
-
|
|
3371
|
-
ActionDefinition?: StatelessCustomActionDefinition;
|
|
3372
|
-
|
|
3373
|
-
ActionName?: string;
|
|
3374
|
-
}
|
|
3375
|
-
|
|
3376
|
-
export interface RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts {
|
|
3377
|
-
|
|
3378
|
-
FromPort?: number;
|
|
3379
|
-
|
|
3380
|
-
ToPort?: number;
|
|
3381
|
-
}
|
|
3382
|
-
|
|
3383
|
-
export interface RuleGroupSourceStatelessRuleMatchAttributesDestinations {
|
|
3384
|
-
|
|
3385
|
-
AddressDefinition?: string;
|
|
3386
|
-
}
|
|
3387
|
-
|
|
3388
|
-
export interface RuleGroupSourceStatelessRuleMatchAttributesSourcePorts {
|
|
3389
|
-
|
|
3390
|
-
FromPort?: number;
|
|
3391
|
-
|
|
3392
|
-
ToPort?: number;
|
|
3393
|
-
}
|
|
3394
|
-
|
|
3395
|
-
export interface RuleGroupSourceStatelessRuleMatchAttributesSources {
|
|
3396
|
-
|
|
3397
|
-
AddressDefinition?: string;
|
|
3398
|
-
}
|
|
3399
|
-
|
|
3400
|
-
export interface RuleGroupSourceStatelessRuleMatchAttributesTcpFlags {
|
|
3401
|
-
|
|
3402
|
-
Flags?: string[];
|
|
3403
|
-
|
|
3404
|
-
Masks?: string[];
|
|
3405
|
-
}
|
|
3406
|
-
|
|
3407
|
-
export interface RuleGroupSourceStatelessRuleMatchAttributes {
|
|
3408
|
-
|
|
3409
|
-
DestinationPorts?: RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts[];
|
|
3410
|
-
|
|
3411
|
-
Destinations?: RuleGroupSourceStatelessRuleMatchAttributesDestinations[];
|
|
3412
|
-
|
|
3413
|
-
Protocols?: number[];
|
|
3414
|
-
|
|
3415
|
-
SourcePorts?: RuleGroupSourceStatelessRuleMatchAttributesSourcePorts[];
|
|
3416
|
-
|
|
3417
|
-
Sources?: RuleGroupSourceStatelessRuleMatchAttributesSources[];
|
|
3418
|
-
|
|
3419
|
-
TcpFlags?: RuleGroupSourceStatelessRuleMatchAttributesTcpFlags[];
|
|
3420
|
-
}
|
|
3421
|
-
|
|
3422
|
-
export interface RuleGroupSourceStatelessRuleDefinition {
|
|
3423
|
-
|
|
3424
|
-
Actions?: string[];
|
|
3425
|
-
|
|
3426
|
-
MatchAttributes?: RuleGroupSourceStatelessRuleMatchAttributes;
|
|
3427
|
-
}
|
|
3428
|
-
|
|
3429
|
-
export interface RuleGroupSourceStatelessRulesDetails {
|
|
3430
|
-
|
|
3431
|
-
Priority?: number;
|
|
3432
|
-
|
|
3433
|
-
RuleDefinition?: RuleGroupSourceStatelessRuleDefinition;
|
|
3434
|
-
}
|
|
3435
|
-
|
|
3436
|
-
export interface RuleGroupSourceStatelessRulesAndCustomActionsDetails {
|
|
3437
|
-
|
|
3438
|
-
CustomActions?: RuleGroupSourceCustomActionsDetails[];
|
|
3439
|
-
|
|
3440
|
-
StatelessRules?: RuleGroupSourceStatelessRulesDetails[];
|
|
3441
|
-
}
|
|
3442
|
-
|
|
3443
|
-
export interface RuleGroupSource {
|
|
3444
|
-
|
|
3445
|
-
RulesSourceList?: RuleGroupSourceListDetails;
|
|
3446
|
-
|
|
3447
|
-
RulesString?: string;
|
|
3448
|
-
|
|
3449
|
-
StatefulRules?: RuleGroupSourceStatefulRulesDetails[];
|
|
3450
|
-
|
|
3451
|
-
StatelessRulesAndCustomActions?: RuleGroupSourceStatelessRulesAndCustomActionsDetails;
|
|
3452
|
-
}
|
|
3453
|
-
|
|
3454
|
-
export interface RuleGroupVariablesIpSetsDetails {
|
|
3455
|
-
|
|
3456
|
-
Definition?: string[];
|
|
3457
|
-
}
|
|
3458
|
-
|
|
3459
3517
|
export declare const AcceptAdministratorInvitationRequestFilterSensitiveLog: (obj: AcceptAdministratorInvitationRequest) => any;
|
|
3460
3518
|
|
|
3461
3519
|
export declare const AcceptAdministratorInvitationResponseFilterSensitiveLog: (obj: AcceptAdministratorInvitationResponse) => any;
|
|
@@ -3550,6 +3608,30 @@ export declare const AwsAutoScalingLaunchConfigurationMetadataOptionsFilterSensi
|
|
|
3550
3608
|
|
|
3551
3609
|
export declare const AwsAutoScalingLaunchConfigurationDetailsFilterSensitiveLog: (obj: AwsAutoScalingLaunchConfigurationDetails) => any;
|
|
3552
3610
|
|
|
3611
|
+
export declare const AwsBackupBackupPlanAdvancedBackupSettingsDetailsFilterSensitiveLog: (obj: AwsBackupBackupPlanAdvancedBackupSettingsDetails) => any;
|
|
3612
|
+
|
|
3613
|
+
export declare const AwsBackupBackupPlanLifecycleDetailsFilterSensitiveLog: (obj: AwsBackupBackupPlanLifecycleDetails) => any;
|
|
3614
|
+
|
|
3615
|
+
export declare const AwsBackupBackupPlanRuleCopyActionsDetailsFilterSensitiveLog: (obj: AwsBackupBackupPlanRuleCopyActionsDetails) => any;
|
|
3616
|
+
|
|
3617
|
+
export declare const AwsBackupBackupPlanRuleDetailsFilterSensitiveLog: (obj: AwsBackupBackupPlanRuleDetails) => any;
|
|
3618
|
+
|
|
3619
|
+
export declare const AwsBackupBackupPlanBackupPlanDetailsFilterSensitiveLog: (obj: AwsBackupBackupPlanBackupPlanDetails) => any;
|
|
3620
|
+
|
|
3621
|
+
export declare const AwsBackupBackupPlanDetailsFilterSensitiveLog: (obj: AwsBackupBackupPlanDetails) => any;
|
|
3622
|
+
|
|
3623
|
+
export declare const AwsBackupBackupVaultNotificationsDetailsFilterSensitiveLog: (obj: AwsBackupBackupVaultNotificationsDetails) => any;
|
|
3624
|
+
|
|
3625
|
+
export declare const AwsBackupBackupVaultDetailsFilterSensitiveLog: (obj: AwsBackupBackupVaultDetails) => any;
|
|
3626
|
+
|
|
3627
|
+
export declare const AwsBackupRecoveryPointCalculatedLifecycleDetailsFilterSensitiveLog: (obj: AwsBackupRecoveryPointCalculatedLifecycleDetails) => any;
|
|
3628
|
+
|
|
3629
|
+
export declare const AwsBackupRecoveryPointCreatedByDetailsFilterSensitiveLog: (obj: AwsBackupRecoveryPointCreatedByDetails) => any;
|
|
3630
|
+
|
|
3631
|
+
export declare const AwsBackupRecoveryPointLifecycleDetailsFilterSensitiveLog: (obj: AwsBackupRecoveryPointLifecycleDetails) => any;
|
|
3632
|
+
|
|
3633
|
+
export declare const AwsBackupRecoveryPointDetailsFilterSensitiveLog: (obj: AwsBackupRecoveryPointDetails) => any;
|
|
3634
|
+
|
|
3553
3635
|
export declare const AwsCertificateManagerCertificateResourceRecordFilterSensitiveLog: (obj: AwsCertificateManagerCertificateResourceRecord) => any;
|
|
3554
3636
|
|
|
3555
3637
|
export declare const AwsCertificateManagerCertificateDomainValidationOptionFilterSensitiveLog: (obj: AwsCertificateManagerCertificateDomainValidationOption) => any;
|
|
@@ -4013,27 +4095,3 @@ export declare const RuleGroupSourceStatefulRulesHeaderDetailsFilterSensitiveLog
|
|
|
4013
4095
|
export declare const RuleGroupSourceStatefulRulesOptionsDetailsFilterSensitiveLog: (obj: RuleGroupSourceStatefulRulesOptionsDetails) => any;
|
|
4014
4096
|
|
|
4015
4097
|
export declare const RuleGroupSourceStatefulRulesDetailsFilterSensitiveLog: (obj: RuleGroupSourceStatefulRulesDetails) => any;
|
|
4016
|
-
|
|
4017
|
-
export declare const RuleGroupSourceCustomActionsDetailsFilterSensitiveLog: (obj: RuleGroupSourceCustomActionsDetails) => any;
|
|
4018
|
-
|
|
4019
|
-
export declare const RuleGroupSourceStatelessRuleMatchAttributesDestinationPortsFilterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts) => any;
|
|
4020
|
-
|
|
4021
|
-
export declare const RuleGroupSourceStatelessRuleMatchAttributesDestinationsFilterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesDestinations) => any;
|
|
4022
|
-
|
|
4023
|
-
export declare const RuleGroupSourceStatelessRuleMatchAttributesSourcePortsFilterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesSourcePorts) => any;
|
|
4024
|
-
|
|
4025
|
-
export declare const RuleGroupSourceStatelessRuleMatchAttributesSourcesFilterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesSources) => any;
|
|
4026
|
-
|
|
4027
|
-
export declare const RuleGroupSourceStatelessRuleMatchAttributesTcpFlagsFilterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesTcpFlags) => any;
|
|
4028
|
-
|
|
4029
|
-
export declare const RuleGroupSourceStatelessRuleMatchAttributesFilterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributes) => any;
|
|
4030
|
-
|
|
4031
|
-
export declare const RuleGroupSourceStatelessRuleDefinitionFilterSensitiveLog: (obj: RuleGroupSourceStatelessRuleDefinition) => any;
|
|
4032
|
-
|
|
4033
|
-
export declare const RuleGroupSourceStatelessRulesDetailsFilterSensitiveLog: (obj: RuleGroupSourceStatelessRulesDetails) => any;
|
|
4034
|
-
|
|
4035
|
-
export declare const RuleGroupSourceStatelessRulesAndCustomActionsDetailsFilterSensitiveLog: (obj: RuleGroupSourceStatelessRulesAndCustomActionsDetails) => any;
|
|
4036
|
-
|
|
4037
|
-
export declare const RuleGroupSourceFilterSensitiveLog: (obj: RuleGroupSource) => any;
|
|
4038
|
-
|
|
4039
|
-
export declare const RuleGroupVariablesIpSetsDetailsFilterSensitiveLog: (obj: RuleGroupVariablesIpSetsDetails) => any;
|