@aws-sdk/client-config-service 3.687.0 → 3.692.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/models/models_0.d.ts +574 -574
- package/dist-types/models/models_1.d.ts +70 -70
- package/dist-types/ts3.4/models/models_0.d.ts +596 -574
- package/dist-types/ts3.4/models/models_1.d.ts +74 -70
- package/package.json +35 -35
|
@@ -2,12 +2,12 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { ConfigServiceServiceException as __BaseException } from "./ConfigServiceServiceException";
|
|
3
3
|
export interface AccountAggregationSource {
|
|
4
4
|
AccountIds: string[] | undefined;
|
|
5
|
-
AllAwsRegions?: boolean;
|
|
6
|
-
AwsRegions?: string[];
|
|
5
|
+
AllAwsRegions?: boolean | undefined;
|
|
6
|
+
AwsRegions?: string[] | undefined;
|
|
7
7
|
}
|
|
8
8
|
export interface ComplianceContributorCount {
|
|
9
|
-
CappedCount?: number;
|
|
10
|
-
CapExceeded?: boolean;
|
|
9
|
+
CappedCount?: number | undefined;
|
|
10
|
+
CapExceeded?: boolean | undefined;
|
|
11
11
|
}
|
|
12
12
|
export declare const ComplianceType: {
|
|
13
13
|
readonly Compliant: "COMPLIANT";
|
|
@@ -18,14 +18,14 @@ export declare const ComplianceType: {
|
|
|
18
18
|
export type ComplianceType =
|
|
19
19
|
(typeof ComplianceType)[keyof typeof ComplianceType];
|
|
20
20
|
export interface Compliance {
|
|
21
|
-
ComplianceType?: ComplianceType;
|
|
22
|
-
ComplianceContributorCount?: ComplianceContributorCount;
|
|
21
|
+
ComplianceType?: ComplianceType | undefined;
|
|
22
|
+
ComplianceContributorCount?: ComplianceContributorCount | undefined;
|
|
23
23
|
}
|
|
24
24
|
export interface AggregateComplianceByConfigRule {
|
|
25
|
-
ConfigRuleName?: string;
|
|
26
|
-
Compliance?: Compliance;
|
|
27
|
-
AccountId?: string;
|
|
28
|
-
AwsRegion?: string;
|
|
25
|
+
ConfigRuleName?: string | undefined;
|
|
26
|
+
Compliance?: Compliance | undefined;
|
|
27
|
+
AccountId?: string | undefined;
|
|
28
|
+
AwsRegion?: string | undefined;
|
|
29
29
|
}
|
|
30
30
|
export declare const ConformancePackComplianceType: {
|
|
31
31
|
readonly COMPLIANT: "COMPLIANT";
|
|
@@ -35,43 +35,43 @@ export declare const ConformancePackComplianceType: {
|
|
|
35
35
|
export type ConformancePackComplianceType =
|
|
36
36
|
(typeof ConformancePackComplianceType)[keyof typeof ConformancePackComplianceType];
|
|
37
37
|
export interface AggregateConformancePackCompliance {
|
|
38
|
-
ComplianceType?: ConformancePackComplianceType;
|
|
39
|
-
CompliantRuleCount?: number;
|
|
40
|
-
NonCompliantRuleCount?: number;
|
|
41
|
-
TotalRuleCount?: number;
|
|
38
|
+
ComplianceType?: ConformancePackComplianceType | undefined;
|
|
39
|
+
CompliantRuleCount?: number | undefined;
|
|
40
|
+
NonCompliantRuleCount?: number | undefined;
|
|
41
|
+
TotalRuleCount?: number | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface AggregateComplianceByConformancePack {
|
|
44
|
-
ConformancePackName?: string;
|
|
45
|
-
Compliance?: AggregateConformancePackCompliance;
|
|
46
|
-
AccountId?: string;
|
|
47
|
-
AwsRegion?: string;
|
|
44
|
+
ConformancePackName?: string | undefined;
|
|
45
|
+
Compliance?: AggregateConformancePackCompliance | undefined;
|
|
46
|
+
AccountId?: string | undefined;
|
|
47
|
+
AwsRegion?: string | undefined;
|
|
48
48
|
}
|
|
49
49
|
export interface ComplianceSummary {
|
|
50
|
-
CompliantResourceCount?: ComplianceContributorCount;
|
|
51
|
-
NonCompliantResourceCount?: ComplianceContributorCount;
|
|
52
|
-
ComplianceSummaryTimestamp?: Date;
|
|
50
|
+
CompliantResourceCount?: ComplianceContributorCount | undefined;
|
|
51
|
+
NonCompliantResourceCount?: ComplianceContributorCount | undefined;
|
|
52
|
+
ComplianceSummaryTimestamp?: Date | undefined;
|
|
53
53
|
}
|
|
54
54
|
export interface AggregateComplianceCount {
|
|
55
|
-
GroupName?: string;
|
|
56
|
-
ComplianceSummary?: ComplianceSummary;
|
|
55
|
+
GroupName?: string | undefined;
|
|
56
|
+
ComplianceSummary?: ComplianceSummary | undefined;
|
|
57
57
|
}
|
|
58
58
|
export interface AggregateConformancePackComplianceCount {
|
|
59
|
-
CompliantConformancePackCount?: number;
|
|
60
|
-
NonCompliantConformancePackCount?: number;
|
|
59
|
+
CompliantConformancePackCount?: number | undefined;
|
|
60
|
+
NonCompliantConformancePackCount?: number | undefined;
|
|
61
61
|
}
|
|
62
62
|
export interface AggregateConformancePackComplianceFilters {
|
|
63
|
-
ConformancePackName?: string;
|
|
64
|
-
ComplianceType?: ConformancePackComplianceType;
|
|
65
|
-
AccountId?: string;
|
|
66
|
-
AwsRegion?: string;
|
|
63
|
+
ConformancePackName?: string | undefined;
|
|
64
|
+
ComplianceType?: ConformancePackComplianceType | undefined;
|
|
65
|
+
AccountId?: string | undefined;
|
|
66
|
+
AwsRegion?: string | undefined;
|
|
67
67
|
}
|
|
68
68
|
export interface AggregateConformancePackComplianceSummary {
|
|
69
|
-
ComplianceSummary?: AggregateConformancePackComplianceCount;
|
|
70
|
-
GroupName?: string;
|
|
69
|
+
ComplianceSummary?: AggregateConformancePackComplianceCount | undefined;
|
|
70
|
+
GroupName?: string | undefined;
|
|
71
71
|
}
|
|
72
72
|
export interface AggregateConformancePackComplianceSummaryFilters {
|
|
73
|
-
AccountId?: string;
|
|
74
|
-
AwsRegion?: string;
|
|
73
|
+
AccountId?: string | undefined;
|
|
74
|
+
AwsRegion?: string | undefined;
|
|
75
75
|
}
|
|
76
76
|
export declare const AggregateConformancePackComplianceSummaryGroupKey: {
|
|
77
77
|
readonly ACCOUNT_ID: "ACCOUNT_ID";
|
|
@@ -93,13 +93,13 @@ export declare const AggregatedSourceType: {
|
|
|
93
93
|
export type AggregatedSourceType =
|
|
94
94
|
(typeof AggregatedSourceType)[keyof typeof AggregatedSourceType];
|
|
95
95
|
export interface AggregatedSourceStatus {
|
|
96
|
-
SourceId?: string;
|
|
97
|
-
SourceType?: AggregatedSourceType;
|
|
98
|
-
AwsRegion?: string;
|
|
99
|
-
LastUpdateStatus?: AggregatedSourceStatusType;
|
|
100
|
-
LastUpdateTime?: Date;
|
|
101
|
-
LastErrorCode?: string;
|
|
102
|
-
LastErrorMessage?: string;
|
|
96
|
+
SourceId?: string | undefined;
|
|
97
|
+
SourceType?: AggregatedSourceType | undefined;
|
|
98
|
+
AwsRegion?: string | undefined;
|
|
99
|
+
LastUpdateStatus?: AggregatedSourceStatusType | undefined;
|
|
100
|
+
LastUpdateTime?: Date | undefined;
|
|
101
|
+
LastErrorCode?: string | undefined;
|
|
102
|
+
LastErrorMessage?: string | undefined;
|
|
103
103
|
}
|
|
104
104
|
export declare const EvaluationMode: {
|
|
105
105
|
readonly DETECTIVE: "DETECTIVE";
|
|
@@ -108,24 +108,24 @@ export declare const EvaluationMode: {
|
|
|
108
108
|
export type EvaluationMode =
|
|
109
109
|
(typeof EvaluationMode)[keyof typeof EvaluationMode];
|
|
110
110
|
export interface EvaluationResultQualifier {
|
|
111
|
-
ConfigRuleName?: string;
|
|
112
|
-
ResourceType?: string;
|
|
113
|
-
ResourceId?: string;
|
|
114
|
-
EvaluationMode?: EvaluationMode;
|
|
111
|
+
ConfigRuleName?: string | undefined;
|
|
112
|
+
ResourceType?: string | undefined;
|
|
113
|
+
ResourceId?: string | undefined;
|
|
114
|
+
EvaluationMode?: EvaluationMode | undefined;
|
|
115
115
|
}
|
|
116
116
|
export interface EvaluationResultIdentifier {
|
|
117
|
-
EvaluationResultQualifier?: EvaluationResultQualifier;
|
|
118
|
-
OrderingTimestamp?: Date;
|
|
119
|
-
ResourceEvaluationId?: string;
|
|
117
|
+
EvaluationResultQualifier?: EvaluationResultQualifier | undefined;
|
|
118
|
+
OrderingTimestamp?: Date | undefined;
|
|
119
|
+
ResourceEvaluationId?: string | undefined;
|
|
120
120
|
}
|
|
121
121
|
export interface AggregateEvaluationResult {
|
|
122
|
-
EvaluationResultIdentifier?: EvaluationResultIdentifier;
|
|
123
|
-
ComplianceType?: ComplianceType;
|
|
124
|
-
ResultRecordedTime?: Date;
|
|
125
|
-
ConfigRuleInvokedTime?: Date;
|
|
126
|
-
Annotation?: string;
|
|
127
|
-
AccountId?: string;
|
|
128
|
-
AwsRegion?: string;
|
|
122
|
+
EvaluationResultIdentifier?: EvaluationResultIdentifier | undefined;
|
|
123
|
+
ComplianceType?: ComplianceType | undefined;
|
|
124
|
+
ResultRecordedTime?: Date | undefined;
|
|
125
|
+
ConfigRuleInvokedTime?: Date | undefined;
|
|
126
|
+
Annotation?: string | undefined;
|
|
127
|
+
AccountId?: string | undefined;
|
|
128
|
+
AwsRegion?: string | undefined;
|
|
129
129
|
}
|
|
130
130
|
export declare const ResourceType: {
|
|
131
131
|
readonly ACMPCACertificateAuthority: "AWS::ACMPCA::CertificateAuthority";
|
|
@@ -542,13 +542,13 @@ export interface AggregateResourceIdentifier {
|
|
|
542
542
|
SourceRegion: string | undefined;
|
|
543
543
|
ResourceId: string | undefined;
|
|
544
544
|
ResourceType: ResourceType | undefined;
|
|
545
|
-
ResourceName?: string;
|
|
545
|
+
ResourceName?: string | undefined;
|
|
546
546
|
}
|
|
547
547
|
export interface AggregationAuthorization {
|
|
548
|
-
AggregationAuthorizationArn?: string;
|
|
549
|
-
AuthorizedAccountId?: string;
|
|
550
|
-
AuthorizedAwsRegion?: string;
|
|
551
|
-
CreationTime?: Date;
|
|
548
|
+
AggregationAuthorizationArn?: string | undefined;
|
|
549
|
+
AuthorizedAccountId?: string | undefined;
|
|
550
|
+
AuthorizedAwsRegion?: string | undefined;
|
|
551
|
+
CreationTime?: Date | undefined;
|
|
552
552
|
}
|
|
553
553
|
export declare const ConfigurationItemStatus: {
|
|
554
554
|
readonly OK: "OK";
|
|
@@ -566,30 +566,30 @@ export declare const RecordingFrequency: {
|
|
|
566
566
|
export type RecordingFrequency =
|
|
567
567
|
(typeof RecordingFrequency)[keyof typeof RecordingFrequency];
|
|
568
568
|
export interface BaseConfigurationItem {
|
|
569
|
-
version?: string;
|
|
570
|
-
accountId?: string;
|
|
571
|
-
configurationItemCaptureTime?: Date;
|
|
572
|
-
configurationItemStatus?: ConfigurationItemStatus;
|
|
573
|
-
configurationStateId?: string;
|
|
574
|
-
arn?: string;
|
|
575
|
-
resourceType?: ResourceType;
|
|
576
|
-
resourceId?: string;
|
|
577
|
-
resourceName?: string;
|
|
578
|
-
awsRegion?: string;
|
|
579
|
-
availabilityZone?: string;
|
|
580
|
-
resourceCreationTime?: Date;
|
|
581
|
-
configuration?: string;
|
|
582
|
-
supplementaryConfiguration?: Record<string, string
|
|
583
|
-
recordingFrequency?: RecordingFrequency;
|
|
584
|
-
configurationItemDeliveryTime?: Date;
|
|
569
|
+
version?: string | undefined;
|
|
570
|
+
accountId?: string | undefined;
|
|
571
|
+
configurationItemCaptureTime?: Date | undefined;
|
|
572
|
+
configurationItemStatus?: ConfigurationItemStatus | undefined;
|
|
573
|
+
configurationStateId?: string | undefined;
|
|
574
|
+
arn?: string | undefined;
|
|
575
|
+
resourceType?: ResourceType | undefined;
|
|
576
|
+
resourceId?: string | undefined;
|
|
577
|
+
resourceName?: string | undefined;
|
|
578
|
+
awsRegion?: string | undefined;
|
|
579
|
+
availabilityZone?: string | undefined;
|
|
580
|
+
resourceCreationTime?: Date | undefined;
|
|
581
|
+
configuration?: string | undefined;
|
|
582
|
+
supplementaryConfiguration?: Record<string, string> | undefined;
|
|
583
|
+
recordingFrequency?: RecordingFrequency | undefined;
|
|
584
|
+
configurationItemDeliveryTime?: Date | undefined;
|
|
585
585
|
}
|
|
586
586
|
export interface BatchGetAggregateResourceConfigRequest {
|
|
587
587
|
ConfigurationAggregatorName: string | undefined;
|
|
588
588
|
ResourceIdentifiers: AggregateResourceIdentifier[] | undefined;
|
|
589
589
|
}
|
|
590
590
|
export interface BatchGetAggregateResourceConfigResponse {
|
|
591
|
-
BaseConfigurationItems?: BaseConfigurationItem[];
|
|
592
|
-
UnprocessedResourceIdentifiers?: AggregateResourceIdentifier[];
|
|
591
|
+
BaseConfigurationItems?: BaseConfigurationItem[] | undefined;
|
|
592
|
+
UnprocessedResourceIdentifiers?: AggregateResourceIdentifier[] | undefined;
|
|
593
593
|
}
|
|
594
594
|
export declare class NoSuchConfigurationAggregatorException extends __BaseException {
|
|
595
595
|
readonly name: "NoSuchConfigurationAggregatorException";
|
|
@@ -616,8 +616,8 @@ export interface BatchGetResourceConfigRequest {
|
|
|
616
616
|
resourceKeys: ResourceKey[] | undefined;
|
|
617
617
|
}
|
|
618
618
|
export interface BatchGetResourceConfigResponse {
|
|
619
|
-
baseConfigurationItems?: BaseConfigurationItem[];
|
|
620
|
-
unprocessedResourceKeys?: ResourceKey[];
|
|
619
|
+
baseConfigurationItems?: BaseConfigurationItem[] | undefined;
|
|
620
|
+
unprocessedResourceKeys?: ResourceKey[] | undefined;
|
|
621
621
|
}
|
|
622
622
|
export declare class NoAvailableConfigurationRecorderException extends __BaseException {
|
|
623
623
|
readonly name: "NoAvailableConfigurationRecorderException";
|
|
@@ -636,17 +636,17 @@ export declare const ChronologicalOrder: {
|
|
|
636
636
|
export type ChronologicalOrder =
|
|
637
637
|
(typeof ChronologicalOrder)[keyof typeof ChronologicalOrder];
|
|
638
638
|
export interface ComplianceByConfigRule {
|
|
639
|
-
ConfigRuleName?: string;
|
|
640
|
-
Compliance?: Compliance;
|
|
639
|
+
ConfigRuleName?: string | undefined;
|
|
640
|
+
Compliance?: Compliance | undefined;
|
|
641
641
|
}
|
|
642
642
|
export interface ComplianceByResource {
|
|
643
|
-
ResourceType?: string;
|
|
644
|
-
ResourceId?: string;
|
|
645
|
-
Compliance?: Compliance;
|
|
643
|
+
ResourceType?: string | undefined;
|
|
644
|
+
ResourceId?: string | undefined;
|
|
645
|
+
Compliance?: Compliance | undefined;
|
|
646
646
|
}
|
|
647
647
|
export interface ComplianceSummaryByResourceType {
|
|
648
|
-
ResourceType?: string;
|
|
649
|
-
ComplianceSummary?: ComplianceSummary;
|
|
648
|
+
ResourceType?: string | undefined;
|
|
649
|
+
ComplianceSummary?: ComplianceSummary | undefined;
|
|
650
650
|
}
|
|
651
651
|
export declare const DeliveryStatus: {
|
|
652
652
|
readonly Failure: "Failure";
|
|
@@ -656,12 +656,12 @@ export declare const DeliveryStatus: {
|
|
|
656
656
|
export type DeliveryStatus =
|
|
657
657
|
(typeof DeliveryStatus)[keyof typeof DeliveryStatus];
|
|
658
658
|
export interface ConfigExportDeliveryInfo {
|
|
659
|
-
lastStatus?: DeliveryStatus;
|
|
660
|
-
lastErrorCode?: string;
|
|
661
|
-
lastErrorMessage?: string;
|
|
662
|
-
lastAttemptTime?: Date;
|
|
663
|
-
lastSuccessfulTime?: Date;
|
|
664
|
-
nextDeliveryTime?: Date;
|
|
659
|
+
lastStatus?: DeliveryStatus | undefined;
|
|
660
|
+
lastErrorCode?: string | undefined;
|
|
661
|
+
lastErrorMessage?: string | undefined;
|
|
662
|
+
lastAttemptTime?: Date | undefined;
|
|
663
|
+
lastSuccessfulTime?: Date | undefined;
|
|
664
|
+
nextDeliveryTime?: Date | undefined;
|
|
665
665
|
}
|
|
666
666
|
export declare const ConfigRuleState: {
|
|
667
667
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -672,7 +672,7 @@ export declare const ConfigRuleState: {
|
|
|
672
672
|
export type ConfigRuleState =
|
|
673
673
|
(typeof ConfigRuleState)[keyof typeof ConfigRuleState];
|
|
674
674
|
export interface EvaluationModeConfiguration {
|
|
675
|
-
Mode?: EvaluationMode;
|
|
675
|
+
Mode?: EvaluationMode | undefined;
|
|
676
676
|
}
|
|
677
677
|
export declare const MaximumExecutionFrequency: {
|
|
678
678
|
readonly One_Hour: "One_Hour";
|
|
@@ -684,15 +684,15 @@ export declare const MaximumExecutionFrequency: {
|
|
|
684
684
|
export type MaximumExecutionFrequency =
|
|
685
685
|
(typeof MaximumExecutionFrequency)[keyof typeof MaximumExecutionFrequency];
|
|
686
686
|
export interface Scope {
|
|
687
|
-
ComplianceResourceTypes?: string[];
|
|
688
|
-
TagKey?: string;
|
|
689
|
-
TagValue?: string;
|
|
690
|
-
ComplianceResourceId?: string;
|
|
687
|
+
ComplianceResourceTypes?: string[] | undefined;
|
|
688
|
+
TagKey?: string | undefined;
|
|
689
|
+
TagValue?: string | undefined;
|
|
690
|
+
ComplianceResourceId?: string | undefined;
|
|
691
691
|
}
|
|
692
692
|
export interface CustomPolicyDetails {
|
|
693
693
|
PolicyRuntime: string | undefined;
|
|
694
694
|
PolicyText: string | undefined;
|
|
695
|
-
EnableDebugLogDelivery?: boolean;
|
|
695
|
+
EnableDebugLogDelivery?: boolean | undefined;
|
|
696
696
|
}
|
|
697
697
|
export declare const Owner: {
|
|
698
698
|
readonly Aws: "AWS";
|
|
@@ -712,38 +712,38 @@ export declare const MessageType: {
|
|
|
712
712
|
};
|
|
713
713
|
export type MessageType = (typeof MessageType)[keyof typeof MessageType];
|
|
714
714
|
export interface SourceDetail {
|
|
715
|
-
EventSource?: EventSource;
|
|
716
|
-
MessageType?: MessageType;
|
|
717
|
-
MaximumExecutionFrequency?: MaximumExecutionFrequency;
|
|
715
|
+
EventSource?: EventSource | undefined;
|
|
716
|
+
MessageType?: MessageType | undefined;
|
|
717
|
+
MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
|
|
718
718
|
}
|
|
719
719
|
export interface Source {
|
|
720
720
|
Owner: Owner | undefined;
|
|
721
|
-
SourceIdentifier?: string;
|
|
722
|
-
SourceDetails?: SourceDetail[];
|
|
723
|
-
CustomPolicyDetails?: CustomPolicyDetails;
|
|
721
|
+
SourceIdentifier?: string | undefined;
|
|
722
|
+
SourceDetails?: SourceDetail[] | undefined;
|
|
723
|
+
CustomPolicyDetails?: CustomPolicyDetails | undefined;
|
|
724
724
|
}
|
|
725
725
|
export interface ConfigRule {
|
|
726
|
-
ConfigRuleName?: string;
|
|
727
|
-
ConfigRuleArn?: string;
|
|
728
|
-
ConfigRuleId?: string;
|
|
729
|
-
Description?: string;
|
|
730
|
-
Scope?: Scope;
|
|
726
|
+
ConfigRuleName?: string | undefined;
|
|
727
|
+
ConfigRuleArn?: string | undefined;
|
|
728
|
+
ConfigRuleId?: string | undefined;
|
|
729
|
+
Description?: string | undefined;
|
|
730
|
+
Scope?: Scope | undefined;
|
|
731
731
|
Source: Source | undefined;
|
|
732
|
-
InputParameters?: string;
|
|
733
|
-
MaximumExecutionFrequency?: MaximumExecutionFrequency;
|
|
734
|
-
ConfigRuleState?: ConfigRuleState;
|
|
735
|
-
CreatedBy?: string;
|
|
736
|
-
EvaluationModes?: EvaluationModeConfiguration[];
|
|
732
|
+
InputParameters?: string | undefined;
|
|
733
|
+
MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
|
|
734
|
+
ConfigRuleState?: ConfigRuleState | undefined;
|
|
735
|
+
CreatedBy?: string | undefined;
|
|
736
|
+
EvaluationModes?: EvaluationModeConfiguration[] | undefined;
|
|
737
737
|
}
|
|
738
738
|
export interface ConfigRuleComplianceFilters {
|
|
739
|
-
ConfigRuleName?: string;
|
|
740
|
-
ComplianceType?: ComplianceType;
|
|
741
|
-
AccountId?: string;
|
|
742
|
-
AwsRegion?: string;
|
|
739
|
+
ConfigRuleName?: string | undefined;
|
|
740
|
+
ComplianceType?: ComplianceType | undefined;
|
|
741
|
+
AccountId?: string | undefined;
|
|
742
|
+
AwsRegion?: string | undefined;
|
|
743
743
|
}
|
|
744
744
|
export interface ConfigRuleComplianceSummaryFilters {
|
|
745
|
-
AccountId?: string;
|
|
746
|
-
AwsRegion?: string;
|
|
745
|
+
AccountId?: string | undefined;
|
|
746
|
+
AwsRegion?: string | undefined;
|
|
747
747
|
}
|
|
748
748
|
export declare const ConfigRuleComplianceSummaryGroupKey: {
|
|
749
749
|
readonly ACCOUNT_ID: "ACCOUNT_ID";
|
|
@@ -752,75 +752,75 @@ export declare const ConfigRuleComplianceSummaryGroupKey: {
|
|
|
752
752
|
export type ConfigRuleComplianceSummaryGroupKey =
|
|
753
753
|
(typeof ConfigRuleComplianceSummaryGroupKey)[keyof typeof ConfigRuleComplianceSummaryGroupKey];
|
|
754
754
|
export interface ConfigRuleEvaluationStatus {
|
|
755
|
-
ConfigRuleName?: string;
|
|
756
|
-
ConfigRuleArn?: string;
|
|
757
|
-
ConfigRuleId?: string;
|
|
758
|
-
LastSuccessfulInvocationTime?: Date;
|
|
759
|
-
LastFailedInvocationTime?: Date;
|
|
760
|
-
LastSuccessfulEvaluationTime?: Date;
|
|
761
|
-
LastFailedEvaluationTime?: Date;
|
|
762
|
-
FirstActivatedTime?: Date;
|
|
763
|
-
LastDeactivatedTime?: Date;
|
|
764
|
-
LastErrorCode?: string;
|
|
765
|
-
LastErrorMessage?: string;
|
|
766
|
-
FirstEvaluationStarted?: boolean;
|
|
767
|
-
LastDebugLogDeliveryStatus?: string;
|
|
768
|
-
LastDebugLogDeliveryStatusReason?: string;
|
|
769
|
-
LastDebugLogDeliveryTime?: Date;
|
|
755
|
+
ConfigRuleName?: string | undefined;
|
|
756
|
+
ConfigRuleArn?: string | undefined;
|
|
757
|
+
ConfigRuleId?: string | undefined;
|
|
758
|
+
LastSuccessfulInvocationTime?: Date | undefined;
|
|
759
|
+
LastFailedInvocationTime?: Date | undefined;
|
|
760
|
+
LastSuccessfulEvaluationTime?: Date | undefined;
|
|
761
|
+
LastFailedEvaluationTime?: Date | undefined;
|
|
762
|
+
FirstActivatedTime?: Date | undefined;
|
|
763
|
+
LastDeactivatedTime?: Date | undefined;
|
|
764
|
+
LastErrorCode?: string | undefined;
|
|
765
|
+
LastErrorMessage?: string | undefined;
|
|
766
|
+
FirstEvaluationStarted?: boolean | undefined;
|
|
767
|
+
LastDebugLogDeliveryStatus?: string | undefined;
|
|
768
|
+
LastDebugLogDeliveryStatusReason?: string | undefined;
|
|
769
|
+
LastDebugLogDeliveryTime?: Date | undefined;
|
|
770
770
|
}
|
|
771
771
|
export interface ConfigSnapshotDeliveryProperties {
|
|
772
|
-
deliveryFrequency?: MaximumExecutionFrequency;
|
|
772
|
+
deliveryFrequency?: MaximumExecutionFrequency | undefined;
|
|
773
773
|
}
|
|
774
774
|
export interface ConfigStreamDeliveryInfo {
|
|
775
|
-
lastStatus?: DeliveryStatus;
|
|
776
|
-
lastErrorCode?: string;
|
|
777
|
-
lastErrorMessage?: string;
|
|
778
|
-
lastStatusChangeTime?: Date;
|
|
775
|
+
lastStatus?: DeliveryStatus | undefined;
|
|
776
|
+
lastErrorCode?: string | undefined;
|
|
777
|
+
lastErrorMessage?: string | undefined;
|
|
778
|
+
lastStatusChangeTime?: Date | undefined;
|
|
779
779
|
}
|
|
780
780
|
export interface OrganizationAggregationSource {
|
|
781
781
|
RoleArn: string | undefined;
|
|
782
|
-
AwsRegions?: string[];
|
|
783
|
-
AllAwsRegions?: boolean;
|
|
782
|
+
AwsRegions?: string[] | undefined;
|
|
783
|
+
AllAwsRegions?: boolean | undefined;
|
|
784
784
|
}
|
|
785
785
|
export interface ConfigurationAggregator {
|
|
786
|
-
ConfigurationAggregatorName?: string;
|
|
787
|
-
ConfigurationAggregatorArn?: string;
|
|
788
|
-
AccountAggregationSources?: AccountAggregationSource[];
|
|
789
|
-
OrganizationAggregationSource?: OrganizationAggregationSource;
|
|
790
|
-
CreationTime?: Date;
|
|
791
|
-
LastUpdatedTime?: Date;
|
|
792
|
-
CreatedBy?: string;
|
|
786
|
+
ConfigurationAggregatorName?: string | undefined;
|
|
787
|
+
ConfigurationAggregatorArn?: string | undefined;
|
|
788
|
+
AccountAggregationSources?: AccountAggregationSource[] | undefined;
|
|
789
|
+
OrganizationAggregationSource?: OrganizationAggregationSource | undefined;
|
|
790
|
+
CreationTime?: Date | undefined;
|
|
791
|
+
LastUpdatedTime?: Date | undefined;
|
|
792
|
+
CreatedBy?: string | undefined;
|
|
793
793
|
}
|
|
794
794
|
export interface Relationship {
|
|
795
|
-
resourceType?: ResourceType;
|
|
796
|
-
resourceId?: string;
|
|
797
|
-
resourceName?: string;
|
|
798
|
-
relationshipName?: string;
|
|
795
|
+
resourceType?: ResourceType | undefined;
|
|
796
|
+
resourceId?: string | undefined;
|
|
797
|
+
resourceName?: string | undefined;
|
|
798
|
+
relationshipName?: string | undefined;
|
|
799
799
|
}
|
|
800
800
|
export interface ConfigurationItem {
|
|
801
|
-
version?: string;
|
|
802
|
-
accountId?: string;
|
|
803
|
-
configurationItemCaptureTime?: Date;
|
|
804
|
-
configurationItemStatus?: ConfigurationItemStatus;
|
|
805
|
-
configurationStateId?: string;
|
|
806
|
-
configurationItemMD5Hash?: string;
|
|
807
|
-
arn?: string;
|
|
808
|
-
resourceType?: ResourceType;
|
|
809
|
-
resourceId?: string;
|
|
810
|
-
resourceName?: string;
|
|
811
|
-
awsRegion?: string;
|
|
812
|
-
availabilityZone?: string;
|
|
813
|
-
resourceCreationTime?: Date;
|
|
814
|
-
tags?: Record<string, string
|
|
815
|
-
relatedEvents?: string[];
|
|
816
|
-
relationships?: Relationship[];
|
|
817
|
-
configuration?: string;
|
|
818
|
-
supplementaryConfiguration?: Record<string, string
|
|
819
|
-
recordingFrequency?: RecordingFrequency;
|
|
820
|
-
configurationItemDeliveryTime?: Date;
|
|
801
|
+
version?: string | undefined;
|
|
802
|
+
accountId?: string | undefined;
|
|
803
|
+
configurationItemCaptureTime?: Date | undefined;
|
|
804
|
+
configurationItemStatus?: ConfigurationItemStatus | undefined;
|
|
805
|
+
configurationStateId?: string | undefined;
|
|
806
|
+
configurationItemMD5Hash?: string | undefined;
|
|
807
|
+
arn?: string | undefined;
|
|
808
|
+
resourceType?: ResourceType | undefined;
|
|
809
|
+
resourceId?: string | undefined;
|
|
810
|
+
resourceName?: string | undefined;
|
|
811
|
+
awsRegion?: string | undefined;
|
|
812
|
+
availabilityZone?: string | undefined;
|
|
813
|
+
resourceCreationTime?: Date | undefined;
|
|
814
|
+
tags?: Record<string, string> | undefined;
|
|
815
|
+
relatedEvents?: string[] | undefined;
|
|
816
|
+
relationships?: Relationship[] | undefined;
|
|
817
|
+
configuration?: string | undefined;
|
|
818
|
+
supplementaryConfiguration?: Record<string, string> | undefined;
|
|
819
|
+
recordingFrequency?: RecordingFrequency | undefined;
|
|
820
|
+
configurationItemDeliveryTime?: Date | undefined;
|
|
821
821
|
}
|
|
822
822
|
export interface ExclusionByResourceTypes {
|
|
823
|
-
resourceTypes?: ResourceType[];
|
|
823
|
+
resourceTypes?: ResourceType[] | undefined;
|
|
824
824
|
}
|
|
825
825
|
export declare const RecordingStrategyType: {
|
|
826
826
|
readonly ALL_SUPPORTED_RESOURCE_TYPES: "ALL_SUPPORTED_RESOURCE_TYPES";
|
|
@@ -830,29 +830,29 @@ export declare const RecordingStrategyType: {
|
|
|
830
830
|
export type RecordingStrategyType =
|
|
831
831
|
(typeof RecordingStrategyType)[keyof typeof RecordingStrategyType];
|
|
832
832
|
export interface RecordingStrategy {
|
|
833
|
-
useOnly?: RecordingStrategyType;
|
|
833
|
+
useOnly?: RecordingStrategyType | undefined;
|
|
834
834
|
}
|
|
835
835
|
export interface RecordingGroup {
|
|
836
|
-
allSupported?: boolean;
|
|
837
|
-
includeGlobalResourceTypes?: boolean;
|
|
838
|
-
resourceTypes?: ResourceType[];
|
|
839
|
-
exclusionByResourceTypes?: ExclusionByResourceTypes;
|
|
840
|
-
recordingStrategy?: RecordingStrategy;
|
|
836
|
+
allSupported?: boolean | undefined;
|
|
837
|
+
includeGlobalResourceTypes?: boolean | undefined;
|
|
838
|
+
resourceTypes?: ResourceType[] | undefined;
|
|
839
|
+
exclusionByResourceTypes?: ExclusionByResourceTypes | undefined;
|
|
840
|
+
recordingStrategy?: RecordingStrategy | undefined;
|
|
841
841
|
}
|
|
842
842
|
export interface RecordingModeOverride {
|
|
843
|
-
description?: string;
|
|
843
|
+
description?: string | undefined;
|
|
844
844
|
resourceTypes: ResourceType[] | undefined;
|
|
845
845
|
recordingFrequency: RecordingFrequency | undefined;
|
|
846
846
|
}
|
|
847
847
|
export interface RecordingMode {
|
|
848
848
|
recordingFrequency: RecordingFrequency | undefined;
|
|
849
|
-
recordingModeOverrides?: RecordingModeOverride[];
|
|
849
|
+
recordingModeOverrides?: RecordingModeOverride[] | undefined;
|
|
850
850
|
}
|
|
851
851
|
export interface ConfigurationRecorder {
|
|
852
|
-
name?: string;
|
|
853
|
-
roleARN?: string;
|
|
854
|
-
recordingGroup?: RecordingGroup;
|
|
855
|
-
recordingMode?: RecordingMode;
|
|
852
|
+
name?: string | undefined;
|
|
853
|
+
roleARN?: string | undefined;
|
|
854
|
+
recordingGroup?: RecordingGroup | undefined;
|
|
855
|
+
recordingMode?: RecordingMode | undefined;
|
|
856
856
|
}
|
|
857
857
|
export declare const RecorderStatus: {
|
|
858
858
|
readonly Failure: "Failure";
|
|
@@ -862,23 +862,23 @@ export declare const RecorderStatus: {
|
|
|
862
862
|
export type RecorderStatus =
|
|
863
863
|
(typeof RecorderStatus)[keyof typeof RecorderStatus];
|
|
864
864
|
export interface ConfigurationRecorderStatus {
|
|
865
|
-
name?: string;
|
|
866
|
-
lastStartTime?: Date;
|
|
867
|
-
lastStopTime?: Date;
|
|
868
|
-
recording?: boolean;
|
|
869
|
-
lastStatus?: RecorderStatus;
|
|
870
|
-
lastErrorCode?: string;
|
|
871
|
-
lastErrorMessage?: string;
|
|
872
|
-
lastStatusChangeTime?: Date;
|
|
865
|
+
name?: string | undefined;
|
|
866
|
+
lastStartTime?: Date | undefined;
|
|
867
|
+
lastStopTime?: Date | undefined;
|
|
868
|
+
recording?: boolean | undefined;
|
|
869
|
+
lastStatus?: RecorderStatus | undefined;
|
|
870
|
+
lastErrorCode?: string | undefined;
|
|
871
|
+
lastErrorMessage?: string | undefined;
|
|
872
|
+
lastStatusChangeTime?: Date | undefined;
|
|
873
873
|
}
|
|
874
874
|
export interface ConformancePackComplianceFilters {
|
|
875
|
-
ConfigRuleNames?: string[];
|
|
876
|
-
ComplianceType?: ConformancePackComplianceType;
|
|
875
|
+
ConfigRuleNames?: string[] | undefined;
|
|
876
|
+
ComplianceType?: ConformancePackComplianceType | undefined;
|
|
877
877
|
}
|
|
878
878
|
export interface ConformancePackComplianceScore {
|
|
879
|
-
Score?: string;
|
|
880
|
-
ConformancePackName?: string;
|
|
881
|
-
LastUpdatedTime?: Date;
|
|
879
|
+
Score?: string | undefined;
|
|
880
|
+
ConformancePackName?: string | undefined;
|
|
881
|
+
LastUpdatedTime?: Date | undefined;
|
|
882
882
|
}
|
|
883
883
|
export interface ConformancePackComplianceScoresFilters {
|
|
884
884
|
ConformancePackNames: string[] | undefined;
|
|
@@ -893,36 +893,36 @@ export interface ConformancePackInputParameter {
|
|
|
893
893
|
}
|
|
894
894
|
export interface TemplateSSMDocumentDetails {
|
|
895
895
|
DocumentName: string | undefined;
|
|
896
|
-
DocumentVersion?: string;
|
|
896
|
+
DocumentVersion?: string | undefined;
|
|
897
897
|
}
|
|
898
898
|
export interface ConformancePackDetail {
|
|
899
899
|
ConformancePackName: string | undefined;
|
|
900
900
|
ConformancePackArn: string | undefined;
|
|
901
901
|
ConformancePackId: string | undefined;
|
|
902
|
-
DeliveryS3Bucket?: string;
|
|
903
|
-
DeliveryS3KeyPrefix?: string;
|
|
904
|
-
ConformancePackInputParameters?: ConformancePackInputParameter[];
|
|
905
|
-
LastUpdateRequestedTime?: Date;
|
|
906
|
-
CreatedBy?: string;
|
|
907
|
-
TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails;
|
|
902
|
+
DeliveryS3Bucket?: string | undefined;
|
|
903
|
+
DeliveryS3KeyPrefix?: string | undefined;
|
|
904
|
+
ConformancePackInputParameters?: ConformancePackInputParameter[] | undefined;
|
|
905
|
+
LastUpdateRequestedTime?: Date | undefined;
|
|
906
|
+
CreatedBy?: string | undefined;
|
|
907
|
+
TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails | undefined;
|
|
908
908
|
}
|
|
909
909
|
export interface ConformancePackEvaluationFilters {
|
|
910
|
-
ConfigRuleNames?: string[];
|
|
911
|
-
ComplianceType?: ConformancePackComplianceType;
|
|
912
|
-
ResourceType?: string;
|
|
913
|
-
ResourceIds?: string[];
|
|
910
|
+
ConfigRuleNames?: string[] | undefined;
|
|
911
|
+
ComplianceType?: ConformancePackComplianceType | undefined;
|
|
912
|
+
ResourceType?: string | undefined;
|
|
913
|
+
ResourceIds?: string[] | undefined;
|
|
914
914
|
}
|
|
915
915
|
export interface ConformancePackEvaluationResult {
|
|
916
916
|
ComplianceType: ConformancePackComplianceType | undefined;
|
|
917
917
|
EvaluationResultIdentifier: EvaluationResultIdentifier | undefined;
|
|
918
918
|
ConfigRuleInvokedTime: Date | undefined;
|
|
919
919
|
ResultRecordedTime: Date | undefined;
|
|
920
|
-
Annotation?: string;
|
|
920
|
+
Annotation?: string | undefined;
|
|
921
921
|
}
|
|
922
922
|
export interface ConformancePackRuleCompliance {
|
|
923
|
-
ConfigRuleName?: string;
|
|
924
|
-
ComplianceType?: ConformancePackComplianceType;
|
|
925
|
-
Controls?: string[];
|
|
923
|
+
ConfigRuleName?: string | undefined;
|
|
924
|
+
ComplianceType?: ConformancePackComplianceType | undefined;
|
|
925
|
+
Controls?: string[] | undefined;
|
|
926
926
|
}
|
|
927
927
|
export declare const ConformancePackState: {
|
|
928
928
|
readonly CREATE_COMPLETE: "CREATE_COMPLETE";
|
|
@@ -939,9 +939,9 @@ export interface ConformancePackStatusDetail {
|
|
|
939
939
|
ConformancePackArn: string | undefined;
|
|
940
940
|
ConformancePackState: ConformancePackState | undefined;
|
|
941
941
|
StackArn: string | undefined;
|
|
942
|
-
ConformancePackStatusReason?: string;
|
|
942
|
+
ConformancePackStatusReason?: string | undefined;
|
|
943
943
|
LastUpdateRequestedTime: Date | undefined;
|
|
944
|
-
LastUpdateCompletedTime?: Date;
|
|
944
|
+
LastUpdateCompletedTime?: Date | undefined;
|
|
945
945
|
}
|
|
946
946
|
export declare class ConformancePackTemplateValidationException extends __BaseException {
|
|
947
947
|
readonly name: "ConformancePackTemplateValidationException";
|
|
@@ -1073,7 +1073,7 @@ export interface DeletePendingAggregationRequestRequest {
|
|
|
1073
1073
|
}
|
|
1074
1074
|
export interface DeleteRemediationConfigurationRequest {
|
|
1075
1075
|
ConfigRuleName: string | undefined;
|
|
1076
|
-
ResourceType?: string;
|
|
1076
|
+
ResourceType?: string | undefined;
|
|
1077
1077
|
}
|
|
1078
1078
|
export interface DeleteRemediationConfigurationResponse {}
|
|
1079
1079
|
export declare class InsufficientPermissionsException extends __BaseException {
|
|
@@ -1104,19 +1104,19 @@ export declare class RemediationInProgressException extends __BaseException {
|
|
|
1104
1104
|
);
|
|
1105
1105
|
}
|
|
1106
1106
|
export interface RemediationExceptionResourceKey {
|
|
1107
|
-
ResourceType?: string;
|
|
1108
|
-
ResourceId?: string;
|
|
1107
|
+
ResourceType?: string | undefined;
|
|
1108
|
+
ResourceId?: string | undefined;
|
|
1109
1109
|
}
|
|
1110
1110
|
export interface DeleteRemediationExceptionsRequest {
|
|
1111
1111
|
ConfigRuleName: string | undefined;
|
|
1112
1112
|
ResourceKeys: RemediationExceptionResourceKey[] | undefined;
|
|
1113
1113
|
}
|
|
1114
1114
|
export interface FailedDeleteRemediationExceptionsBatch {
|
|
1115
|
-
FailureMessage?: string;
|
|
1116
|
-
FailedItems?: RemediationExceptionResourceKey[];
|
|
1115
|
+
FailureMessage?: string | undefined;
|
|
1116
|
+
FailedItems?: RemediationExceptionResourceKey[] | undefined;
|
|
1117
1117
|
}
|
|
1118
1118
|
export interface DeleteRemediationExceptionsResponse {
|
|
1119
|
-
FailedBatches?: FailedDeleteRemediationExceptionsBatch[];
|
|
1119
|
+
FailedBatches?: FailedDeleteRemediationExceptionsBatch[] | undefined;
|
|
1120
1120
|
}
|
|
1121
1121
|
export declare class NoSuchRemediationExceptionException extends __BaseException {
|
|
1122
1122
|
readonly name: "NoSuchRemediationExceptionException";
|
|
@@ -1170,31 +1170,35 @@ export interface DeliverConfigSnapshotRequest {
|
|
|
1170
1170
|
deliveryChannelName: string | undefined;
|
|
1171
1171
|
}
|
|
1172
1172
|
export interface DeliverConfigSnapshotResponse {
|
|
1173
|
-
configSnapshotId?: string;
|
|
1173
|
+
configSnapshotId?: string | undefined;
|
|
1174
1174
|
}
|
|
1175
1175
|
export interface DeliveryChannel {
|
|
1176
|
-
name?: string;
|
|
1177
|
-
s3BucketName?: string;
|
|
1178
|
-
s3KeyPrefix?: string;
|
|
1179
|
-
s3KmsKeyArn?: string;
|
|
1180
|
-
snsTopicARN?: string;
|
|
1181
|
-
configSnapshotDeliveryProperties?:
|
|
1176
|
+
name?: string | undefined;
|
|
1177
|
+
s3BucketName?: string | undefined;
|
|
1178
|
+
s3KeyPrefix?: string | undefined;
|
|
1179
|
+
s3KmsKeyArn?: string | undefined;
|
|
1180
|
+
snsTopicARN?: string | undefined;
|
|
1181
|
+
configSnapshotDeliveryProperties?:
|
|
1182
|
+
| ConfigSnapshotDeliveryProperties
|
|
1183
|
+
| undefined;
|
|
1182
1184
|
}
|
|
1183
1185
|
export interface DeliveryChannelStatus {
|
|
1184
|
-
name?: string;
|
|
1185
|
-
configSnapshotDeliveryInfo?: ConfigExportDeliveryInfo;
|
|
1186
|
-
configHistoryDeliveryInfo?: ConfigExportDeliveryInfo;
|
|
1187
|
-
configStreamDeliveryInfo?: ConfigStreamDeliveryInfo;
|
|
1186
|
+
name?: string | undefined;
|
|
1187
|
+
configSnapshotDeliveryInfo?: ConfigExportDeliveryInfo | undefined;
|
|
1188
|
+
configHistoryDeliveryInfo?: ConfigExportDeliveryInfo | undefined;
|
|
1189
|
+
configStreamDeliveryInfo?: ConfigStreamDeliveryInfo | undefined;
|
|
1188
1190
|
}
|
|
1189
1191
|
export interface DescribeAggregateComplianceByConfigRulesRequest {
|
|
1190
1192
|
ConfigurationAggregatorName: string | undefined;
|
|
1191
|
-
Filters?: ConfigRuleComplianceFilters;
|
|
1192
|
-
Limit?: number;
|
|
1193
|
-
NextToken?: string;
|
|
1193
|
+
Filters?: ConfigRuleComplianceFilters | undefined;
|
|
1194
|
+
Limit?: number | undefined;
|
|
1195
|
+
NextToken?: string | undefined;
|
|
1194
1196
|
}
|
|
1195
1197
|
export interface DescribeAggregateComplianceByConfigRulesResponse {
|
|
1196
|
-
AggregateComplianceByConfigRules?:
|
|
1197
|
-
|
|
1198
|
+
AggregateComplianceByConfigRules?:
|
|
1199
|
+
| AggregateComplianceByConfigRule[]
|
|
1200
|
+
| undefined;
|
|
1201
|
+
NextToken?: string | undefined;
|
|
1198
1202
|
}
|
|
1199
1203
|
export declare class InvalidLimitException extends __BaseException {
|
|
1200
1204
|
readonly name: "InvalidLimitException";
|
|
@@ -1212,106 +1216,108 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
1212
1216
|
}
|
|
1213
1217
|
export interface DescribeAggregateComplianceByConformancePacksRequest {
|
|
1214
1218
|
ConfigurationAggregatorName: string | undefined;
|
|
1215
|
-
Filters?: AggregateConformancePackComplianceFilters;
|
|
1216
|
-
Limit?: number;
|
|
1217
|
-
NextToken?: string;
|
|
1219
|
+
Filters?: AggregateConformancePackComplianceFilters | undefined;
|
|
1220
|
+
Limit?: number | undefined;
|
|
1221
|
+
NextToken?: string | undefined;
|
|
1218
1222
|
}
|
|
1219
1223
|
export interface DescribeAggregateComplianceByConformancePacksResponse {
|
|
1220
|
-
AggregateComplianceByConformancePacks?:
|
|
1221
|
-
|
|
1224
|
+
AggregateComplianceByConformancePacks?:
|
|
1225
|
+
| AggregateComplianceByConformancePack[]
|
|
1226
|
+
| undefined;
|
|
1227
|
+
NextToken?: string | undefined;
|
|
1222
1228
|
}
|
|
1223
1229
|
export interface DescribeAggregationAuthorizationsRequest {
|
|
1224
|
-
Limit?: number;
|
|
1225
|
-
NextToken?: string;
|
|
1230
|
+
Limit?: number | undefined;
|
|
1231
|
+
NextToken?: string | undefined;
|
|
1226
1232
|
}
|
|
1227
1233
|
export interface DescribeAggregationAuthorizationsResponse {
|
|
1228
|
-
AggregationAuthorizations?: AggregationAuthorization[];
|
|
1229
|
-
NextToken?: string;
|
|
1234
|
+
AggregationAuthorizations?: AggregationAuthorization[] | undefined;
|
|
1235
|
+
NextToken?: string | undefined;
|
|
1230
1236
|
}
|
|
1231
1237
|
export interface DescribeComplianceByConfigRuleRequest {
|
|
1232
|
-
ConfigRuleNames?: string[];
|
|
1233
|
-
ComplianceTypes?: ComplianceType[];
|
|
1234
|
-
NextToken?: string;
|
|
1238
|
+
ConfigRuleNames?: string[] | undefined;
|
|
1239
|
+
ComplianceTypes?: ComplianceType[] | undefined;
|
|
1240
|
+
NextToken?: string | undefined;
|
|
1235
1241
|
}
|
|
1236
1242
|
export interface DescribeComplianceByConfigRuleResponse {
|
|
1237
|
-
ComplianceByConfigRules?: ComplianceByConfigRule[];
|
|
1238
|
-
NextToken?: string;
|
|
1243
|
+
ComplianceByConfigRules?: ComplianceByConfigRule[] | undefined;
|
|
1244
|
+
NextToken?: string | undefined;
|
|
1239
1245
|
}
|
|
1240
1246
|
export interface DescribeComplianceByResourceRequest {
|
|
1241
|
-
ResourceType?: string;
|
|
1242
|
-
ResourceId?: string;
|
|
1243
|
-
ComplianceTypes?: ComplianceType[];
|
|
1244
|
-
Limit?: number;
|
|
1245
|
-
NextToken?: string;
|
|
1247
|
+
ResourceType?: string | undefined;
|
|
1248
|
+
ResourceId?: string | undefined;
|
|
1249
|
+
ComplianceTypes?: ComplianceType[] | undefined;
|
|
1250
|
+
Limit?: number | undefined;
|
|
1251
|
+
NextToken?: string | undefined;
|
|
1246
1252
|
}
|
|
1247
1253
|
export interface DescribeComplianceByResourceResponse {
|
|
1248
|
-
ComplianceByResources?: ComplianceByResource[];
|
|
1249
|
-
NextToken?: string;
|
|
1254
|
+
ComplianceByResources?: ComplianceByResource[] | undefined;
|
|
1255
|
+
NextToken?: string | undefined;
|
|
1250
1256
|
}
|
|
1251
1257
|
export interface DescribeConfigRuleEvaluationStatusRequest {
|
|
1252
|
-
ConfigRuleNames?: string[];
|
|
1253
|
-
NextToken?: string;
|
|
1254
|
-
Limit?: number;
|
|
1258
|
+
ConfigRuleNames?: string[] | undefined;
|
|
1259
|
+
NextToken?: string | undefined;
|
|
1260
|
+
Limit?: number | undefined;
|
|
1255
1261
|
}
|
|
1256
1262
|
export interface DescribeConfigRuleEvaluationStatusResponse {
|
|
1257
|
-
ConfigRulesEvaluationStatus?: ConfigRuleEvaluationStatus[];
|
|
1258
|
-
NextToken?: string;
|
|
1263
|
+
ConfigRulesEvaluationStatus?: ConfigRuleEvaluationStatus[] | undefined;
|
|
1264
|
+
NextToken?: string | undefined;
|
|
1259
1265
|
}
|
|
1260
1266
|
export interface DescribeConfigRulesFilters {
|
|
1261
|
-
EvaluationMode?: EvaluationMode;
|
|
1267
|
+
EvaluationMode?: EvaluationMode | undefined;
|
|
1262
1268
|
}
|
|
1263
1269
|
export interface DescribeConfigRulesRequest {
|
|
1264
|
-
ConfigRuleNames?: string[];
|
|
1265
|
-
NextToken?: string;
|
|
1266
|
-
Filters?: DescribeConfigRulesFilters;
|
|
1270
|
+
ConfigRuleNames?: string[] | undefined;
|
|
1271
|
+
NextToken?: string | undefined;
|
|
1272
|
+
Filters?: DescribeConfigRulesFilters | undefined;
|
|
1267
1273
|
}
|
|
1268
1274
|
export interface DescribeConfigRulesResponse {
|
|
1269
|
-
ConfigRules?: ConfigRule[];
|
|
1270
|
-
NextToken?: string;
|
|
1275
|
+
ConfigRules?: ConfigRule[] | undefined;
|
|
1276
|
+
NextToken?: string | undefined;
|
|
1271
1277
|
}
|
|
1272
1278
|
export interface DescribeConfigurationAggregatorsRequest {
|
|
1273
|
-
ConfigurationAggregatorNames?: string[];
|
|
1274
|
-
NextToken?: string;
|
|
1275
|
-
Limit?: number;
|
|
1279
|
+
ConfigurationAggregatorNames?: string[] | undefined;
|
|
1280
|
+
NextToken?: string | undefined;
|
|
1281
|
+
Limit?: number | undefined;
|
|
1276
1282
|
}
|
|
1277
1283
|
export interface DescribeConfigurationAggregatorsResponse {
|
|
1278
|
-
ConfigurationAggregators?: ConfigurationAggregator[];
|
|
1279
|
-
NextToken?: string;
|
|
1284
|
+
ConfigurationAggregators?: ConfigurationAggregator[] | undefined;
|
|
1285
|
+
NextToken?: string | undefined;
|
|
1280
1286
|
}
|
|
1281
1287
|
export interface DescribeConfigurationAggregatorSourcesStatusRequest {
|
|
1282
1288
|
ConfigurationAggregatorName: string | undefined;
|
|
1283
|
-
UpdateStatus?: AggregatedSourceStatusType[];
|
|
1284
|
-
NextToken?: string;
|
|
1285
|
-
Limit?: number;
|
|
1289
|
+
UpdateStatus?: AggregatedSourceStatusType[] | undefined;
|
|
1290
|
+
NextToken?: string | undefined;
|
|
1291
|
+
Limit?: number | undefined;
|
|
1286
1292
|
}
|
|
1287
1293
|
export interface DescribeConfigurationAggregatorSourcesStatusResponse {
|
|
1288
|
-
AggregatedSourceStatusList?: AggregatedSourceStatus[];
|
|
1289
|
-
NextToken?: string;
|
|
1294
|
+
AggregatedSourceStatusList?: AggregatedSourceStatus[] | undefined;
|
|
1295
|
+
NextToken?: string | undefined;
|
|
1290
1296
|
}
|
|
1291
1297
|
export interface DescribeConfigurationRecordersRequest {
|
|
1292
|
-
ConfigurationRecorderNames?: string[];
|
|
1298
|
+
ConfigurationRecorderNames?: string[] | undefined;
|
|
1293
1299
|
}
|
|
1294
1300
|
export interface DescribeConfigurationRecordersResponse {
|
|
1295
|
-
ConfigurationRecorders?: ConfigurationRecorder[];
|
|
1301
|
+
ConfigurationRecorders?: ConfigurationRecorder[] | undefined;
|
|
1296
1302
|
}
|
|
1297
1303
|
export interface DescribeConfigurationRecorderStatusRequest {
|
|
1298
|
-
ConfigurationRecorderNames?: string[];
|
|
1304
|
+
ConfigurationRecorderNames?: string[] | undefined;
|
|
1299
1305
|
}
|
|
1300
1306
|
export interface DescribeConfigurationRecorderStatusResponse {
|
|
1301
|
-
ConfigurationRecordersStatus?: ConfigurationRecorderStatus[];
|
|
1307
|
+
ConfigurationRecordersStatus?: ConfigurationRecorderStatus[] | undefined;
|
|
1302
1308
|
}
|
|
1303
1309
|
export interface DescribeConformancePackComplianceRequest {
|
|
1304
1310
|
ConformancePackName: string | undefined;
|
|
1305
|
-
Filters?: ConformancePackComplianceFilters;
|
|
1306
|
-
Limit?: number;
|
|
1307
|
-
NextToken?: string;
|
|
1311
|
+
Filters?: ConformancePackComplianceFilters | undefined;
|
|
1312
|
+
Limit?: number | undefined;
|
|
1313
|
+
NextToken?: string | undefined;
|
|
1308
1314
|
}
|
|
1309
1315
|
export interface DescribeConformancePackComplianceResponse {
|
|
1310
1316
|
ConformancePackName: string | undefined;
|
|
1311
1317
|
ConformancePackRuleComplianceList:
|
|
1312
1318
|
| ConformancePackRuleCompliance[]
|
|
1313
1319
|
| undefined;
|
|
1314
|
-
NextToken?: string;
|
|
1320
|
+
NextToken?: string | undefined;
|
|
1315
1321
|
}
|
|
1316
1322
|
export declare class NoSuchConfigRuleInConformancePackException extends __BaseException {
|
|
1317
1323
|
readonly name: "NoSuchConfigRuleInConformancePackException";
|
|
@@ -1324,39 +1330,39 @@ export declare class NoSuchConfigRuleInConformancePackException extends __BaseEx
|
|
|
1324
1330
|
);
|
|
1325
1331
|
}
|
|
1326
1332
|
export interface DescribeConformancePacksRequest {
|
|
1327
|
-
ConformancePackNames?: string[];
|
|
1328
|
-
Limit?: number;
|
|
1329
|
-
NextToken?: string;
|
|
1333
|
+
ConformancePackNames?: string[] | undefined;
|
|
1334
|
+
Limit?: number | undefined;
|
|
1335
|
+
NextToken?: string | undefined;
|
|
1330
1336
|
}
|
|
1331
1337
|
export interface DescribeConformancePacksResponse {
|
|
1332
|
-
ConformancePackDetails?: ConformancePackDetail[];
|
|
1333
|
-
NextToken?: string;
|
|
1338
|
+
ConformancePackDetails?: ConformancePackDetail[] | undefined;
|
|
1339
|
+
NextToken?: string | undefined;
|
|
1334
1340
|
}
|
|
1335
1341
|
export interface DescribeConformancePackStatusRequest {
|
|
1336
|
-
ConformancePackNames?: string[];
|
|
1337
|
-
Limit?: number;
|
|
1338
|
-
NextToken?: string;
|
|
1342
|
+
ConformancePackNames?: string[] | undefined;
|
|
1343
|
+
Limit?: number | undefined;
|
|
1344
|
+
NextToken?: string | undefined;
|
|
1339
1345
|
}
|
|
1340
1346
|
export interface DescribeConformancePackStatusResponse {
|
|
1341
|
-
ConformancePackStatusDetails?: ConformancePackStatusDetail[];
|
|
1342
|
-
NextToken?: string;
|
|
1347
|
+
ConformancePackStatusDetails?: ConformancePackStatusDetail[] | undefined;
|
|
1348
|
+
NextToken?: string | undefined;
|
|
1343
1349
|
}
|
|
1344
1350
|
export interface DescribeDeliveryChannelsRequest {
|
|
1345
|
-
DeliveryChannelNames?: string[];
|
|
1351
|
+
DeliveryChannelNames?: string[] | undefined;
|
|
1346
1352
|
}
|
|
1347
1353
|
export interface DescribeDeliveryChannelsResponse {
|
|
1348
|
-
DeliveryChannels?: DeliveryChannel[];
|
|
1354
|
+
DeliveryChannels?: DeliveryChannel[] | undefined;
|
|
1349
1355
|
}
|
|
1350
1356
|
export interface DescribeDeliveryChannelStatusRequest {
|
|
1351
|
-
DeliveryChannelNames?: string[];
|
|
1357
|
+
DeliveryChannelNames?: string[] | undefined;
|
|
1352
1358
|
}
|
|
1353
1359
|
export interface DescribeDeliveryChannelStatusResponse {
|
|
1354
|
-
DeliveryChannelsStatus?: DeliveryChannelStatus[];
|
|
1360
|
+
DeliveryChannelsStatus?: DeliveryChannelStatus[] | undefined;
|
|
1355
1361
|
}
|
|
1356
1362
|
export interface DescribeOrganizationConfigRulesRequest {
|
|
1357
|
-
OrganizationConfigRuleNames?: string[];
|
|
1358
|
-
Limit?: number;
|
|
1359
|
-
NextToken?: string;
|
|
1363
|
+
OrganizationConfigRuleNames?: string[] | undefined;
|
|
1364
|
+
Limit?: number | undefined;
|
|
1365
|
+
NextToken?: string | undefined;
|
|
1360
1366
|
}
|
|
1361
1367
|
export declare const OrganizationConfigRuleTriggerTypeNoSN: {
|
|
1362
1368
|
readonly CONFIGURATION_ITEM_CHANGE_NOTIFICATION: "ConfigurationItemChangeNotification";
|
|
@@ -1365,16 +1371,18 @@ export declare const OrganizationConfigRuleTriggerTypeNoSN: {
|
|
|
1365
1371
|
export type OrganizationConfigRuleTriggerTypeNoSN =
|
|
1366
1372
|
(typeof OrganizationConfigRuleTriggerTypeNoSN)[keyof typeof OrganizationConfigRuleTriggerTypeNoSN];
|
|
1367
1373
|
export interface OrganizationCustomPolicyRuleMetadataNoPolicy {
|
|
1368
|
-
Description?: string;
|
|
1369
|
-
OrganizationConfigRuleTriggerTypes?:
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1374
|
+
Description?: string | undefined;
|
|
1375
|
+
OrganizationConfigRuleTriggerTypes?:
|
|
1376
|
+
| OrganizationConfigRuleTriggerTypeNoSN[]
|
|
1377
|
+
| undefined;
|
|
1378
|
+
InputParameters?: string | undefined;
|
|
1379
|
+
MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
|
|
1380
|
+
ResourceTypesScope?: string[] | undefined;
|
|
1381
|
+
ResourceIdScope?: string | undefined;
|
|
1382
|
+
TagKeyScope?: string | undefined;
|
|
1383
|
+
TagValueScope?: string | undefined;
|
|
1384
|
+
PolicyRuntime?: string | undefined;
|
|
1385
|
+
DebugLogDeliveryAccounts?: string[] | undefined;
|
|
1378
1386
|
}
|
|
1379
1387
|
export declare const OrganizationConfigRuleTriggerType: {
|
|
1380
1388
|
readonly CONFIGURATION_ITEM_CHANGE_NOTIFICATION: "ConfigurationItemChangeNotification";
|
|
@@ -1384,45 +1392,47 @@ export declare const OrganizationConfigRuleTriggerType: {
|
|
|
1384
1392
|
export type OrganizationConfigRuleTriggerType =
|
|
1385
1393
|
(typeof OrganizationConfigRuleTriggerType)[keyof typeof OrganizationConfigRuleTriggerType];
|
|
1386
1394
|
export interface OrganizationCustomRuleMetadata {
|
|
1387
|
-
Description?: string;
|
|
1395
|
+
Description?: string | undefined;
|
|
1388
1396
|
LambdaFunctionArn: string | undefined;
|
|
1389
1397
|
OrganizationConfigRuleTriggerTypes:
|
|
1390
1398
|
| OrganizationConfigRuleTriggerType[]
|
|
1391
1399
|
| undefined;
|
|
1392
|
-
InputParameters?: string;
|
|
1393
|
-
MaximumExecutionFrequency?: MaximumExecutionFrequency;
|
|
1394
|
-
ResourceTypesScope?: string[];
|
|
1395
|
-
ResourceIdScope?: string;
|
|
1396
|
-
TagKeyScope?: string;
|
|
1397
|
-
TagValueScope?: string;
|
|
1400
|
+
InputParameters?: string | undefined;
|
|
1401
|
+
MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
|
|
1402
|
+
ResourceTypesScope?: string[] | undefined;
|
|
1403
|
+
ResourceIdScope?: string | undefined;
|
|
1404
|
+
TagKeyScope?: string | undefined;
|
|
1405
|
+
TagValueScope?: string | undefined;
|
|
1398
1406
|
}
|
|
1399
1407
|
export interface OrganizationManagedRuleMetadata {
|
|
1400
|
-
Description?: string;
|
|
1408
|
+
Description?: string | undefined;
|
|
1401
1409
|
RuleIdentifier: string | undefined;
|
|
1402
|
-
InputParameters?: string;
|
|
1403
|
-
MaximumExecutionFrequency?: MaximumExecutionFrequency;
|
|
1404
|
-
ResourceTypesScope?: string[];
|
|
1405
|
-
ResourceIdScope?: string;
|
|
1406
|
-
TagKeyScope?: string;
|
|
1407
|
-
TagValueScope?: string;
|
|
1410
|
+
InputParameters?: string | undefined;
|
|
1411
|
+
MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
|
|
1412
|
+
ResourceTypesScope?: string[] | undefined;
|
|
1413
|
+
ResourceIdScope?: string | undefined;
|
|
1414
|
+
TagKeyScope?: string | undefined;
|
|
1415
|
+
TagValueScope?: string | undefined;
|
|
1408
1416
|
}
|
|
1409
1417
|
export interface OrganizationConfigRule {
|
|
1410
1418
|
OrganizationConfigRuleName: string | undefined;
|
|
1411
1419
|
OrganizationConfigRuleArn: string | undefined;
|
|
1412
|
-
OrganizationManagedRuleMetadata?: OrganizationManagedRuleMetadata;
|
|
1413
|
-
OrganizationCustomRuleMetadata?: OrganizationCustomRuleMetadata;
|
|
1414
|
-
ExcludedAccounts?: string[];
|
|
1415
|
-
LastUpdateTime?: Date;
|
|
1416
|
-
OrganizationCustomPolicyRuleMetadata?:
|
|
1420
|
+
OrganizationManagedRuleMetadata?: OrganizationManagedRuleMetadata | undefined;
|
|
1421
|
+
OrganizationCustomRuleMetadata?: OrganizationCustomRuleMetadata | undefined;
|
|
1422
|
+
ExcludedAccounts?: string[] | undefined;
|
|
1423
|
+
LastUpdateTime?: Date | undefined;
|
|
1424
|
+
OrganizationCustomPolicyRuleMetadata?:
|
|
1425
|
+
| OrganizationCustomPolicyRuleMetadataNoPolicy
|
|
1426
|
+
| undefined;
|
|
1417
1427
|
}
|
|
1418
1428
|
export interface DescribeOrganizationConfigRulesResponse {
|
|
1419
|
-
OrganizationConfigRules?: OrganizationConfigRule[];
|
|
1420
|
-
NextToken?: string;
|
|
1429
|
+
OrganizationConfigRules?: OrganizationConfigRule[] | undefined;
|
|
1430
|
+
NextToken?: string | undefined;
|
|
1421
1431
|
}
|
|
1422
1432
|
export interface DescribeOrganizationConfigRuleStatusesRequest {
|
|
1423
|
-
OrganizationConfigRuleNames?: string[];
|
|
1424
|
-
Limit?: number;
|
|
1425
|
-
NextToken?: string;
|
|
1433
|
+
OrganizationConfigRuleNames?: string[] | undefined;
|
|
1434
|
+
Limit?: number | undefined;
|
|
1435
|
+
NextToken?: string | undefined;
|
|
1426
1436
|
}
|
|
1427
1437
|
export declare const OrganizationRuleStatus: {
|
|
1428
1438
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -1440,36 +1450,36 @@ export type OrganizationRuleStatus =
|
|
|
1440
1450
|
export interface OrganizationConfigRuleStatus {
|
|
1441
1451
|
OrganizationConfigRuleName: string | undefined;
|
|
1442
1452
|
OrganizationRuleStatus: OrganizationRuleStatus | undefined;
|
|
1443
|
-
ErrorCode?: string;
|
|
1444
|
-
ErrorMessage?: string;
|
|
1445
|
-
LastUpdateTime?: Date;
|
|
1453
|
+
ErrorCode?: string | undefined;
|
|
1454
|
+
ErrorMessage?: string | undefined;
|
|
1455
|
+
LastUpdateTime?: Date | undefined;
|
|
1446
1456
|
}
|
|
1447
1457
|
export interface DescribeOrganizationConfigRuleStatusesResponse {
|
|
1448
|
-
OrganizationConfigRuleStatuses?: OrganizationConfigRuleStatus[];
|
|
1449
|
-
NextToken?: string;
|
|
1458
|
+
OrganizationConfigRuleStatuses?: OrganizationConfigRuleStatus[] | undefined;
|
|
1459
|
+
NextToken?: string | undefined;
|
|
1450
1460
|
}
|
|
1451
1461
|
export interface DescribeOrganizationConformancePacksRequest {
|
|
1452
|
-
OrganizationConformancePackNames?: string[];
|
|
1453
|
-
Limit?: number;
|
|
1454
|
-
NextToken?: string;
|
|
1462
|
+
OrganizationConformancePackNames?: string[] | undefined;
|
|
1463
|
+
Limit?: number | undefined;
|
|
1464
|
+
NextToken?: string | undefined;
|
|
1455
1465
|
}
|
|
1456
1466
|
export interface OrganizationConformancePack {
|
|
1457
1467
|
OrganizationConformancePackName: string | undefined;
|
|
1458
1468
|
OrganizationConformancePackArn: string | undefined;
|
|
1459
|
-
DeliveryS3Bucket?: string;
|
|
1460
|
-
DeliveryS3KeyPrefix?: string;
|
|
1461
|
-
ConformancePackInputParameters?: ConformancePackInputParameter[];
|
|
1462
|
-
ExcludedAccounts?: string[];
|
|
1469
|
+
DeliveryS3Bucket?: string | undefined;
|
|
1470
|
+
DeliveryS3KeyPrefix?: string | undefined;
|
|
1471
|
+
ConformancePackInputParameters?: ConformancePackInputParameter[] | undefined;
|
|
1472
|
+
ExcludedAccounts?: string[] | undefined;
|
|
1463
1473
|
LastUpdateTime: Date | undefined;
|
|
1464
1474
|
}
|
|
1465
1475
|
export interface DescribeOrganizationConformancePacksResponse {
|
|
1466
|
-
OrganizationConformancePacks?: OrganizationConformancePack[];
|
|
1467
|
-
NextToken?: string;
|
|
1476
|
+
OrganizationConformancePacks?: OrganizationConformancePack[] | undefined;
|
|
1477
|
+
NextToken?: string | undefined;
|
|
1468
1478
|
}
|
|
1469
1479
|
export interface DescribeOrganizationConformancePackStatusesRequest {
|
|
1470
|
-
OrganizationConformancePackNames?: string[];
|
|
1471
|
-
Limit?: number;
|
|
1472
|
-
NextToken?: string;
|
|
1480
|
+
OrganizationConformancePackNames?: string[] | undefined;
|
|
1481
|
+
Limit?: number | undefined;
|
|
1482
|
+
NextToken?: string | undefined;
|
|
1473
1483
|
}
|
|
1474
1484
|
export declare const OrganizationResourceStatus: {
|
|
1475
1485
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -1487,35 +1497,37 @@ export type OrganizationResourceStatus =
|
|
|
1487
1497
|
export interface OrganizationConformancePackStatus {
|
|
1488
1498
|
OrganizationConformancePackName: string | undefined;
|
|
1489
1499
|
Status: OrganizationResourceStatus | undefined;
|
|
1490
|
-
ErrorCode?: string;
|
|
1491
|
-
ErrorMessage?: string;
|
|
1492
|
-
LastUpdateTime?: Date;
|
|
1500
|
+
ErrorCode?: string | undefined;
|
|
1501
|
+
ErrorMessage?: string | undefined;
|
|
1502
|
+
LastUpdateTime?: Date | undefined;
|
|
1493
1503
|
}
|
|
1494
1504
|
export interface DescribeOrganizationConformancePackStatusesResponse {
|
|
1495
|
-
OrganizationConformancePackStatuses?:
|
|
1496
|
-
|
|
1505
|
+
OrganizationConformancePackStatuses?:
|
|
1506
|
+
| OrganizationConformancePackStatus[]
|
|
1507
|
+
| undefined;
|
|
1508
|
+
NextToken?: string | undefined;
|
|
1497
1509
|
}
|
|
1498
1510
|
export interface DescribePendingAggregationRequestsRequest {
|
|
1499
|
-
Limit?: number;
|
|
1500
|
-
NextToken?: string;
|
|
1511
|
+
Limit?: number | undefined;
|
|
1512
|
+
NextToken?: string | undefined;
|
|
1501
1513
|
}
|
|
1502
1514
|
export interface PendingAggregationRequest {
|
|
1503
|
-
RequesterAccountId?: string;
|
|
1504
|
-
RequesterAwsRegion?: string;
|
|
1515
|
+
RequesterAccountId?: string | undefined;
|
|
1516
|
+
RequesterAwsRegion?: string | undefined;
|
|
1505
1517
|
}
|
|
1506
1518
|
export interface DescribePendingAggregationRequestsResponse {
|
|
1507
|
-
PendingAggregationRequests?: PendingAggregationRequest[];
|
|
1508
|
-
NextToken?: string;
|
|
1519
|
+
PendingAggregationRequests?: PendingAggregationRequest[] | undefined;
|
|
1520
|
+
NextToken?: string | undefined;
|
|
1509
1521
|
}
|
|
1510
1522
|
export interface DescribeRemediationConfigurationsRequest {
|
|
1511
1523
|
ConfigRuleNames: string[] | undefined;
|
|
1512
1524
|
}
|
|
1513
1525
|
export interface SsmControls {
|
|
1514
|
-
ConcurrentExecutionRatePercentage?: number;
|
|
1515
|
-
ErrorPercentage?: number;
|
|
1526
|
+
ConcurrentExecutionRatePercentage?: number | undefined;
|
|
1527
|
+
ErrorPercentage?: number | undefined;
|
|
1516
1528
|
}
|
|
1517
1529
|
export interface ExecutionControls {
|
|
1518
|
-
SsmControls?: SsmControls;
|
|
1530
|
+
SsmControls?: SsmControls | undefined;
|
|
1519
1531
|
}
|
|
1520
1532
|
export declare const ResourceValueType: {
|
|
1521
1533
|
readonly RESOURCE_ID: "RESOURCE_ID";
|
|
@@ -1529,8 +1541,8 @@ export interface StaticValue {
|
|
|
1529
1541
|
Values: string[] | undefined;
|
|
1530
1542
|
}
|
|
1531
1543
|
export interface RemediationParameterValue {
|
|
1532
|
-
ResourceValue?: ResourceValue;
|
|
1533
|
-
StaticValue?: StaticValue;
|
|
1544
|
+
ResourceValue?: ResourceValue | undefined;
|
|
1545
|
+
StaticValue?: StaticValue | undefined;
|
|
1534
1546
|
}
|
|
1535
1547
|
export declare const RemediationTargetType: {
|
|
1536
1548
|
readonly SSM_DOCUMENT: "SSM_DOCUMENT";
|
|
@@ -1541,41 +1553,41 @@ export interface RemediationConfiguration {
|
|
|
1541
1553
|
ConfigRuleName: string | undefined;
|
|
1542
1554
|
TargetType: RemediationTargetType | undefined;
|
|
1543
1555
|
TargetId: string | undefined;
|
|
1544
|
-
TargetVersion?: string;
|
|
1545
|
-
Parameters?: Record<string, RemediationParameterValue
|
|
1546
|
-
ResourceType?: string;
|
|
1547
|
-
Automatic?: boolean;
|
|
1548
|
-
ExecutionControls?: ExecutionControls;
|
|
1549
|
-
MaximumAutomaticAttempts?: number;
|
|
1550
|
-
RetryAttemptSeconds?: number;
|
|
1551
|
-
Arn?: string;
|
|
1552
|
-
CreatedByService?: string;
|
|
1556
|
+
TargetVersion?: string | undefined;
|
|
1557
|
+
Parameters?: Record<string, RemediationParameterValue> | undefined;
|
|
1558
|
+
ResourceType?: string | undefined;
|
|
1559
|
+
Automatic?: boolean | undefined;
|
|
1560
|
+
ExecutionControls?: ExecutionControls | undefined;
|
|
1561
|
+
MaximumAutomaticAttempts?: number | undefined;
|
|
1562
|
+
RetryAttemptSeconds?: number | undefined;
|
|
1563
|
+
Arn?: string | undefined;
|
|
1564
|
+
CreatedByService?: string | undefined;
|
|
1553
1565
|
}
|
|
1554
1566
|
export interface DescribeRemediationConfigurationsResponse {
|
|
1555
|
-
RemediationConfigurations?: RemediationConfiguration[];
|
|
1567
|
+
RemediationConfigurations?: RemediationConfiguration[] | undefined;
|
|
1556
1568
|
}
|
|
1557
1569
|
export interface DescribeRemediationExceptionsRequest {
|
|
1558
1570
|
ConfigRuleName: string | undefined;
|
|
1559
|
-
ResourceKeys?: RemediationExceptionResourceKey[];
|
|
1560
|
-
Limit?: number;
|
|
1561
|
-
NextToken?: string;
|
|
1571
|
+
ResourceKeys?: RemediationExceptionResourceKey[] | undefined;
|
|
1572
|
+
Limit?: number | undefined;
|
|
1573
|
+
NextToken?: string | undefined;
|
|
1562
1574
|
}
|
|
1563
1575
|
export interface RemediationException {
|
|
1564
1576
|
ConfigRuleName: string | undefined;
|
|
1565
1577
|
ResourceType: string | undefined;
|
|
1566
1578
|
ResourceId: string | undefined;
|
|
1567
|
-
Message?: string;
|
|
1568
|
-
ExpirationTime?: Date;
|
|
1579
|
+
Message?: string | undefined;
|
|
1580
|
+
ExpirationTime?: Date | undefined;
|
|
1569
1581
|
}
|
|
1570
1582
|
export interface DescribeRemediationExceptionsResponse {
|
|
1571
|
-
RemediationExceptions?: RemediationException[];
|
|
1572
|
-
NextToken?: string;
|
|
1583
|
+
RemediationExceptions?: RemediationException[] | undefined;
|
|
1584
|
+
NextToken?: string | undefined;
|
|
1573
1585
|
}
|
|
1574
1586
|
export interface DescribeRemediationExecutionStatusRequest {
|
|
1575
1587
|
ConfigRuleName: string | undefined;
|
|
1576
|
-
ResourceKeys?: ResourceKey[];
|
|
1577
|
-
Limit?: number;
|
|
1578
|
-
NextToken?: string;
|
|
1588
|
+
ResourceKeys?: ResourceKey[] | undefined;
|
|
1589
|
+
Limit?: number | undefined;
|
|
1590
|
+
NextToken?: string | undefined;
|
|
1579
1591
|
}
|
|
1580
1592
|
export declare const RemediationExecutionState: {
|
|
1581
1593
|
readonly FAILED: "FAILED";
|
|
@@ -1593,52 +1605,52 @@ export declare const RemediationExecutionStepState: {
|
|
|
1593
1605
|
export type RemediationExecutionStepState =
|
|
1594
1606
|
(typeof RemediationExecutionStepState)[keyof typeof RemediationExecutionStepState];
|
|
1595
1607
|
export interface RemediationExecutionStep {
|
|
1596
|
-
Name?: string;
|
|
1597
|
-
State?: RemediationExecutionStepState;
|
|
1598
|
-
ErrorMessage?: string;
|
|
1599
|
-
StartTime?: Date;
|
|
1600
|
-
StopTime?: Date;
|
|
1608
|
+
Name?: string | undefined;
|
|
1609
|
+
State?: RemediationExecutionStepState | undefined;
|
|
1610
|
+
ErrorMessage?: string | undefined;
|
|
1611
|
+
StartTime?: Date | undefined;
|
|
1612
|
+
StopTime?: Date | undefined;
|
|
1601
1613
|
}
|
|
1602
1614
|
export interface RemediationExecutionStatus {
|
|
1603
|
-
ResourceKey?: ResourceKey;
|
|
1604
|
-
State?: RemediationExecutionState;
|
|
1605
|
-
StepDetails?: RemediationExecutionStep[];
|
|
1606
|
-
InvocationTime?: Date;
|
|
1607
|
-
LastUpdatedTime?: Date;
|
|
1615
|
+
ResourceKey?: ResourceKey | undefined;
|
|
1616
|
+
State?: RemediationExecutionState | undefined;
|
|
1617
|
+
StepDetails?: RemediationExecutionStep[] | undefined;
|
|
1618
|
+
InvocationTime?: Date | undefined;
|
|
1619
|
+
LastUpdatedTime?: Date | undefined;
|
|
1608
1620
|
}
|
|
1609
1621
|
export interface DescribeRemediationExecutionStatusResponse {
|
|
1610
|
-
RemediationExecutionStatuses?: RemediationExecutionStatus[];
|
|
1611
|
-
NextToken?: string;
|
|
1622
|
+
RemediationExecutionStatuses?: RemediationExecutionStatus[] | undefined;
|
|
1623
|
+
NextToken?: string | undefined;
|
|
1612
1624
|
}
|
|
1613
1625
|
export interface DescribeRetentionConfigurationsRequest {
|
|
1614
|
-
RetentionConfigurationNames?: string[];
|
|
1615
|
-
NextToken?: string;
|
|
1626
|
+
RetentionConfigurationNames?: string[] | undefined;
|
|
1627
|
+
NextToken?: string | undefined;
|
|
1616
1628
|
}
|
|
1617
1629
|
export interface RetentionConfiguration {
|
|
1618
1630
|
Name: string | undefined;
|
|
1619
1631
|
RetentionPeriodInDays: number | undefined;
|
|
1620
1632
|
}
|
|
1621
1633
|
export interface DescribeRetentionConfigurationsResponse {
|
|
1622
|
-
RetentionConfigurations?: RetentionConfiguration[];
|
|
1623
|
-
NextToken?: string;
|
|
1634
|
+
RetentionConfigurations?: RetentionConfiguration[] | undefined;
|
|
1635
|
+
NextToken?: string | undefined;
|
|
1624
1636
|
}
|
|
1625
1637
|
export interface Evaluation {
|
|
1626
1638
|
ComplianceResourceType: string | undefined;
|
|
1627
1639
|
ComplianceResourceId: string | undefined;
|
|
1628
1640
|
ComplianceType: ComplianceType | undefined;
|
|
1629
|
-
Annotation?: string;
|
|
1641
|
+
Annotation?: string | undefined;
|
|
1630
1642
|
OrderingTimestamp: Date | undefined;
|
|
1631
1643
|
}
|
|
1632
1644
|
export interface EvaluationContext {
|
|
1633
|
-
EvaluationContextIdentifier?: string;
|
|
1645
|
+
EvaluationContextIdentifier?: string | undefined;
|
|
1634
1646
|
}
|
|
1635
1647
|
export interface EvaluationResult {
|
|
1636
|
-
EvaluationResultIdentifier?: EvaluationResultIdentifier;
|
|
1637
|
-
ComplianceType?: ComplianceType;
|
|
1638
|
-
ResultRecordedTime?: Date;
|
|
1639
|
-
ConfigRuleInvokedTime?: Date;
|
|
1640
|
-
Annotation?: string;
|
|
1641
|
-
ResultToken?: string;
|
|
1648
|
+
EvaluationResultIdentifier?: EvaluationResultIdentifier | undefined;
|
|
1649
|
+
ComplianceType?: ComplianceType | undefined;
|
|
1650
|
+
ResultRecordedTime?: Date | undefined;
|
|
1651
|
+
ConfigRuleInvokedTime?: Date | undefined;
|
|
1652
|
+
Annotation?: string | undefined;
|
|
1653
|
+
ResultToken?: string | undefined;
|
|
1642
1654
|
}
|
|
1643
1655
|
export declare const ResourceEvaluationStatus: {
|
|
1644
1656
|
readonly FAILED: "FAILED";
|
|
@@ -1649,67 +1661,69 @@ export type ResourceEvaluationStatus =
|
|
|
1649
1661
|
(typeof ResourceEvaluationStatus)[keyof typeof ResourceEvaluationStatus];
|
|
1650
1662
|
export interface EvaluationStatus {
|
|
1651
1663
|
Status: ResourceEvaluationStatus | undefined;
|
|
1652
|
-
FailureReason?: string;
|
|
1664
|
+
FailureReason?: string | undefined;
|
|
1653
1665
|
}
|
|
1654
1666
|
export interface ExternalEvaluation {
|
|
1655
1667
|
ComplianceResourceType: string | undefined;
|
|
1656
1668
|
ComplianceResourceId: string | undefined;
|
|
1657
1669
|
ComplianceType: ComplianceType | undefined;
|
|
1658
|
-
Annotation?: string;
|
|
1670
|
+
Annotation?: string | undefined;
|
|
1659
1671
|
OrderingTimestamp: Date | undefined;
|
|
1660
1672
|
}
|
|
1661
1673
|
export interface FailedRemediationBatch {
|
|
1662
|
-
FailureMessage?: string;
|
|
1663
|
-
FailedItems?: RemediationConfiguration[];
|
|
1674
|
+
FailureMessage?: string | undefined;
|
|
1675
|
+
FailedItems?: RemediationConfiguration[] | undefined;
|
|
1664
1676
|
}
|
|
1665
1677
|
export interface FailedRemediationExceptionBatch {
|
|
1666
|
-
FailureMessage?: string;
|
|
1667
|
-
FailedItems?: RemediationException[];
|
|
1678
|
+
FailureMessage?: string | undefined;
|
|
1679
|
+
FailedItems?: RemediationException[] | undefined;
|
|
1668
1680
|
}
|
|
1669
1681
|
export interface FieldInfo {
|
|
1670
|
-
Name?: string;
|
|
1682
|
+
Name?: string | undefined;
|
|
1671
1683
|
}
|
|
1672
1684
|
export interface GetAggregateComplianceDetailsByConfigRuleRequest {
|
|
1673
1685
|
ConfigurationAggregatorName: string | undefined;
|
|
1674
1686
|
ConfigRuleName: string | undefined;
|
|
1675
1687
|
AccountId: string | undefined;
|
|
1676
1688
|
AwsRegion: string | undefined;
|
|
1677
|
-
ComplianceType?: ComplianceType;
|
|
1678
|
-
Limit?: number;
|
|
1679
|
-
NextToken?: string;
|
|
1689
|
+
ComplianceType?: ComplianceType | undefined;
|
|
1690
|
+
Limit?: number | undefined;
|
|
1691
|
+
NextToken?: string | undefined;
|
|
1680
1692
|
}
|
|
1681
1693
|
export interface GetAggregateComplianceDetailsByConfigRuleResponse {
|
|
1682
|
-
AggregateEvaluationResults?: AggregateEvaluationResult[];
|
|
1683
|
-
NextToken?: string;
|
|
1694
|
+
AggregateEvaluationResults?: AggregateEvaluationResult[] | undefined;
|
|
1695
|
+
NextToken?: string | undefined;
|
|
1684
1696
|
}
|
|
1685
1697
|
export interface GetAggregateConfigRuleComplianceSummaryRequest {
|
|
1686
1698
|
ConfigurationAggregatorName: string | undefined;
|
|
1687
|
-
Filters?: ConfigRuleComplianceSummaryFilters;
|
|
1688
|
-
GroupByKey?: ConfigRuleComplianceSummaryGroupKey;
|
|
1689
|
-
Limit?: number;
|
|
1690
|
-
NextToken?: string;
|
|
1699
|
+
Filters?: ConfigRuleComplianceSummaryFilters | undefined;
|
|
1700
|
+
GroupByKey?: ConfigRuleComplianceSummaryGroupKey | undefined;
|
|
1701
|
+
Limit?: number | undefined;
|
|
1702
|
+
NextToken?: string | undefined;
|
|
1691
1703
|
}
|
|
1692
1704
|
export interface GetAggregateConfigRuleComplianceSummaryResponse {
|
|
1693
|
-
GroupByKey?: string;
|
|
1694
|
-
AggregateComplianceCounts?: AggregateComplianceCount[];
|
|
1695
|
-
NextToken?: string;
|
|
1705
|
+
GroupByKey?: string | undefined;
|
|
1706
|
+
AggregateComplianceCounts?: AggregateComplianceCount[] | undefined;
|
|
1707
|
+
NextToken?: string | undefined;
|
|
1696
1708
|
}
|
|
1697
1709
|
export interface GetAggregateConformancePackComplianceSummaryRequest {
|
|
1698
1710
|
ConfigurationAggregatorName: string | undefined;
|
|
1699
|
-
Filters?: AggregateConformancePackComplianceSummaryFilters;
|
|
1700
|
-
GroupByKey?: AggregateConformancePackComplianceSummaryGroupKey;
|
|
1701
|
-
Limit?: number;
|
|
1702
|
-
NextToken?: string;
|
|
1711
|
+
Filters?: AggregateConformancePackComplianceSummaryFilters | undefined;
|
|
1712
|
+
GroupByKey?: AggregateConformancePackComplianceSummaryGroupKey | undefined;
|
|
1713
|
+
Limit?: number | undefined;
|
|
1714
|
+
NextToken?: string | undefined;
|
|
1703
1715
|
}
|
|
1704
1716
|
export interface GetAggregateConformancePackComplianceSummaryResponse {
|
|
1705
|
-
AggregateConformancePackComplianceSummaries?:
|
|
1706
|
-
|
|
1707
|
-
|
|
1717
|
+
AggregateConformancePackComplianceSummaries?:
|
|
1718
|
+
| AggregateConformancePackComplianceSummary[]
|
|
1719
|
+
| undefined;
|
|
1720
|
+
GroupByKey?: string | undefined;
|
|
1721
|
+
NextToken?: string | undefined;
|
|
1708
1722
|
}
|
|
1709
1723
|
export interface ResourceCountFilters {
|
|
1710
|
-
ResourceType?: ResourceType;
|
|
1711
|
-
AccountId?: string;
|
|
1712
|
-
Region?: string;
|
|
1724
|
+
ResourceType?: ResourceType | undefined;
|
|
1725
|
+
AccountId?: string | undefined;
|
|
1726
|
+
Region?: string | undefined;
|
|
1713
1727
|
}
|
|
1714
1728
|
export declare const ResourceCountGroupKey: {
|
|
1715
1729
|
readonly ACCOUNT_ID: "ACCOUNT_ID";
|
|
@@ -1720,10 +1734,10 @@ export type ResourceCountGroupKey =
|
|
|
1720
1734
|
(typeof ResourceCountGroupKey)[keyof typeof ResourceCountGroupKey];
|
|
1721
1735
|
export interface GetAggregateDiscoveredResourceCountsRequest {
|
|
1722
1736
|
ConfigurationAggregatorName: string | undefined;
|
|
1723
|
-
Filters?: ResourceCountFilters;
|
|
1724
|
-
GroupByKey?: ResourceCountGroupKey;
|
|
1725
|
-
Limit?: number;
|
|
1726
|
-
NextToken?: string;
|
|
1737
|
+
Filters?: ResourceCountFilters | undefined;
|
|
1738
|
+
GroupByKey?: ResourceCountGroupKey | undefined;
|
|
1739
|
+
Limit?: number | undefined;
|
|
1740
|
+
NextToken?: string | undefined;
|
|
1727
1741
|
}
|
|
1728
1742
|
export interface GroupedResourceCount {
|
|
1729
1743
|
GroupName: string | undefined;
|
|
@@ -1731,16 +1745,16 @@ export interface GroupedResourceCount {
|
|
|
1731
1745
|
}
|
|
1732
1746
|
export interface GetAggregateDiscoveredResourceCountsResponse {
|
|
1733
1747
|
TotalDiscoveredResources: number | undefined;
|
|
1734
|
-
GroupByKey?: string;
|
|
1735
|
-
GroupedResourceCounts?: GroupedResourceCount[];
|
|
1736
|
-
NextToken?: string;
|
|
1748
|
+
GroupByKey?: string | undefined;
|
|
1749
|
+
GroupedResourceCounts?: GroupedResourceCount[] | undefined;
|
|
1750
|
+
NextToken?: string | undefined;
|
|
1737
1751
|
}
|
|
1738
1752
|
export interface GetAggregateResourceConfigRequest {
|
|
1739
1753
|
ConfigurationAggregatorName: string | undefined;
|
|
1740
1754
|
ResourceIdentifier: AggregateResourceIdentifier | undefined;
|
|
1741
1755
|
}
|
|
1742
1756
|
export interface GetAggregateResourceConfigResponse {
|
|
1743
|
-
ConfigurationItem?: ConfigurationItem;
|
|
1757
|
+
ConfigurationItem?: ConfigurationItem | undefined;
|
|
1744
1758
|
}
|
|
1745
1759
|
export declare class OversizedConfigurationItemException extends __BaseException {
|
|
1746
1760
|
readonly name: "OversizedConfigurationItemException";
|
|
@@ -1761,73 +1775,79 @@ export declare class ResourceNotDiscoveredException extends __BaseException {
|
|
|
1761
1775
|
}
|
|
1762
1776
|
export interface GetComplianceDetailsByConfigRuleRequest {
|
|
1763
1777
|
ConfigRuleName: string | undefined;
|
|
1764
|
-
ComplianceTypes?: ComplianceType[];
|
|
1765
|
-
Limit?: number;
|
|
1766
|
-
NextToken?: string;
|
|
1778
|
+
ComplianceTypes?: ComplianceType[] | undefined;
|
|
1779
|
+
Limit?: number | undefined;
|
|
1780
|
+
NextToken?: string | undefined;
|
|
1767
1781
|
}
|
|
1768
1782
|
export interface GetComplianceDetailsByConfigRuleResponse {
|
|
1769
|
-
EvaluationResults?: EvaluationResult[];
|
|
1770
|
-
NextToken?: string;
|
|
1783
|
+
EvaluationResults?: EvaluationResult[] | undefined;
|
|
1784
|
+
NextToken?: string | undefined;
|
|
1771
1785
|
}
|
|
1772
1786
|
export interface GetComplianceDetailsByResourceRequest {
|
|
1773
|
-
ResourceType?: string;
|
|
1774
|
-
ResourceId?: string;
|
|
1775
|
-
ComplianceTypes?: ComplianceType[];
|
|
1776
|
-
NextToken?: string;
|
|
1777
|
-
ResourceEvaluationId?: string;
|
|
1787
|
+
ResourceType?: string | undefined;
|
|
1788
|
+
ResourceId?: string | undefined;
|
|
1789
|
+
ComplianceTypes?: ComplianceType[] | undefined;
|
|
1790
|
+
NextToken?: string | undefined;
|
|
1791
|
+
ResourceEvaluationId?: string | undefined;
|
|
1778
1792
|
}
|
|
1779
1793
|
export interface GetComplianceDetailsByResourceResponse {
|
|
1780
|
-
EvaluationResults?: EvaluationResult[];
|
|
1781
|
-
NextToken?: string;
|
|
1794
|
+
EvaluationResults?: EvaluationResult[] | undefined;
|
|
1795
|
+
NextToken?: string | undefined;
|
|
1782
1796
|
}
|
|
1783
1797
|
export interface GetComplianceSummaryByConfigRuleResponse {
|
|
1784
|
-
ComplianceSummary?: ComplianceSummary;
|
|
1798
|
+
ComplianceSummary?: ComplianceSummary | undefined;
|
|
1785
1799
|
}
|
|
1786
1800
|
export interface GetComplianceSummaryByResourceTypeRequest {
|
|
1787
|
-
ResourceTypes?: string[];
|
|
1801
|
+
ResourceTypes?: string[] | undefined;
|
|
1788
1802
|
}
|
|
1789
1803
|
export interface GetComplianceSummaryByResourceTypeResponse {
|
|
1790
|
-
ComplianceSummariesByResourceType?:
|
|
1804
|
+
ComplianceSummariesByResourceType?:
|
|
1805
|
+
| ComplianceSummaryByResourceType[]
|
|
1806
|
+
| undefined;
|
|
1791
1807
|
}
|
|
1792
1808
|
export interface GetConformancePackComplianceDetailsRequest {
|
|
1793
1809
|
ConformancePackName: string | undefined;
|
|
1794
|
-
Filters?: ConformancePackEvaluationFilters;
|
|
1795
|
-
Limit?: number;
|
|
1796
|
-
NextToken?: string;
|
|
1810
|
+
Filters?: ConformancePackEvaluationFilters | undefined;
|
|
1811
|
+
Limit?: number | undefined;
|
|
1812
|
+
NextToken?: string | undefined;
|
|
1797
1813
|
}
|
|
1798
1814
|
export interface GetConformancePackComplianceDetailsResponse {
|
|
1799
1815
|
ConformancePackName: string | undefined;
|
|
1800
|
-
ConformancePackRuleEvaluationResults?:
|
|
1801
|
-
|
|
1816
|
+
ConformancePackRuleEvaluationResults?:
|
|
1817
|
+
| ConformancePackEvaluationResult[]
|
|
1818
|
+
| undefined;
|
|
1819
|
+
NextToken?: string | undefined;
|
|
1802
1820
|
}
|
|
1803
1821
|
export interface GetConformancePackComplianceSummaryRequest {
|
|
1804
1822
|
ConformancePackNames: string[] | undefined;
|
|
1805
|
-
Limit?: number;
|
|
1806
|
-
NextToken?: string;
|
|
1823
|
+
Limit?: number | undefined;
|
|
1824
|
+
NextToken?: string | undefined;
|
|
1807
1825
|
}
|
|
1808
1826
|
export interface GetConformancePackComplianceSummaryResponse {
|
|
1809
|
-
ConformancePackComplianceSummaryList?:
|
|
1810
|
-
|
|
1827
|
+
ConformancePackComplianceSummaryList?:
|
|
1828
|
+
| ConformancePackComplianceSummary[]
|
|
1829
|
+
| undefined;
|
|
1830
|
+
NextToken?: string | undefined;
|
|
1811
1831
|
}
|
|
1812
1832
|
export interface GetCustomRulePolicyRequest {
|
|
1813
|
-
ConfigRuleName?: string;
|
|
1833
|
+
ConfigRuleName?: string | undefined;
|
|
1814
1834
|
}
|
|
1815
1835
|
export interface GetCustomRulePolicyResponse {
|
|
1816
|
-
PolicyText?: string;
|
|
1836
|
+
PolicyText?: string | undefined;
|
|
1817
1837
|
}
|
|
1818
1838
|
export interface GetDiscoveredResourceCountsRequest {
|
|
1819
|
-
resourceTypes?: string[];
|
|
1820
|
-
limit?: number;
|
|
1821
|
-
nextToken?: string;
|
|
1839
|
+
resourceTypes?: string[] | undefined;
|
|
1840
|
+
limit?: number | undefined;
|
|
1841
|
+
nextToken?: string | undefined;
|
|
1822
1842
|
}
|
|
1823
1843
|
export interface ResourceCount {
|
|
1824
|
-
resourceType?: ResourceType;
|
|
1825
|
-
count?: number;
|
|
1844
|
+
resourceType?: ResourceType | undefined;
|
|
1845
|
+
count?: number | undefined;
|
|
1826
1846
|
}
|
|
1827
1847
|
export interface GetDiscoveredResourceCountsResponse {
|
|
1828
|
-
totalDiscoveredResources?: number;
|
|
1829
|
-
resourceCounts?: ResourceCount[];
|
|
1830
|
-
nextToken?: string;
|
|
1848
|
+
totalDiscoveredResources?: number | undefined;
|
|
1849
|
+
resourceCounts?: ResourceCount[] | undefined;
|
|
1850
|
+
nextToken?: string | undefined;
|
|
1831
1851
|
}
|
|
1832
1852
|
export declare const MemberAccountRuleStatus: {
|
|
1833
1853
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -1843,26 +1863,26 @@ export declare const MemberAccountRuleStatus: {
|
|
|
1843
1863
|
export type MemberAccountRuleStatus =
|
|
1844
1864
|
(typeof MemberAccountRuleStatus)[keyof typeof MemberAccountRuleStatus];
|
|
1845
1865
|
export interface StatusDetailFilters {
|
|
1846
|
-
AccountId?: string;
|
|
1847
|
-
MemberAccountRuleStatus?: MemberAccountRuleStatus;
|
|
1866
|
+
AccountId?: string | undefined;
|
|
1867
|
+
MemberAccountRuleStatus?: MemberAccountRuleStatus | undefined;
|
|
1848
1868
|
}
|
|
1849
1869
|
export interface GetOrganizationConfigRuleDetailedStatusRequest {
|
|
1850
1870
|
OrganizationConfigRuleName: string | undefined;
|
|
1851
|
-
Filters?: StatusDetailFilters;
|
|
1852
|
-
Limit?: number;
|
|
1853
|
-
NextToken?: string;
|
|
1871
|
+
Filters?: StatusDetailFilters | undefined;
|
|
1872
|
+
Limit?: number | undefined;
|
|
1873
|
+
NextToken?: string | undefined;
|
|
1854
1874
|
}
|
|
1855
1875
|
export interface MemberAccountStatus {
|
|
1856
1876
|
AccountId: string | undefined;
|
|
1857
1877
|
ConfigRuleName: string | undefined;
|
|
1858
1878
|
MemberAccountRuleStatus: MemberAccountRuleStatus | undefined;
|
|
1859
|
-
ErrorCode?: string;
|
|
1860
|
-
ErrorMessage?: string;
|
|
1861
|
-
LastUpdateTime?: Date;
|
|
1879
|
+
ErrorCode?: string | undefined;
|
|
1880
|
+
ErrorMessage?: string | undefined;
|
|
1881
|
+
LastUpdateTime?: Date | undefined;
|
|
1862
1882
|
}
|
|
1863
1883
|
export interface GetOrganizationConfigRuleDetailedStatusResponse {
|
|
1864
|
-
OrganizationConfigRuleDetailedStatus?: MemberAccountStatus[];
|
|
1865
|
-
NextToken?: string;
|
|
1884
|
+
OrganizationConfigRuleDetailedStatus?: MemberAccountStatus[] | undefined;
|
|
1885
|
+
NextToken?: string | undefined;
|
|
1866
1886
|
}
|
|
1867
1887
|
export declare const OrganizationResourceDetailedStatus: {
|
|
1868
1888
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -1878,45 +1898,47 @@ export declare const OrganizationResourceDetailedStatus: {
|
|
|
1878
1898
|
export type OrganizationResourceDetailedStatus =
|
|
1879
1899
|
(typeof OrganizationResourceDetailedStatus)[keyof typeof OrganizationResourceDetailedStatus];
|
|
1880
1900
|
export interface OrganizationResourceDetailedStatusFilters {
|
|
1881
|
-
AccountId?: string;
|
|
1882
|
-
Status?: OrganizationResourceDetailedStatus;
|
|
1901
|
+
AccountId?: string | undefined;
|
|
1902
|
+
Status?: OrganizationResourceDetailedStatus | undefined;
|
|
1883
1903
|
}
|
|
1884
1904
|
export interface GetOrganizationConformancePackDetailedStatusRequest {
|
|
1885
1905
|
OrganizationConformancePackName: string | undefined;
|
|
1886
|
-
Filters?: OrganizationResourceDetailedStatusFilters;
|
|
1887
|
-
Limit?: number;
|
|
1888
|
-
NextToken?: string;
|
|
1906
|
+
Filters?: OrganizationResourceDetailedStatusFilters | undefined;
|
|
1907
|
+
Limit?: number | undefined;
|
|
1908
|
+
NextToken?: string | undefined;
|
|
1889
1909
|
}
|
|
1890
1910
|
export interface OrganizationConformancePackDetailedStatus {
|
|
1891
1911
|
AccountId: string | undefined;
|
|
1892
1912
|
ConformancePackName: string | undefined;
|
|
1893
1913
|
Status: OrganizationResourceDetailedStatus | undefined;
|
|
1894
|
-
ErrorCode?: string;
|
|
1895
|
-
ErrorMessage?: string;
|
|
1896
|
-
LastUpdateTime?: Date;
|
|
1914
|
+
ErrorCode?: string | undefined;
|
|
1915
|
+
ErrorMessage?: string | undefined;
|
|
1916
|
+
LastUpdateTime?: Date | undefined;
|
|
1897
1917
|
}
|
|
1898
1918
|
export interface GetOrganizationConformancePackDetailedStatusResponse {
|
|
1899
|
-
OrganizationConformancePackDetailedStatuses?:
|
|
1900
|
-
|
|
1919
|
+
OrganizationConformancePackDetailedStatuses?:
|
|
1920
|
+
| OrganizationConformancePackDetailedStatus[]
|
|
1921
|
+
| undefined;
|
|
1922
|
+
NextToken?: string | undefined;
|
|
1901
1923
|
}
|
|
1902
1924
|
export interface GetOrganizationCustomRulePolicyRequest {
|
|
1903
1925
|
OrganizationConfigRuleName: string | undefined;
|
|
1904
1926
|
}
|
|
1905
1927
|
export interface GetOrganizationCustomRulePolicyResponse {
|
|
1906
|
-
PolicyText?: string;
|
|
1928
|
+
PolicyText?: string | undefined;
|
|
1907
1929
|
}
|
|
1908
1930
|
export interface GetResourceConfigHistoryRequest {
|
|
1909
1931
|
resourceType: ResourceType | undefined;
|
|
1910
1932
|
resourceId: string | undefined;
|
|
1911
|
-
laterTime?: Date;
|
|
1912
|
-
earlierTime?: Date;
|
|
1913
|
-
chronologicalOrder?: ChronologicalOrder;
|
|
1914
|
-
limit?: number;
|
|
1915
|
-
nextToken?: string;
|
|
1933
|
+
laterTime?: Date | undefined;
|
|
1934
|
+
earlierTime?: Date | undefined;
|
|
1935
|
+
chronologicalOrder?: ChronologicalOrder | undefined;
|
|
1936
|
+
limit?: number | undefined;
|
|
1937
|
+
nextToken?: string | undefined;
|
|
1916
1938
|
}
|
|
1917
1939
|
export interface GetResourceConfigHistoryResponse {
|
|
1918
|
-
configurationItems?: ConfigurationItem[];
|
|
1919
|
-
nextToken?: string;
|
|
1940
|
+
configurationItems?: ConfigurationItem[] | undefined;
|
|
1941
|
+
nextToken?: string | undefined;
|
|
1920
1942
|
}
|
|
1921
1943
|
export declare class InvalidTimeRangeException extends __BaseException {
|
|
1922
1944
|
readonly name: "InvalidTimeRangeException";
|
|
@@ -1937,29 +1959,29 @@ export interface ResourceDetails {
|
|
|
1937
1959
|
ResourceId: string | undefined;
|
|
1938
1960
|
ResourceType: string | undefined;
|
|
1939
1961
|
ResourceConfiguration: string | undefined;
|
|
1940
|
-
ResourceConfigurationSchemaType?: ResourceConfigurationSchemaType;
|
|
1962
|
+
ResourceConfigurationSchemaType?: ResourceConfigurationSchemaType | undefined;
|
|
1941
1963
|
}
|
|
1942
1964
|
export interface GetResourceEvaluationSummaryResponse {
|
|
1943
|
-
ResourceEvaluationId?: string;
|
|
1944
|
-
EvaluationMode?: EvaluationMode;
|
|
1945
|
-
EvaluationStatus?: EvaluationStatus;
|
|
1946
|
-
EvaluationStartTimestamp?: Date;
|
|
1947
|
-
Compliance?: ComplianceType;
|
|
1948
|
-
EvaluationContext?: EvaluationContext;
|
|
1949
|
-
ResourceDetails?: ResourceDetails;
|
|
1965
|
+
ResourceEvaluationId?: string | undefined;
|
|
1966
|
+
EvaluationMode?: EvaluationMode | undefined;
|
|
1967
|
+
EvaluationStatus?: EvaluationStatus | undefined;
|
|
1968
|
+
EvaluationStartTimestamp?: Date | undefined;
|
|
1969
|
+
Compliance?: ComplianceType | undefined;
|
|
1970
|
+
EvaluationContext?: EvaluationContext | undefined;
|
|
1971
|
+
ResourceDetails?: ResourceDetails | undefined;
|
|
1950
1972
|
}
|
|
1951
1973
|
export interface GetStoredQueryRequest {
|
|
1952
1974
|
QueryName: string | undefined;
|
|
1953
1975
|
}
|
|
1954
1976
|
export interface StoredQuery {
|
|
1955
|
-
QueryId?: string;
|
|
1956
|
-
QueryArn?: string;
|
|
1977
|
+
QueryId?: string | undefined;
|
|
1978
|
+
QueryArn?: string | undefined;
|
|
1957
1979
|
QueryName: string | undefined;
|
|
1958
|
-
Description?: string;
|
|
1959
|
-
Expression?: string;
|
|
1980
|
+
Description?: string | undefined;
|
|
1981
|
+
Expression?: string | undefined;
|
|
1960
1982
|
}
|
|
1961
1983
|
export interface GetStoredQueryResponse {
|
|
1962
|
-
StoredQuery?: StoredQuery;
|
|
1984
|
+
StoredQuery?: StoredQuery | undefined;
|
|
1963
1985
|
}
|
|
1964
1986
|
export declare class IdempotentParameterMismatch extends __BaseException {
|
|
1965
1987
|
readonly name: "IdempotentParameterMismatch";
|
|
@@ -2055,21 +2077,21 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
2055
2077
|
);
|
|
2056
2078
|
}
|
|
2057
2079
|
export interface ResourceFilters {
|
|
2058
|
-
AccountId?: string;
|
|
2059
|
-
ResourceId?: string;
|
|
2060
|
-
ResourceName?: string;
|
|
2061
|
-
Region?: string;
|
|
2080
|
+
AccountId?: string | undefined;
|
|
2081
|
+
ResourceId?: string | undefined;
|
|
2082
|
+
ResourceName?: string | undefined;
|
|
2083
|
+
Region?: string | undefined;
|
|
2062
2084
|
}
|
|
2063
2085
|
export interface ListAggregateDiscoveredResourcesRequest {
|
|
2064
2086
|
ConfigurationAggregatorName: string | undefined;
|
|
2065
2087
|
ResourceType: ResourceType | undefined;
|
|
2066
|
-
Filters?: ResourceFilters;
|
|
2067
|
-
Limit?: number;
|
|
2068
|
-
NextToken?: string;
|
|
2088
|
+
Filters?: ResourceFilters | undefined;
|
|
2089
|
+
Limit?: number | undefined;
|
|
2090
|
+
NextToken?: string | undefined;
|
|
2069
2091
|
}
|
|
2070
2092
|
export interface ListAggregateDiscoveredResourcesResponse {
|
|
2071
|
-
ResourceIdentifiers?: AggregateResourceIdentifier[];
|
|
2072
|
-
NextToken?: string;
|
|
2093
|
+
ResourceIdentifiers?: AggregateResourceIdentifier[] | undefined;
|
|
2094
|
+
NextToken?: string | undefined;
|
|
2073
2095
|
}
|
|
2074
2096
|
export declare const SortBy: {
|
|
2075
2097
|
readonly SCORE: "SCORE";
|
|
@@ -2081,73 +2103,73 @@ export declare const SortOrder: {
|
|
|
2081
2103
|
};
|
|
2082
2104
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2083
2105
|
export interface ListConformancePackComplianceScoresRequest {
|
|
2084
|
-
Filters?: ConformancePackComplianceScoresFilters;
|
|
2085
|
-
SortOrder?: SortOrder;
|
|
2086
|
-
SortBy?: SortBy;
|
|
2087
|
-
Limit?: number;
|
|
2088
|
-
NextToken?: string;
|
|
2106
|
+
Filters?: ConformancePackComplianceScoresFilters | undefined;
|
|
2107
|
+
SortOrder?: SortOrder | undefined;
|
|
2108
|
+
SortBy?: SortBy | undefined;
|
|
2109
|
+
Limit?: number | undefined;
|
|
2110
|
+
NextToken?: string | undefined;
|
|
2089
2111
|
}
|
|
2090
2112
|
export interface ListConformancePackComplianceScoresResponse {
|
|
2091
|
-
NextToken?: string;
|
|
2113
|
+
NextToken?: string | undefined;
|
|
2092
2114
|
ConformancePackComplianceScores: ConformancePackComplianceScore[] | undefined;
|
|
2093
2115
|
}
|
|
2094
2116
|
export interface ListDiscoveredResourcesRequest {
|
|
2095
2117
|
resourceType: ResourceType | undefined;
|
|
2096
|
-
resourceIds?: string[];
|
|
2097
|
-
resourceName?: string;
|
|
2098
|
-
limit?: number;
|
|
2099
|
-
includeDeletedResources?: boolean;
|
|
2100
|
-
nextToken?: string;
|
|
2118
|
+
resourceIds?: string[] | undefined;
|
|
2119
|
+
resourceName?: string | undefined;
|
|
2120
|
+
limit?: number | undefined;
|
|
2121
|
+
includeDeletedResources?: boolean | undefined;
|
|
2122
|
+
nextToken?: string | undefined;
|
|
2101
2123
|
}
|
|
2102
2124
|
export interface ResourceIdentifier {
|
|
2103
|
-
resourceType?: ResourceType;
|
|
2104
|
-
resourceId?: string;
|
|
2105
|
-
resourceName?: string;
|
|
2106
|
-
resourceDeletionTime?: Date;
|
|
2125
|
+
resourceType?: ResourceType | undefined;
|
|
2126
|
+
resourceId?: string | undefined;
|
|
2127
|
+
resourceName?: string | undefined;
|
|
2128
|
+
resourceDeletionTime?: Date | undefined;
|
|
2107
2129
|
}
|
|
2108
2130
|
export interface ListDiscoveredResourcesResponse {
|
|
2109
|
-
resourceIdentifiers?: ResourceIdentifier[];
|
|
2110
|
-
nextToken?: string;
|
|
2131
|
+
resourceIdentifiers?: ResourceIdentifier[] | undefined;
|
|
2132
|
+
nextToken?: string | undefined;
|
|
2111
2133
|
}
|
|
2112
2134
|
export interface TimeWindow {
|
|
2113
|
-
StartTime?: Date;
|
|
2114
|
-
EndTime?: Date;
|
|
2135
|
+
StartTime?: Date | undefined;
|
|
2136
|
+
EndTime?: Date | undefined;
|
|
2115
2137
|
}
|
|
2116
2138
|
export interface ResourceEvaluationFilters {
|
|
2117
|
-
EvaluationMode?: EvaluationMode;
|
|
2118
|
-
TimeWindow?: TimeWindow;
|
|
2119
|
-
EvaluationContextIdentifier?: string;
|
|
2139
|
+
EvaluationMode?: EvaluationMode | undefined;
|
|
2140
|
+
TimeWindow?: TimeWindow | undefined;
|
|
2141
|
+
EvaluationContextIdentifier?: string | undefined;
|
|
2120
2142
|
}
|
|
2121
2143
|
export interface ListResourceEvaluationsRequest {
|
|
2122
|
-
Filters?: ResourceEvaluationFilters;
|
|
2123
|
-
Limit?: number;
|
|
2124
|
-
NextToken?: string;
|
|
2144
|
+
Filters?: ResourceEvaluationFilters | undefined;
|
|
2145
|
+
Limit?: number | undefined;
|
|
2146
|
+
NextToken?: string | undefined;
|
|
2125
2147
|
}
|
|
2126
2148
|
export interface ResourceEvaluation {
|
|
2127
|
-
ResourceEvaluationId?: string;
|
|
2128
|
-
EvaluationMode?: EvaluationMode;
|
|
2129
|
-
EvaluationStartTimestamp?: Date;
|
|
2149
|
+
ResourceEvaluationId?: string | undefined;
|
|
2150
|
+
EvaluationMode?: EvaluationMode | undefined;
|
|
2151
|
+
EvaluationStartTimestamp?: Date | undefined;
|
|
2130
2152
|
}
|
|
2131
2153
|
export interface ListResourceEvaluationsResponse {
|
|
2132
|
-
ResourceEvaluations?: ResourceEvaluation[];
|
|
2133
|
-
NextToken?: string;
|
|
2154
|
+
ResourceEvaluations?: ResourceEvaluation[] | undefined;
|
|
2155
|
+
NextToken?: string | undefined;
|
|
2134
2156
|
}
|
|
2135
2157
|
export interface ListStoredQueriesRequest {
|
|
2136
|
-
NextToken?: string;
|
|
2137
|
-
MaxResults?: number;
|
|
2158
|
+
NextToken?: string | undefined;
|
|
2159
|
+
MaxResults?: number | undefined;
|
|
2138
2160
|
}
|
|
2139
2161
|
export interface StoredQueryMetadata {
|
|
2140
2162
|
QueryId: string | undefined;
|
|
2141
2163
|
QueryArn: string | undefined;
|
|
2142
2164
|
QueryName: string | undefined;
|
|
2143
|
-
Description?: string;
|
|
2165
|
+
Description?: string | undefined;
|
|
2144
2166
|
}
|
|
2145
2167
|
export interface ListStoredQueriesResponse {
|
|
2146
|
-
StoredQueryMetadata?: StoredQueryMetadata[];
|
|
2147
|
-
NextToken?: string;
|
|
2168
|
+
StoredQueryMetadata?: StoredQueryMetadata[] | undefined;
|
|
2169
|
+
NextToken?: string | undefined;
|
|
2148
2170
|
}
|
|
2149
2171
|
export interface ListTagsForResourceRequest {
|
|
2150
2172
|
ResourceArn: string | undefined;
|
|
2151
|
-
Limit?: number;
|
|
2152
|
-
NextToken?: string;
|
|
2173
|
+
Limit?: number | undefined;
|
|
2174
|
+
NextToken?: string | undefined;
|
|
2153
2175
|
}
|