@aws-sdk/client-securityhub 3.42.0 → 3.47.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 +47 -0
- package/dist-cjs/endpoints.js +1 -24
- package/dist-cjs/models/models_0.js +228 -263
- package/dist-cjs/models/models_1.js +244 -11
- package/dist-cjs/protocols/Aws_restJson1.js +1225 -74
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +1 -24
- package/dist-es/models/models_0.js +148 -173
- package/dist-es/models/models_1.js +162 -4
- package/dist-es/protocols/Aws_restJson1.js +1020 -17
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/SecurityHub.d.ts +13 -3
- package/dist-types/SecurityHubClient.d.ts +5 -1
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +13 -2
- package/dist-types/commands/CreateMembersCommand.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +1026 -1814
- package/dist-types/models/models_1.d.ts +1681 -11
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/SecurityHubClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +532 -837
- package/dist-types/ts3.4/models/models_1.d.ts +783 -5
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -22,10 +22,6 @@ export interface InternalException extends __SmithyException, $MetadataBearer {
|
|
|
22
22
|
Message?: string;
|
|
23
23
|
Code?: string;
|
|
24
24
|
}
|
|
25
|
-
export declare namespace InternalException {
|
|
26
|
-
|
|
27
|
-
const filterSensitiveLog: (obj: InternalException) => any;
|
|
28
|
-
}
|
|
29
25
|
|
|
30
26
|
export interface InvalidAccessException extends __SmithyException, $MetadataBearer {
|
|
31
27
|
name: "InvalidAccessException";
|
|
@@ -33,10 +29,6 @@ export interface InvalidAccessException extends __SmithyException, $MetadataBear
|
|
|
33
29
|
Message?: string;
|
|
34
30
|
Code?: string;
|
|
35
31
|
}
|
|
36
|
-
export declare namespace InvalidAccessException {
|
|
37
|
-
|
|
38
|
-
const filterSensitiveLog: (obj: InvalidAccessException) => any;
|
|
39
|
-
}
|
|
40
32
|
|
|
41
33
|
export interface InvalidInputException extends __SmithyException, $MetadataBearer {
|
|
42
34
|
name: "InvalidInputException";
|
|
@@ -44,10 +36,6 @@ export interface InvalidInputException extends __SmithyException, $MetadataBeare
|
|
|
44
36
|
Message?: string;
|
|
45
37
|
Code?: string;
|
|
46
38
|
}
|
|
47
|
-
export declare namespace InvalidInputException {
|
|
48
|
-
|
|
49
|
-
const filterSensitiveLog: (obj: InvalidInputException) => any;
|
|
50
|
-
}
|
|
51
39
|
|
|
52
40
|
export interface LimitExceededException extends __SmithyException, $MetadataBearer {
|
|
53
41
|
name: "LimitExceededException";
|
|
@@ -55,10 +43,6 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
|
|
|
55
43
|
Message?: string;
|
|
56
44
|
Code?: string;
|
|
57
45
|
}
|
|
58
|
-
export declare namespace LimitExceededException {
|
|
59
|
-
|
|
60
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
61
|
-
}
|
|
62
46
|
|
|
63
47
|
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
64
48
|
name: "ResourceNotFoundException";
|
|
@@ -66,10 +50,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
66
50
|
Message?: string;
|
|
67
51
|
Code?: string;
|
|
68
52
|
}
|
|
69
|
-
export declare namespace ResourceNotFoundException {
|
|
70
|
-
|
|
71
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
72
|
-
}
|
|
73
53
|
export interface AcceptInvitationRequest {
|
|
74
54
|
|
|
75
55
|
MasterId: string | undefined;
|
|
@@ -93,10 +73,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
93
73
|
Message?: string;
|
|
94
74
|
Code?: string;
|
|
95
75
|
}
|
|
96
|
-
export declare namespace AccessDeniedException {
|
|
97
|
-
|
|
98
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
99
|
-
}
|
|
100
76
|
|
|
101
77
|
export interface AccountDetails {
|
|
102
78
|
|
|
@@ -592,6 +568,80 @@ export declare namespace AwsApiGatewayV2StageDetails {
|
|
|
592
568
|
const filterSensitiveLog: (obj: AwsApiGatewayV2StageDetails) => any;
|
|
593
569
|
}
|
|
594
570
|
|
|
571
|
+
export interface AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails {
|
|
572
|
+
|
|
573
|
+
Value?: string;
|
|
574
|
+
}
|
|
575
|
+
export declare namespace AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails {
|
|
576
|
+
|
|
577
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails) => any;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails {
|
|
581
|
+
|
|
582
|
+
OnDemandAllocationStrategy?: string;
|
|
583
|
+
|
|
584
|
+
OnDemandBaseCapacity?: number;
|
|
585
|
+
|
|
586
|
+
OnDemandPercentageAboveBaseCapacity?: number;
|
|
587
|
+
|
|
588
|
+
SpotAllocationStrategy?: string;
|
|
589
|
+
|
|
590
|
+
SpotInstancePools?: number;
|
|
591
|
+
|
|
592
|
+
SpotMaxPrice?: string;
|
|
593
|
+
}
|
|
594
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails {
|
|
595
|
+
|
|
596
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails) => any;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification {
|
|
600
|
+
|
|
601
|
+
LaunchTemplateId?: string;
|
|
602
|
+
|
|
603
|
+
LaunchTemplateName?: string;
|
|
604
|
+
|
|
605
|
+
Version?: string;
|
|
606
|
+
}
|
|
607
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification {
|
|
608
|
+
|
|
609
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification) => any;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails {
|
|
613
|
+
|
|
614
|
+
InstanceType?: string;
|
|
615
|
+
|
|
616
|
+
WeightedCapacity?: string;
|
|
617
|
+
}
|
|
618
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails {
|
|
619
|
+
|
|
620
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails) => any;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails {
|
|
624
|
+
|
|
625
|
+
LaunchTemplateSpecification?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification;
|
|
626
|
+
|
|
627
|
+
Overrides?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateOverridesListDetails[];
|
|
628
|
+
}
|
|
629
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails {
|
|
630
|
+
|
|
631
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails) => any;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails {
|
|
635
|
+
|
|
636
|
+
InstancesDistribution?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyInstancesDistributionDetails;
|
|
637
|
+
|
|
638
|
+
LaunchTemplate?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails;
|
|
639
|
+
}
|
|
640
|
+
export declare namespace AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails {
|
|
641
|
+
|
|
642
|
+
const filterSensitiveLog: (obj: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails) => any;
|
|
643
|
+
}
|
|
644
|
+
|
|
595
645
|
export interface AwsAutoScalingAutoScalingGroupDetails {
|
|
596
646
|
|
|
597
647
|
LaunchConfigurationName?: string;
|
|
@@ -603,6 +653,10 @@ export interface AwsAutoScalingAutoScalingGroupDetails {
|
|
|
603
653
|
HealthCheckGracePeriod?: number;
|
|
604
654
|
|
|
605
655
|
CreatedTime?: string;
|
|
656
|
+
|
|
657
|
+
MixedInstancesPolicy?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails;
|
|
658
|
+
|
|
659
|
+
AvailabilityZones?: AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails[];
|
|
606
660
|
}
|
|
607
661
|
export declare namespace AwsAutoScalingAutoScalingGroupDetails {
|
|
608
662
|
|
|
@@ -652,6 +706,19 @@ export declare namespace AwsAutoScalingLaunchConfigurationInstanceMonitoringDeta
|
|
|
652
706
|
const filterSensitiveLog: (obj: AwsAutoScalingLaunchConfigurationInstanceMonitoringDetails) => any;
|
|
653
707
|
}
|
|
654
708
|
|
|
709
|
+
export interface AwsAutoScalingLaunchConfigurationMetadataOptions {
|
|
710
|
+
|
|
711
|
+
HttpEndpoint?: string;
|
|
712
|
+
|
|
713
|
+
HttpPutResponseHopLimit?: number;
|
|
714
|
+
|
|
715
|
+
HttpTokens?: string;
|
|
716
|
+
}
|
|
717
|
+
export declare namespace AwsAutoScalingLaunchConfigurationMetadataOptions {
|
|
718
|
+
|
|
719
|
+
const filterSensitiveLog: (obj: AwsAutoScalingLaunchConfigurationMetadataOptions) => any;
|
|
720
|
+
}
|
|
721
|
+
|
|
655
722
|
export interface AwsAutoScalingLaunchConfigurationDetails {
|
|
656
723
|
|
|
657
724
|
AssociatePublicIpAddress?: boolean;
|
|
@@ -689,6 +756,8 @@ export interface AwsAutoScalingLaunchConfigurationDetails {
|
|
|
689
756
|
SpotPrice?: string;
|
|
690
757
|
|
|
691
758
|
UserData?: string;
|
|
759
|
+
|
|
760
|
+
MetadataOptions?: AwsAutoScalingLaunchConfigurationMetadataOptions;
|
|
692
761
|
}
|
|
693
762
|
export declare namespace AwsAutoScalingLaunchConfigurationDetails {
|
|
694
763
|
|
|
@@ -3742,1205 +3811,831 @@ export declare namespace AwsLambdaLayerVersionDetails {
|
|
|
3742
3811
|
const filterSensitiveLog: (obj: AwsLambdaLayerVersionDetails) => any;
|
|
3743
3812
|
}
|
|
3744
3813
|
|
|
3745
|
-
export interface
|
|
3814
|
+
export interface AwsNetworkFirewallFirewallSubnetMappingsDetails {
|
|
3746
3815
|
|
|
3747
|
-
|
|
3816
|
+
SubnetId?: string;
|
|
3748
3817
|
}
|
|
3749
|
-
export declare namespace
|
|
3818
|
+
export declare namespace AwsNetworkFirewallFirewallSubnetMappingsDetails {
|
|
3750
3819
|
|
|
3751
|
-
const filterSensitiveLog: (obj:
|
|
3820
|
+
const filterSensitiveLog: (obj: AwsNetworkFirewallFirewallSubnetMappingsDetails) => any;
|
|
3752
3821
|
}
|
|
3753
3822
|
|
|
3754
|
-
export interface
|
|
3823
|
+
export interface AwsNetworkFirewallFirewallDetails {
|
|
3755
3824
|
|
|
3756
|
-
|
|
3825
|
+
DeleteProtection?: boolean;
|
|
3757
3826
|
|
|
3758
|
-
|
|
3827
|
+
Description?: string;
|
|
3759
3828
|
|
|
3760
|
-
|
|
3829
|
+
FirewallArn?: string;
|
|
3761
3830
|
|
|
3762
|
-
|
|
3831
|
+
FirewallId?: string;
|
|
3763
3832
|
|
|
3764
|
-
|
|
3833
|
+
FirewallName?: string;
|
|
3765
3834
|
|
|
3766
|
-
|
|
3835
|
+
FirewallPolicyArn?: string;
|
|
3767
3836
|
|
|
3768
|
-
|
|
3837
|
+
FirewallPolicyChangeProtection?: boolean;
|
|
3769
3838
|
|
|
3770
|
-
|
|
3839
|
+
SubnetChangeProtection?: boolean;
|
|
3771
3840
|
|
|
3772
|
-
|
|
3841
|
+
SubnetMappings?: AwsNetworkFirewallFirewallSubnetMappingsDetails[];
|
|
3773
3842
|
|
|
3774
|
-
|
|
3843
|
+
VpcId?: string;
|
|
3775
3844
|
}
|
|
3776
|
-
export declare namespace
|
|
3845
|
+
export declare namespace AwsNetworkFirewallFirewallDetails {
|
|
3777
3846
|
|
|
3778
|
-
const filterSensitiveLog: (obj:
|
|
3847
|
+
const filterSensitiveLog: (obj: AwsNetworkFirewallFirewallDetails) => any;
|
|
3779
3848
|
}
|
|
3780
3849
|
|
|
3781
|
-
export interface
|
|
3782
|
-
|
|
3783
|
-
CustomEndpointCertificateArn?: string;
|
|
3850
|
+
export interface FirewallPolicyStatefulRuleGroupReferencesDetails {
|
|
3784
3851
|
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3852
|
+
ResourceArn?: string;
|
|
3853
|
+
}
|
|
3854
|
+
export declare namespace FirewallPolicyStatefulRuleGroupReferencesDetails {
|
|
3788
3855
|
|
|
3789
|
-
|
|
3856
|
+
const filterSensitiveLog: (obj: FirewallPolicyStatefulRuleGroupReferencesDetails) => any;
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
export interface StatelessCustomPublishMetricActionDimension {
|
|
3790
3860
|
|
|
3791
|
-
|
|
3861
|
+
Value?: string;
|
|
3792
3862
|
}
|
|
3793
|
-
export declare namespace
|
|
3863
|
+
export declare namespace StatelessCustomPublishMetricActionDimension {
|
|
3794
3864
|
|
|
3795
|
-
const filterSensitiveLog: (obj:
|
|
3865
|
+
const filterSensitiveLog: (obj: StatelessCustomPublishMetricActionDimension) => any;
|
|
3796
3866
|
}
|
|
3797
3867
|
|
|
3798
|
-
export interface
|
|
3868
|
+
export interface StatelessCustomPublishMetricAction {
|
|
3799
3869
|
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
KmsKeyId?: string;
|
|
3870
|
+
Dimensions?: StatelessCustomPublishMetricActionDimension[];
|
|
3803
3871
|
}
|
|
3804
|
-
export declare namespace
|
|
3872
|
+
export declare namespace StatelessCustomPublishMetricAction {
|
|
3805
3873
|
|
|
3806
|
-
const filterSensitiveLog: (obj:
|
|
3874
|
+
const filterSensitiveLog: (obj: StatelessCustomPublishMetricAction) => any;
|
|
3807
3875
|
}
|
|
3808
3876
|
|
|
3809
|
-
export interface
|
|
3810
|
-
|
|
3811
|
-
CloudWatchLogsLogGroupArn?: string;
|
|
3877
|
+
export interface StatelessCustomActionDefinition {
|
|
3812
3878
|
|
|
3813
|
-
|
|
3879
|
+
PublishMetricAction?: StatelessCustomPublishMetricAction;
|
|
3814
3880
|
}
|
|
3815
|
-
export declare namespace
|
|
3881
|
+
export declare namespace StatelessCustomActionDefinition {
|
|
3816
3882
|
|
|
3817
|
-
const filterSensitiveLog: (obj:
|
|
3883
|
+
const filterSensitiveLog: (obj: StatelessCustomActionDefinition) => any;
|
|
3818
3884
|
}
|
|
3819
3885
|
|
|
3820
|
-
export interface
|
|
3886
|
+
export interface FirewallPolicyStatelessCustomActionsDetails {
|
|
3821
3887
|
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
SearchSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
|
|
3888
|
+
ActionDefinition?: StatelessCustomActionDefinition;
|
|
3825
3889
|
|
|
3826
|
-
|
|
3890
|
+
ActionName?: string;
|
|
3827
3891
|
}
|
|
3828
|
-
export declare namespace
|
|
3892
|
+
export declare namespace FirewallPolicyStatelessCustomActionsDetails {
|
|
3829
3893
|
|
|
3830
|
-
const filterSensitiveLog: (obj:
|
|
3894
|
+
const filterSensitiveLog: (obj: FirewallPolicyStatelessCustomActionsDetails) => any;
|
|
3831
3895
|
}
|
|
3832
3896
|
|
|
3833
|
-
export interface
|
|
3897
|
+
export interface FirewallPolicyStatelessRuleGroupReferencesDetails {
|
|
3834
3898
|
|
|
3835
|
-
|
|
3899
|
+
Priority?: number;
|
|
3900
|
+
|
|
3901
|
+
ResourceArn?: string;
|
|
3836
3902
|
}
|
|
3837
|
-
export declare namespace
|
|
3903
|
+
export declare namespace FirewallPolicyStatelessRuleGroupReferencesDetails {
|
|
3838
3904
|
|
|
3839
|
-
const filterSensitiveLog: (obj:
|
|
3905
|
+
const filterSensitiveLog: (obj: FirewallPolicyStatelessRuleGroupReferencesDetails) => any;
|
|
3840
3906
|
}
|
|
3841
3907
|
|
|
3842
|
-
export interface
|
|
3908
|
+
export interface FirewallPolicyDetails {
|
|
3843
3909
|
|
|
3844
|
-
|
|
3910
|
+
StatefulRuleGroupReferences?: FirewallPolicyStatefulRuleGroupReferencesDetails[];
|
|
3845
3911
|
|
|
3846
|
-
|
|
3912
|
+
StatelessCustomActions?: FirewallPolicyStatelessCustomActionsDetails[];
|
|
3847
3913
|
|
|
3848
|
-
|
|
3914
|
+
StatelessDefaultActions?: string[];
|
|
3849
3915
|
|
|
3850
|
-
|
|
3916
|
+
StatelessFragmentDefaultActions?: string[];
|
|
3851
3917
|
|
|
3852
|
-
|
|
3918
|
+
StatelessRuleGroupReferences?: FirewallPolicyStatelessRuleGroupReferencesDetails[];
|
|
3919
|
+
}
|
|
3920
|
+
export declare namespace FirewallPolicyDetails {
|
|
3853
3921
|
|
|
3854
|
-
|
|
3922
|
+
const filterSensitiveLog: (obj: FirewallPolicyDetails) => any;
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3925
|
+
export interface AwsNetworkFirewallFirewallPolicyDetails {
|
|
3855
3926
|
|
|
3856
|
-
|
|
3927
|
+
FirewallPolicy?: FirewallPolicyDetails;
|
|
3857
3928
|
|
|
3858
|
-
|
|
3929
|
+
FirewallPolicyArn?: string;
|
|
3930
|
+
|
|
3931
|
+
FirewallPolicyId?: string;
|
|
3932
|
+
|
|
3933
|
+
FirewallPolicyName?: string;
|
|
3934
|
+
|
|
3935
|
+
Description?: string;
|
|
3859
3936
|
}
|
|
3860
|
-
export declare namespace
|
|
3937
|
+
export declare namespace AwsNetworkFirewallFirewallPolicyDetails {
|
|
3861
3938
|
|
|
3862
|
-
const filterSensitiveLog: (obj:
|
|
3939
|
+
const filterSensitiveLog: (obj: AwsNetworkFirewallFirewallPolicyDetails) => any;
|
|
3863
3940
|
}
|
|
3864
3941
|
|
|
3865
|
-
export interface
|
|
3942
|
+
export interface RuleGroupSourceListDetails {
|
|
3866
3943
|
|
|
3867
|
-
|
|
3944
|
+
GeneratedRulesType?: string;
|
|
3868
3945
|
|
|
3869
|
-
|
|
3946
|
+
TargetTypes?: string[];
|
|
3947
|
+
|
|
3948
|
+
Targets?: string[];
|
|
3870
3949
|
}
|
|
3871
|
-
export declare namespace
|
|
3950
|
+
export declare namespace RuleGroupSourceListDetails {
|
|
3872
3951
|
|
|
3873
|
-
const filterSensitiveLog: (obj:
|
|
3952
|
+
const filterSensitiveLog: (obj: RuleGroupSourceListDetails) => any;
|
|
3874
3953
|
}
|
|
3875
3954
|
|
|
3876
|
-
export interface
|
|
3955
|
+
export interface RuleGroupSourceStatefulRulesHeaderDetails {
|
|
3877
3956
|
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
AccessPolicies?: string;
|
|
3957
|
+
Destination?: string;
|
|
3881
3958
|
|
|
3882
|
-
|
|
3959
|
+
DestinationPort?: string;
|
|
3883
3960
|
|
|
3884
|
-
|
|
3961
|
+
Direction?: string;
|
|
3885
3962
|
|
|
3886
|
-
|
|
3963
|
+
Protocol?: string;
|
|
3887
3964
|
|
|
3888
|
-
|
|
3965
|
+
Source?: string;
|
|
3889
3966
|
|
|
3890
|
-
|
|
3967
|
+
SourcePort?: string;
|
|
3968
|
+
}
|
|
3969
|
+
export declare namespace RuleGroupSourceStatefulRulesHeaderDetails {
|
|
3891
3970
|
|
|
3892
|
-
|
|
3971
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatefulRulesHeaderDetails) => any;
|
|
3972
|
+
}
|
|
3973
|
+
|
|
3974
|
+
export interface RuleGroupSourceStatefulRulesOptionsDetails {
|
|
3893
3975
|
|
|
3894
|
-
|
|
3976
|
+
Keyword?: string;
|
|
3895
3977
|
|
|
3896
|
-
|
|
3978
|
+
Settings?: string[];
|
|
3979
|
+
}
|
|
3980
|
+
export declare namespace RuleGroupSourceStatefulRulesOptionsDetails {
|
|
3897
3981
|
|
|
3898
|
-
|
|
3982
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatefulRulesOptionsDetails) => any;
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
export interface RuleGroupSourceStatefulRulesDetails {
|
|
3899
3986
|
|
|
3900
|
-
|
|
3987
|
+
Action?: string;
|
|
3901
3988
|
|
|
3902
|
-
|
|
3989
|
+
Header?: RuleGroupSourceStatefulRulesHeaderDetails;
|
|
3903
3990
|
|
|
3904
|
-
|
|
3905
|
-
[key: string]: string;
|
|
3906
|
-
};
|
|
3991
|
+
RuleOptions?: RuleGroupSourceStatefulRulesOptionsDetails[];
|
|
3907
3992
|
}
|
|
3908
|
-
export declare namespace
|
|
3993
|
+
export declare namespace RuleGroupSourceStatefulRulesDetails {
|
|
3909
3994
|
|
|
3910
|
-
const filterSensitiveLog: (obj:
|
|
3995
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatefulRulesDetails) => any;
|
|
3911
3996
|
}
|
|
3912
3997
|
|
|
3913
|
-
export interface
|
|
3998
|
+
export interface RuleGroupSourceCustomActionsDetails {
|
|
3914
3999
|
|
|
3915
|
-
|
|
4000
|
+
ActionDefinition?: StatelessCustomActionDefinition;
|
|
3916
4001
|
|
|
3917
|
-
|
|
4002
|
+
ActionName?: string;
|
|
3918
4003
|
}
|
|
3919
|
-
export declare namespace
|
|
4004
|
+
export declare namespace RuleGroupSourceCustomActionsDetails {
|
|
3920
4005
|
|
|
3921
|
-
const filterSensitiveLog: (obj:
|
|
4006
|
+
const filterSensitiveLog: (obj: RuleGroupSourceCustomActionsDetails) => any;
|
|
3922
4007
|
}
|
|
3923
4008
|
|
|
3924
|
-
export interface
|
|
3925
|
-
|
|
3926
|
-
IsClusterWriter?: boolean;
|
|
3927
|
-
|
|
3928
|
-
PromotionTier?: number;
|
|
4009
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts {
|
|
3929
4010
|
|
|
3930
|
-
|
|
4011
|
+
FromPort?: number;
|
|
3931
4012
|
|
|
3932
|
-
|
|
4013
|
+
ToPort?: number;
|
|
3933
4014
|
}
|
|
3934
|
-
export declare namespace
|
|
4015
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts {
|
|
3935
4016
|
|
|
3936
|
-
const filterSensitiveLog: (obj:
|
|
4017
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts) => any;
|
|
3937
4018
|
}
|
|
3938
4019
|
|
|
3939
|
-
export interface
|
|
3940
|
-
|
|
3941
|
-
DbClusterOptionGroupName?: string;
|
|
4020
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesDestinations {
|
|
3942
4021
|
|
|
3943
|
-
|
|
4022
|
+
AddressDefinition?: string;
|
|
3944
4023
|
}
|
|
3945
|
-
export declare namespace
|
|
4024
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesDestinations {
|
|
3946
4025
|
|
|
3947
|
-
const filterSensitiveLog: (obj:
|
|
4026
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesDestinations) => any;
|
|
3948
4027
|
}
|
|
3949
4028
|
|
|
3950
|
-
export interface
|
|
4029
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesSourcePorts {
|
|
3951
4030
|
|
|
3952
|
-
|
|
4031
|
+
FromPort?: number;
|
|
3953
4032
|
|
|
3954
|
-
|
|
4033
|
+
ToPort?: number;
|
|
4034
|
+
}
|
|
4035
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesSourcePorts {
|
|
3955
4036
|
|
|
3956
|
-
|
|
4037
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesSourcePorts) => any;
|
|
4038
|
+
}
|
|
4039
|
+
|
|
4040
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesSources {
|
|
3957
4041
|
|
|
3958
|
-
|
|
4042
|
+
AddressDefinition?: string;
|
|
3959
4043
|
}
|
|
3960
|
-
export declare namespace
|
|
4044
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesSources {
|
|
3961
4045
|
|
|
3962
|
-
const filterSensitiveLog: (obj:
|
|
4046
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesSources) => any;
|
|
3963
4047
|
}
|
|
3964
4048
|
|
|
3965
|
-
export interface
|
|
4049
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributesTcpFlags {
|
|
3966
4050
|
|
|
3967
|
-
|
|
4051
|
+
Flags?: string[];
|
|
3968
4052
|
|
|
3969
|
-
|
|
4053
|
+
Masks?: string[];
|
|
3970
4054
|
}
|
|
3971
|
-
export declare namespace
|
|
4055
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributesTcpFlags {
|
|
3972
4056
|
|
|
3973
|
-
const filterSensitiveLog: (obj:
|
|
4057
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributesTcpFlags) => any;
|
|
3974
4058
|
}
|
|
3975
4059
|
|
|
3976
|
-
export interface
|
|
4060
|
+
export interface RuleGroupSourceStatelessRuleMatchAttributes {
|
|
3977
4061
|
|
|
3978
|
-
|
|
4062
|
+
DestinationPorts?: RuleGroupSourceStatelessRuleMatchAttributesDestinationPorts[];
|
|
3979
4063
|
|
|
3980
|
-
|
|
4064
|
+
Destinations?: RuleGroupSourceStatelessRuleMatchAttributesDestinations[];
|
|
3981
4065
|
|
|
3982
|
-
|
|
4066
|
+
Protocols?: number[];
|
|
3983
4067
|
|
|
3984
|
-
|
|
4068
|
+
SourcePorts?: RuleGroupSourceStatelessRuleMatchAttributesSourcePorts[];
|
|
3985
4069
|
|
|
3986
|
-
|
|
4070
|
+
Sources?: RuleGroupSourceStatelessRuleMatchAttributesSources[];
|
|
3987
4071
|
|
|
3988
|
-
|
|
4072
|
+
TcpFlags?: RuleGroupSourceStatelessRuleMatchAttributesTcpFlags[];
|
|
4073
|
+
}
|
|
4074
|
+
export declare namespace RuleGroupSourceStatelessRuleMatchAttributes {
|
|
3989
4075
|
|
|
3990
|
-
|
|
4076
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleMatchAttributes) => any;
|
|
4077
|
+
}
|
|
4078
|
+
|
|
4079
|
+
export interface RuleGroupSourceStatelessRuleDefinition {
|
|
3991
4080
|
|
|
3992
|
-
|
|
4081
|
+
Actions?: string[];
|
|
3993
4082
|
|
|
3994
|
-
|
|
4083
|
+
MatchAttributes?: RuleGroupSourceStatelessRuleMatchAttributes;
|
|
4084
|
+
}
|
|
4085
|
+
export declare namespace RuleGroupSourceStatelessRuleDefinition {
|
|
3995
4086
|
|
|
3996
|
-
|
|
4087
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRuleDefinition) => any;
|
|
4088
|
+
}
|
|
4089
|
+
|
|
4090
|
+
export interface RuleGroupSourceStatelessRulesDetails {
|
|
3997
4091
|
|
|
3998
|
-
|
|
4092
|
+
Priority?: number;
|
|
3999
4093
|
|
|
4000
|
-
|
|
4094
|
+
RuleDefinition?: RuleGroupSourceStatelessRuleDefinition;
|
|
4095
|
+
}
|
|
4096
|
+
export declare namespace RuleGroupSourceStatelessRulesDetails {
|
|
4001
4097
|
|
|
4002
|
-
|
|
4098
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRulesDetails) => any;
|
|
4099
|
+
}
|
|
4100
|
+
|
|
4101
|
+
export interface RuleGroupSourceStatelessRulesAndCustomActionsDetails {
|
|
4003
4102
|
|
|
4004
|
-
|
|
4103
|
+
CustomActions?: RuleGroupSourceCustomActionsDetails[];
|
|
4005
4104
|
|
|
4006
|
-
|
|
4105
|
+
StatelessRules?: RuleGroupSourceStatelessRulesDetails[];
|
|
4106
|
+
}
|
|
4107
|
+
export declare namespace RuleGroupSourceStatelessRulesAndCustomActionsDetails {
|
|
4007
4108
|
|
|
4008
|
-
|
|
4109
|
+
const filterSensitiveLog: (obj: RuleGroupSourceStatelessRulesAndCustomActionsDetails) => any;
|
|
4110
|
+
}
|
|
4111
|
+
|
|
4112
|
+
export interface RuleGroupSource {
|
|
4009
4113
|
|
|
4010
|
-
|
|
4114
|
+
RulesSourceList?: RuleGroupSourceListDetails;
|
|
4011
4115
|
|
|
4012
|
-
|
|
4116
|
+
RulesString?: string;
|
|
4013
4117
|
|
|
4014
|
-
|
|
4118
|
+
StatefulRules?: RuleGroupSourceStatefulRulesDetails[];
|
|
4015
4119
|
|
|
4016
|
-
|
|
4120
|
+
StatelessRulesAndCustomActions?: RuleGroupSourceStatelessRulesAndCustomActionsDetails;
|
|
4121
|
+
}
|
|
4122
|
+
export declare namespace RuleGroupSource {
|
|
4017
4123
|
|
|
4018
|
-
|
|
4124
|
+
const filterSensitiveLog: (obj: RuleGroupSource) => any;
|
|
4125
|
+
}
|
|
4126
|
+
|
|
4127
|
+
export interface RuleGroupVariablesIpSetsDetails {
|
|
4019
4128
|
|
|
4020
|
-
|
|
4129
|
+
Definition?: string[];
|
|
4130
|
+
}
|
|
4131
|
+
export declare namespace RuleGroupVariablesIpSetsDetails {
|
|
4021
4132
|
|
|
4022
|
-
|
|
4133
|
+
const filterSensitiveLog: (obj: RuleGroupVariablesIpSetsDetails) => any;
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4136
|
+
export interface RuleGroupVariablesPortSetsDetails {
|
|
4023
4137
|
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
EngineMode?: string;
|
|
4027
|
-
|
|
4028
|
-
DeletionProtection?: boolean;
|
|
4029
|
-
|
|
4030
|
-
HttpEndpointEnabled?: boolean;
|
|
4031
|
-
|
|
4032
|
-
ActivityStreamStatus?: string;
|
|
4033
|
-
|
|
4034
|
-
CopyTagsToSnapshot?: boolean;
|
|
4035
|
-
|
|
4036
|
-
CrossAccountClone?: boolean;
|
|
4037
|
-
|
|
4038
|
-
DomainMemberships?: AwsRdsDbDomainMembership[];
|
|
4039
|
-
|
|
4040
|
-
DbClusterParameterGroup?: string;
|
|
4041
|
-
|
|
4042
|
-
DbSubnetGroup?: string;
|
|
4043
|
-
|
|
4044
|
-
DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMembership[];
|
|
4045
|
-
|
|
4046
|
-
DbClusterIdentifier?: string;
|
|
4047
|
-
|
|
4048
|
-
DbClusterMembers?: AwsRdsDbClusterMember[];
|
|
4049
|
-
|
|
4050
|
-
IamDatabaseAuthenticationEnabled?: boolean;
|
|
4138
|
+
Definition?: string[];
|
|
4051
4139
|
}
|
|
4052
|
-
export declare namespace
|
|
4140
|
+
export declare namespace RuleGroupVariablesPortSetsDetails {
|
|
4053
4141
|
|
|
4054
|
-
const filterSensitiveLog: (obj:
|
|
4142
|
+
const filterSensitiveLog: (obj: RuleGroupVariablesPortSetsDetails) => any;
|
|
4055
4143
|
}
|
|
4056
4144
|
|
|
4057
|
-
export interface
|
|
4058
|
-
|
|
4059
|
-
AvailabilityZones?: string[];
|
|
4060
|
-
|
|
4061
|
-
SnapshotCreateTime?: string;
|
|
4145
|
+
export interface RuleGroupVariables {
|
|
4062
4146
|
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
AllocatedStorage?: number;
|
|
4147
|
+
IpSets?: RuleGroupVariablesIpSetsDetails;
|
|
4066
4148
|
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
Port?: number;
|
|
4070
|
-
|
|
4071
|
-
VpcId?: string;
|
|
4072
|
-
|
|
4073
|
-
ClusterCreateTime?: string;
|
|
4074
|
-
|
|
4075
|
-
MasterUsername?: string;
|
|
4076
|
-
|
|
4077
|
-
EngineVersion?: string;
|
|
4078
|
-
|
|
4079
|
-
LicenseModel?: string;
|
|
4080
|
-
|
|
4081
|
-
SnapshotType?: string;
|
|
4082
|
-
|
|
4083
|
-
PercentProgress?: number;
|
|
4084
|
-
|
|
4085
|
-
StorageEncrypted?: boolean;
|
|
4086
|
-
|
|
4087
|
-
KmsKeyId?: string;
|
|
4088
|
-
|
|
4089
|
-
DbClusterIdentifier?: string;
|
|
4090
|
-
|
|
4091
|
-
DbClusterSnapshotIdentifier?: string;
|
|
4092
|
-
|
|
4093
|
-
IamDatabaseAuthenticationEnabled?: boolean;
|
|
4094
|
-
}
|
|
4095
|
-
export declare namespace AwsRdsDbClusterSnapshotDetails {
|
|
4096
|
-
|
|
4097
|
-
const filterSensitiveLog: (obj: AwsRdsDbClusterSnapshotDetails) => any;
|
|
4098
|
-
}
|
|
4099
|
-
|
|
4100
|
-
export interface AwsRdsDbInstanceAssociatedRole {
|
|
4101
|
-
|
|
4102
|
-
RoleArn?: string;
|
|
4103
|
-
|
|
4104
|
-
FeatureName?: string;
|
|
4105
|
-
|
|
4106
|
-
Status?: string;
|
|
4149
|
+
PortSets?: RuleGroupVariablesPortSetsDetails;
|
|
4107
4150
|
}
|
|
4108
|
-
export declare namespace
|
|
4151
|
+
export declare namespace RuleGroupVariables {
|
|
4109
4152
|
|
|
4110
|
-
const filterSensitiveLog: (obj:
|
|
4153
|
+
const filterSensitiveLog: (obj: RuleGroupVariables) => any;
|
|
4111
4154
|
}
|
|
4112
4155
|
|
|
4113
|
-
export interface
|
|
4156
|
+
export interface RuleGroupDetails {
|
|
4114
4157
|
|
|
4115
|
-
|
|
4158
|
+
RuleVariables?: RuleGroupVariables;
|
|
4116
4159
|
|
|
4117
|
-
|
|
4160
|
+
RulesSource?: RuleGroupSource;
|
|
4118
4161
|
}
|
|
4119
|
-
export declare namespace
|
|
4162
|
+
export declare namespace RuleGroupDetails {
|
|
4120
4163
|
|
|
4121
|
-
const filterSensitiveLog: (obj:
|
|
4164
|
+
const filterSensitiveLog: (obj: RuleGroupDetails) => any;
|
|
4122
4165
|
}
|
|
4123
4166
|
|
|
4124
|
-
export interface
|
|
4167
|
+
export interface AwsNetworkFirewallRuleGroupDetails {
|
|
4125
4168
|
|
|
4126
|
-
|
|
4127
|
-
}
|
|
4128
|
-
export declare namespace AwsRdsDbSubnetGroupSubnetAvailabilityZone {
|
|
4169
|
+
Capacity?: number;
|
|
4129
4170
|
|
|
4130
|
-
|
|
4131
|
-
}
|
|
4132
|
-
|
|
4133
|
-
export interface AwsRdsDbSubnetGroupSubnet {
|
|
4134
|
-
|
|
4135
|
-
SubnetIdentifier?: string;
|
|
4136
|
-
|
|
4137
|
-
SubnetAvailabilityZone?: AwsRdsDbSubnetGroupSubnetAvailabilityZone;
|
|
4138
|
-
|
|
4139
|
-
SubnetStatus?: string;
|
|
4140
|
-
}
|
|
4141
|
-
export declare namespace AwsRdsDbSubnetGroupSubnet {
|
|
4142
|
-
|
|
4143
|
-
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnet) => any;
|
|
4144
|
-
}
|
|
4145
|
-
|
|
4146
|
-
export interface AwsRdsDbSubnetGroup {
|
|
4147
|
-
|
|
4148
|
-
DbSubnetGroupName?: string;
|
|
4149
|
-
|
|
4150
|
-
DbSubnetGroupDescription?: string;
|
|
4151
|
-
|
|
4152
|
-
VpcId?: string;
|
|
4153
|
-
|
|
4154
|
-
SubnetGroupStatus?: string;
|
|
4155
|
-
|
|
4156
|
-
Subnets?: AwsRdsDbSubnetGroupSubnet[];
|
|
4157
|
-
|
|
4158
|
-
DbSubnetGroupArn?: string;
|
|
4159
|
-
}
|
|
4160
|
-
export declare namespace AwsRdsDbSubnetGroup {
|
|
4161
|
-
|
|
4162
|
-
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroup) => any;
|
|
4163
|
-
}
|
|
4164
|
-
|
|
4165
|
-
export interface AwsRdsDbInstanceEndpoint {
|
|
4166
|
-
|
|
4167
|
-
Address?: string;
|
|
4168
|
-
|
|
4169
|
-
Port?: number;
|
|
4170
|
-
|
|
4171
|
-
HostedZoneId?: string;
|
|
4172
|
-
}
|
|
4173
|
-
export declare namespace AwsRdsDbInstanceEndpoint {
|
|
4174
|
-
|
|
4175
|
-
const filterSensitiveLog: (obj: AwsRdsDbInstanceEndpoint) => any;
|
|
4176
|
-
}
|
|
4177
|
-
|
|
4178
|
-
export interface AwsRdsDbOptionGroupMembership {
|
|
4171
|
+
Description?: string;
|
|
4179
4172
|
|
|
4180
|
-
|
|
4173
|
+
RuleGroup?: RuleGroupDetails;
|
|
4181
4174
|
|
|
4182
|
-
|
|
4183
|
-
}
|
|
4184
|
-
export declare namespace AwsRdsDbOptionGroupMembership {
|
|
4175
|
+
RuleGroupArn?: string;
|
|
4185
4176
|
|
|
4186
|
-
|
|
4187
|
-
}
|
|
4188
|
-
|
|
4189
|
-
export interface AwsRdsPendingCloudWatchLogsExports {
|
|
4177
|
+
RuleGroupId?: string;
|
|
4190
4178
|
|
|
4191
|
-
|
|
4179
|
+
RuleGroupName?: string;
|
|
4192
4180
|
|
|
4193
|
-
|
|
4181
|
+
Type?: string;
|
|
4194
4182
|
}
|
|
4195
|
-
export declare namespace
|
|
4183
|
+
export declare namespace AwsNetworkFirewallRuleGroupDetails {
|
|
4196
4184
|
|
|
4197
|
-
const filterSensitiveLog: (obj:
|
|
4185
|
+
const filterSensitiveLog: (obj: AwsNetworkFirewallRuleGroupDetails) => any;
|
|
4198
4186
|
}
|
|
4199
4187
|
|
|
4200
|
-
export interface
|
|
4201
|
-
|
|
4202
|
-
Name?: string;
|
|
4188
|
+
export interface AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
|
|
4203
4189
|
|
|
4204
|
-
|
|
4190
|
+
AvailabilityZoneCount?: number;
|
|
4205
4191
|
}
|
|
4206
|
-
export declare namespace
|
|
4192
|
+
export declare namespace AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails {
|
|
4207
4193
|
|
|
4208
|
-
const filterSensitiveLog: (obj:
|
|
4194
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails) => any;
|
|
4209
4195
|
}
|
|
4210
4196
|
|
|
4211
|
-
export interface
|
|
4212
|
-
|
|
4213
|
-
DbInstanceClass?: string;
|
|
4214
|
-
|
|
4215
|
-
AllocatedStorage?: number;
|
|
4216
|
-
|
|
4217
|
-
MasterUserPassword?: string;
|
|
4218
|
-
|
|
4219
|
-
Port?: number;
|
|
4220
|
-
|
|
4221
|
-
BackupRetentionPeriod?: number;
|
|
4222
|
-
|
|
4223
|
-
MultiAZ?: boolean;
|
|
4224
|
-
|
|
4225
|
-
EngineVersion?: string;
|
|
4226
|
-
|
|
4227
|
-
LicenseModel?: string;
|
|
4228
|
-
|
|
4229
|
-
Iops?: number;
|
|
4230
|
-
|
|
4231
|
-
DbInstanceIdentifier?: string;
|
|
4197
|
+
export interface AwsOpenSearchServiceDomainClusterConfigDetails {
|
|
4232
4198
|
|
|
4233
|
-
|
|
4199
|
+
InstanceCount?: number;
|
|
4234
4200
|
|
|
4235
|
-
|
|
4201
|
+
WarmEnabled?: boolean;
|
|
4236
4202
|
|
|
4237
|
-
|
|
4203
|
+
WarmCount?: number;
|
|
4238
4204
|
|
|
4239
|
-
|
|
4205
|
+
DedicatedMasterEnabled?: boolean;
|
|
4240
4206
|
|
|
4241
|
-
|
|
4242
|
-
}
|
|
4243
|
-
export declare namespace AwsRdsDbPendingModifiedValues {
|
|
4207
|
+
ZoneAwarenessConfig?: AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails;
|
|
4244
4208
|
|
|
4245
|
-
|
|
4246
|
-
}
|
|
4247
|
-
|
|
4248
|
-
export interface AwsRdsDbStatusInfo {
|
|
4209
|
+
DedicatedMasterCount?: number;
|
|
4249
4210
|
|
|
4250
|
-
|
|
4211
|
+
InstanceType?: string;
|
|
4251
4212
|
|
|
4252
|
-
|
|
4213
|
+
WarmType?: string;
|
|
4253
4214
|
|
|
4254
|
-
|
|
4215
|
+
ZoneAwarenessEnabled?: boolean;
|
|
4255
4216
|
|
|
4256
|
-
|
|
4217
|
+
DedicatedMasterType?: string;
|
|
4257
4218
|
}
|
|
4258
|
-
export declare namespace
|
|
4219
|
+
export declare namespace AwsOpenSearchServiceDomainClusterConfigDetails {
|
|
4259
4220
|
|
|
4260
|
-
const filterSensitiveLog: (obj:
|
|
4221
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainClusterConfigDetails) => any;
|
|
4261
4222
|
}
|
|
4262
4223
|
|
|
4263
|
-
export interface
|
|
4264
|
-
|
|
4265
|
-
AssociatedRoles?: AwsRdsDbInstanceAssociatedRole[];
|
|
4266
|
-
|
|
4267
|
-
CACertificateIdentifier?: string;
|
|
4268
|
-
|
|
4269
|
-
DBClusterIdentifier?: string;
|
|
4270
|
-
|
|
4271
|
-
DBInstanceIdentifier?: string;
|
|
4272
|
-
|
|
4273
|
-
DBInstanceClass?: string;
|
|
4274
|
-
|
|
4275
|
-
DbInstancePort?: number;
|
|
4276
|
-
|
|
4277
|
-
DbiResourceId?: string;
|
|
4278
|
-
|
|
4279
|
-
DBName?: string;
|
|
4280
|
-
|
|
4281
|
-
DeletionProtection?: boolean;
|
|
4282
|
-
|
|
4283
|
-
Endpoint?: AwsRdsDbInstanceEndpoint;
|
|
4284
|
-
|
|
4285
|
-
Engine?: string;
|
|
4286
|
-
|
|
4287
|
-
EngineVersion?: string;
|
|
4288
|
-
|
|
4289
|
-
IAMDatabaseAuthenticationEnabled?: boolean;
|
|
4290
|
-
|
|
4291
|
-
InstanceCreateTime?: string;
|
|
4292
|
-
|
|
4293
|
-
KmsKeyId?: string;
|
|
4294
|
-
|
|
4295
|
-
PubliclyAccessible?: boolean;
|
|
4296
|
-
|
|
4297
|
-
StorageEncrypted?: boolean;
|
|
4298
|
-
|
|
4299
|
-
TdeCredentialArn?: string;
|
|
4300
|
-
|
|
4301
|
-
VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[];
|
|
4302
|
-
|
|
4303
|
-
MultiAz?: boolean;
|
|
4304
|
-
|
|
4305
|
-
EnhancedMonitoringResourceArn?: string;
|
|
4306
|
-
|
|
4307
|
-
DbInstanceStatus?: string;
|
|
4308
|
-
|
|
4309
|
-
MasterUsername?: string;
|
|
4310
|
-
|
|
4311
|
-
AllocatedStorage?: number;
|
|
4312
|
-
|
|
4313
|
-
PreferredBackupWindow?: string;
|
|
4314
|
-
|
|
4315
|
-
BackupRetentionPeriod?: number;
|
|
4316
|
-
|
|
4317
|
-
DbSecurityGroups?: string[];
|
|
4318
|
-
|
|
4319
|
-
DbParameterGroups?: AwsRdsDbParameterGroup[];
|
|
4320
|
-
|
|
4321
|
-
AvailabilityZone?: string;
|
|
4322
|
-
|
|
4323
|
-
DbSubnetGroup?: AwsRdsDbSubnetGroup;
|
|
4324
|
-
|
|
4325
|
-
PreferredMaintenanceWindow?: string;
|
|
4326
|
-
|
|
4327
|
-
PendingModifiedValues?: AwsRdsDbPendingModifiedValues;
|
|
4328
|
-
|
|
4329
|
-
LatestRestorableTime?: string;
|
|
4330
|
-
|
|
4331
|
-
AutoMinorVersionUpgrade?: boolean;
|
|
4332
|
-
|
|
4333
|
-
ReadReplicaSourceDBInstanceIdentifier?: string;
|
|
4334
|
-
|
|
4335
|
-
ReadReplicaDBInstanceIdentifiers?: string[];
|
|
4336
|
-
|
|
4337
|
-
ReadReplicaDBClusterIdentifiers?: string[];
|
|
4338
|
-
|
|
4339
|
-
LicenseModel?: string;
|
|
4340
|
-
|
|
4341
|
-
Iops?: number;
|
|
4342
|
-
|
|
4343
|
-
OptionGroupMemberships?: AwsRdsDbOptionGroupMembership[];
|
|
4344
|
-
|
|
4345
|
-
CharacterSetName?: string;
|
|
4346
|
-
|
|
4347
|
-
SecondaryAvailabilityZone?: string;
|
|
4348
|
-
|
|
4349
|
-
StatusInfos?: AwsRdsDbStatusInfo[];
|
|
4350
|
-
|
|
4351
|
-
StorageType?: string;
|
|
4352
|
-
|
|
4353
|
-
DomainMemberships?: AwsRdsDbDomainMembership[];
|
|
4354
|
-
|
|
4355
|
-
CopyTagsToSnapshot?: boolean;
|
|
4356
|
-
|
|
4357
|
-
MonitoringInterval?: number;
|
|
4358
|
-
|
|
4359
|
-
MonitoringRoleArn?: string;
|
|
4360
|
-
|
|
4361
|
-
PromotionTier?: number;
|
|
4362
|
-
|
|
4363
|
-
Timezone?: string;
|
|
4364
|
-
|
|
4365
|
-
PerformanceInsightsEnabled?: boolean;
|
|
4366
|
-
|
|
4367
|
-
PerformanceInsightsKmsKeyId?: string;
|
|
4224
|
+
export interface AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
|
|
4368
4225
|
|
|
4369
|
-
|
|
4226
|
+
CustomEndpointCertificateArn?: string;
|
|
4370
4227
|
|
|
4371
|
-
|
|
4228
|
+
CustomEndpointEnabled?: boolean;
|
|
4372
4229
|
|
|
4373
|
-
|
|
4230
|
+
EnforceHTTPS?: boolean;
|
|
4374
4231
|
|
|
4375
|
-
|
|
4232
|
+
CustomEndpoint?: string;
|
|
4376
4233
|
|
|
4377
|
-
|
|
4234
|
+
TLSSecurityPolicy?: string;
|
|
4378
4235
|
}
|
|
4379
|
-
export declare namespace
|
|
4236
|
+
export declare namespace AwsOpenSearchServiceDomainDomainEndpointOptionsDetails {
|
|
4380
4237
|
|
|
4381
|
-
const filterSensitiveLog: (obj:
|
|
4238
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails) => any;
|
|
4382
4239
|
}
|
|
4383
4240
|
|
|
4384
|
-
export interface
|
|
4385
|
-
|
|
4386
|
-
DbSnapshotIdentifier?: string;
|
|
4387
|
-
|
|
4388
|
-
DbInstanceIdentifier?: string;
|
|
4389
|
-
|
|
4390
|
-
SnapshotCreateTime?: string;
|
|
4391
|
-
|
|
4392
|
-
Engine?: string;
|
|
4393
|
-
|
|
4394
|
-
AllocatedStorage?: number;
|
|
4395
|
-
|
|
4396
|
-
Status?: string;
|
|
4397
|
-
|
|
4398
|
-
Port?: number;
|
|
4399
|
-
|
|
4400
|
-
AvailabilityZone?: string;
|
|
4401
|
-
|
|
4402
|
-
VpcId?: string;
|
|
4403
|
-
|
|
4404
|
-
InstanceCreateTime?: string;
|
|
4405
|
-
|
|
4406
|
-
MasterUsername?: string;
|
|
4407
|
-
|
|
4408
|
-
EngineVersion?: string;
|
|
4409
|
-
|
|
4410
|
-
LicenseModel?: string;
|
|
4411
|
-
|
|
4412
|
-
SnapshotType?: string;
|
|
4413
|
-
|
|
4414
|
-
Iops?: number;
|
|
4415
|
-
|
|
4416
|
-
OptionGroupName?: string;
|
|
4417
|
-
|
|
4418
|
-
PercentProgress?: number;
|
|
4419
|
-
|
|
4420
|
-
SourceRegion?: string;
|
|
4421
|
-
|
|
4422
|
-
SourceDbSnapshotIdentifier?: string;
|
|
4423
|
-
|
|
4424
|
-
StorageType?: string;
|
|
4425
|
-
|
|
4426
|
-
TdeCredentialArn?: string;
|
|
4241
|
+
export interface AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails {
|
|
4427
4242
|
|
|
4428
|
-
|
|
4243
|
+
Enabled?: boolean;
|
|
4429
4244
|
|
|
4430
4245
|
KmsKeyId?: string;
|
|
4431
|
-
|
|
4432
|
-
Timezone?: string;
|
|
4433
|
-
|
|
4434
|
-
IamDatabaseAuthenticationEnabled?: boolean;
|
|
4435
|
-
|
|
4436
|
-
ProcessorFeatures?: AwsRdsDbProcessorFeature[];
|
|
4437
|
-
|
|
4438
|
-
DbiResourceId?: string;
|
|
4439
4246
|
}
|
|
4440
|
-
export declare namespace
|
|
4247
|
+
export declare namespace AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails {
|
|
4441
4248
|
|
|
4442
|
-
const filterSensitiveLog: (obj:
|
|
4249
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails) => any;
|
|
4443
4250
|
}
|
|
4444
4251
|
|
|
4445
|
-
export interface
|
|
4446
|
-
|
|
4447
|
-
CustSubscriptionId?: string;
|
|
4252
|
+
export interface AwsOpenSearchServiceDomainLogPublishingOption {
|
|
4448
4253
|
|
|
4449
|
-
|
|
4254
|
+
CloudWatchLogsLogGroupArn?: string;
|
|
4450
4255
|
|
|
4451
4256
|
Enabled?: boolean;
|
|
4452
|
-
|
|
4453
|
-
EventCategoriesList?: string[];
|
|
4454
|
-
|
|
4455
|
-
EventSubscriptionArn?: string;
|
|
4456
|
-
|
|
4457
|
-
SnsTopicArn?: string;
|
|
4458
|
-
|
|
4459
|
-
SourceIdsList?: string[];
|
|
4460
|
-
|
|
4461
|
-
SourceType?: string;
|
|
4462
|
-
|
|
4463
|
-
Status?: string;
|
|
4464
|
-
|
|
4465
|
-
SubscriptionCreationTime?: string;
|
|
4466
|
-
}
|
|
4467
|
-
export declare namespace AwsRdsEventSubscriptionDetails {
|
|
4468
|
-
|
|
4469
|
-
const filterSensitiveLog: (obj: AwsRdsEventSubscriptionDetails) => any;
|
|
4470
|
-
}
|
|
4471
|
-
|
|
4472
|
-
export interface AwsRedshiftClusterClusterNode {
|
|
4473
|
-
|
|
4474
|
-
NodeRole?: string;
|
|
4475
|
-
|
|
4476
|
-
PrivateIpAddress?: string;
|
|
4477
|
-
|
|
4478
|
-
PublicIpAddress?: string;
|
|
4479
|
-
}
|
|
4480
|
-
export declare namespace AwsRedshiftClusterClusterNode {
|
|
4481
|
-
|
|
4482
|
-
const filterSensitiveLog: (obj: AwsRedshiftClusterClusterNode) => any;
|
|
4483
|
-
}
|
|
4484
|
-
|
|
4485
|
-
export interface AwsRedshiftClusterClusterParameterStatus {
|
|
4486
|
-
|
|
4487
|
-
ParameterName?: string;
|
|
4488
|
-
|
|
4489
|
-
ParameterApplyStatus?: string;
|
|
4490
|
-
|
|
4491
|
-
ParameterApplyErrorDescription?: string;
|
|
4492
|
-
}
|
|
4493
|
-
export declare namespace AwsRedshiftClusterClusterParameterStatus {
|
|
4494
|
-
|
|
4495
|
-
const filterSensitiveLog: (obj: AwsRedshiftClusterClusterParameterStatus) => any;
|
|
4496
|
-
}
|
|
4497
|
-
|
|
4498
|
-
export interface AwsRedshiftClusterClusterParameterGroup {
|
|
4499
|
-
|
|
4500
|
-
ClusterParameterStatusList?: AwsRedshiftClusterClusterParameterStatus[];
|
|
4501
|
-
|
|
4502
|
-
ParameterApplyStatus?: string;
|
|
4503
|
-
|
|
4504
|
-
ParameterGroupName?: string;
|
|
4505
|
-
}
|
|
4506
|
-
export declare namespace AwsRedshiftClusterClusterParameterGroup {
|
|
4507
|
-
|
|
4508
|
-
const filterSensitiveLog: (obj: AwsRedshiftClusterClusterParameterGroup) => any;
|
|
4509
4257
|
}
|
|
4510
|
-
|
|
4511
|
-
export interface AwsRedshiftClusterClusterSecurityGroup {
|
|
4512
|
-
|
|
4513
|
-
ClusterSecurityGroupName?: string;
|
|
4514
|
-
|
|
4515
|
-
Status?: string;
|
|
4516
|
-
}
|
|
4517
|
-
export declare namespace AwsRedshiftClusterClusterSecurityGroup {
|
|
4518
|
-
|
|
4519
|
-
const filterSensitiveLog: (obj: AwsRedshiftClusterClusterSecurityGroup) => any;
|
|
4520
|
-
}
|
|
4521
|
-
|
|
4522
|
-
export interface AwsRedshiftClusterClusterSnapshotCopyStatus {
|
|
4523
|
-
|
|
4524
|
-
DestinationRegion?: string;
|
|
4525
|
-
|
|
4526
|
-
ManualSnapshotRetentionPeriod?: number;
|
|
4527
|
-
|
|
4528
|
-
RetentionPeriod?: number;
|
|
4529
|
-
|
|
4530
|
-
SnapshotCopyGrantName?: string;
|
|
4531
|
-
}
|
|
4532
|
-
export declare namespace AwsRedshiftClusterClusterSnapshotCopyStatus {
|
|
4258
|
+
export declare namespace AwsOpenSearchServiceDomainLogPublishingOption {
|
|
4533
4259
|
|
|
4534
|
-
const filterSensitiveLog: (obj:
|
|
4260
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainLogPublishingOption) => any;
|
|
4535
4261
|
}
|
|
4536
4262
|
|
|
4537
|
-
export interface
|
|
4263
|
+
export interface AwsOpenSearchServiceDomainLogPublishingOptionsDetails {
|
|
4538
4264
|
|
|
4539
|
-
|
|
4265
|
+
IndexSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
|
|
4540
4266
|
|
|
4541
|
-
|
|
4267
|
+
SearchSlowLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
|
|
4542
4268
|
|
|
4543
|
-
|
|
4269
|
+
AuditLogs?: AwsOpenSearchServiceDomainLogPublishingOption;
|
|
4544
4270
|
}
|
|
4545
|
-
export declare namespace
|
|
4271
|
+
export declare namespace AwsOpenSearchServiceDomainLogPublishingOptionsDetails {
|
|
4546
4272
|
|
|
4547
|
-
const filterSensitiveLog: (obj:
|
|
4273
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainLogPublishingOptionsDetails) => any;
|
|
4548
4274
|
}
|
|
4549
4275
|
|
|
4550
|
-
export interface
|
|
4551
|
-
|
|
4552
|
-
ElasticIp?: string;
|
|
4276
|
+
export interface AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
|
|
4553
4277
|
|
|
4554
|
-
|
|
4278
|
+
Enabled?: boolean;
|
|
4555
4279
|
}
|
|
4556
|
-
export declare namespace
|
|
4280
|
+
export declare namespace AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails {
|
|
4557
4281
|
|
|
4558
|
-
const filterSensitiveLog: (obj:
|
|
4282
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails) => any;
|
|
4559
4283
|
}
|
|
4560
4284
|
|
|
4561
|
-
export interface
|
|
4285
|
+
export interface AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails {
|
|
4562
4286
|
|
|
4563
|
-
|
|
4287
|
+
AutomatedUpdateDate?: string;
|
|
4564
4288
|
|
|
4565
|
-
|
|
4566
|
-
}
|
|
4567
|
-
export declare namespace AwsRedshiftClusterEndpoint {
|
|
4289
|
+
Cancellable?: boolean;
|
|
4568
4290
|
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
export interface AwsRedshiftClusterHsmStatus {
|
|
4291
|
+
CurrentVersion?: string;
|
|
4292
|
+
|
|
4293
|
+
Description?: string;
|
|
4573
4294
|
|
|
4574
|
-
|
|
4295
|
+
NewVersion?: string;
|
|
4575
4296
|
|
|
4576
|
-
|
|
4297
|
+
UpdateAvailable?: boolean;
|
|
4577
4298
|
|
|
4578
|
-
|
|
4299
|
+
UpdateStatus?: string;
|
|
4300
|
+
|
|
4301
|
+
OptionalDeployment?: boolean;
|
|
4579
4302
|
}
|
|
4580
|
-
export declare namespace
|
|
4303
|
+
export declare namespace AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails {
|
|
4581
4304
|
|
|
4582
|
-
const filterSensitiveLog: (obj:
|
|
4305
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails) => any;
|
|
4583
4306
|
}
|
|
4584
4307
|
|
|
4585
|
-
export interface
|
|
4308
|
+
export interface AwsOpenSearchServiceDomainVpcOptionsDetails {
|
|
4586
4309
|
|
|
4587
|
-
|
|
4310
|
+
SecurityGroupIds?: string[];
|
|
4588
4311
|
|
|
4589
|
-
|
|
4312
|
+
SubnetIds?: string[];
|
|
4590
4313
|
}
|
|
4591
|
-
export declare namespace
|
|
4314
|
+
export declare namespace AwsOpenSearchServiceDomainVpcOptionsDetails {
|
|
4592
4315
|
|
|
4593
|
-
const filterSensitiveLog: (obj:
|
|
4316
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainVpcOptionsDetails) => any;
|
|
4594
4317
|
}
|
|
4595
4318
|
|
|
4596
|
-
export interface
|
|
4319
|
+
export interface AwsOpenSearchServiceDomainDetails {
|
|
4320
|
+
|
|
4321
|
+
Arn?: string;
|
|
4597
4322
|
|
|
4598
|
-
|
|
4323
|
+
AccessPolicies?: string;
|
|
4324
|
+
|
|
4325
|
+
DomainName?: string;
|
|
4326
|
+
|
|
4327
|
+
Id?: string;
|
|
4599
4328
|
|
|
4600
|
-
|
|
4329
|
+
DomainEndpoint?: string;
|
|
4601
4330
|
|
|
4602
|
-
|
|
4331
|
+
EngineVersion?: string;
|
|
4603
4332
|
|
|
4604
|
-
|
|
4333
|
+
EncryptionAtRestOptions?: AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails;
|
|
4605
4334
|
|
|
4606
|
-
|
|
4335
|
+
NodeToNodeEncryptionOptions?: AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails;
|
|
4607
4336
|
|
|
4608
|
-
|
|
4337
|
+
ServiceSoftwareOptions?: AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails;
|
|
4609
4338
|
|
|
4610
|
-
|
|
4339
|
+
ClusterConfig?: AwsOpenSearchServiceDomainClusterConfigDetails;
|
|
4611
4340
|
|
|
4612
|
-
|
|
4341
|
+
DomainEndpointOptions?: AwsOpenSearchServiceDomainDomainEndpointOptionsDetails;
|
|
4613
4342
|
|
|
4614
|
-
|
|
4343
|
+
VpcOptions?: AwsOpenSearchServiceDomainVpcOptionsDetails;
|
|
4615
4344
|
|
|
4616
|
-
|
|
4345
|
+
LogPublishingOptions?: AwsOpenSearchServiceDomainLogPublishingOptionsDetails;
|
|
4617
4346
|
|
|
4618
|
-
|
|
4347
|
+
DomainEndpoints?: {
|
|
4348
|
+
[key: string]: string;
|
|
4349
|
+
};
|
|
4619
4350
|
}
|
|
4620
|
-
export declare namespace
|
|
4351
|
+
export declare namespace AwsOpenSearchServiceDomainDetails {
|
|
4621
4352
|
|
|
4622
|
-
const filterSensitiveLog: (obj:
|
|
4353
|
+
const filterSensitiveLog: (obj: AwsOpenSearchServiceDomainDetails) => any;
|
|
4623
4354
|
}
|
|
4624
4355
|
|
|
4625
|
-
export interface
|
|
4356
|
+
export interface AwsRdsDbClusterAssociatedRole {
|
|
4626
4357
|
|
|
4627
|
-
|
|
4358
|
+
RoleArn?: string;
|
|
4628
4359
|
|
|
4629
|
-
|
|
4360
|
+
Status?: string;
|
|
4630
4361
|
}
|
|
4631
|
-
export declare namespace
|
|
4362
|
+
export declare namespace AwsRdsDbClusterAssociatedRole {
|
|
4632
4363
|
|
|
4633
|
-
const filterSensitiveLog: (obj:
|
|
4364
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterAssociatedRole) => any;
|
|
4634
4365
|
}
|
|
4635
4366
|
|
|
4636
|
-
export interface
|
|
4637
|
-
|
|
4638
|
-
CurrentRestoreRateInMegaBytesPerSecond?: number;
|
|
4639
|
-
|
|
4640
|
-
ElapsedTimeInSeconds?: number;
|
|
4367
|
+
export interface AwsRdsDbClusterMember {
|
|
4641
4368
|
|
|
4642
|
-
|
|
4369
|
+
IsClusterWriter?: boolean;
|
|
4643
4370
|
|
|
4644
|
-
|
|
4371
|
+
PromotionTier?: number;
|
|
4645
4372
|
|
|
4646
|
-
|
|
4373
|
+
DbInstanceIdentifier?: string;
|
|
4647
4374
|
|
|
4648
|
-
|
|
4375
|
+
DbClusterParameterGroupStatus?: string;
|
|
4649
4376
|
}
|
|
4650
|
-
export declare namespace
|
|
4377
|
+
export declare namespace AwsRdsDbClusterMember {
|
|
4651
4378
|
|
|
4652
|
-
const filterSensitiveLog: (obj:
|
|
4379
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterMember) => any;
|
|
4653
4380
|
}
|
|
4654
4381
|
|
|
4655
|
-
export interface
|
|
4382
|
+
export interface AwsRdsDbClusterOptionGroupMembership {
|
|
4656
4383
|
|
|
4657
|
-
|
|
4384
|
+
DbClusterOptionGroupName?: string;
|
|
4658
4385
|
|
|
4659
|
-
|
|
4386
|
+
Status?: string;
|
|
4660
4387
|
}
|
|
4661
|
-
export declare namespace
|
|
4388
|
+
export declare namespace AwsRdsDbClusterOptionGroupMembership {
|
|
4662
4389
|
|
|
4663
|
-
const filterSensitiveLog: (obj:
|
|
4390
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterOptionGroupMembership) => any;
|
|
4664
4391
|
}
|
|
4665
4392
|
|
|
4666
|
-
export interface
|
|
4393
|
+
export interface AwsRdsDbDomainMembership {
|
|
4394
|
+
|
|
4395
|
+
Domain?: string;
|
|
4667
4396
|
|
|
4668
|
-
|
|
4397
|
+
Status?: string;
|
|
4669
4398
|
|
|
4670
|
-
|
|
4399
|
+
Fqdn?: string;
|
|
4671
4400
|
|
|
4672
|
-
|
|
4401
|
+
IamRoleName?: string;
|
|
4402
|
+
}
|
|
4403
|
+
export declare namespace AwsRdsDbDomainMembership {
|
|
4673
4404
|
|
|
4674
|
-
|
|
4405
|
+
const filterSensitiveLog: (obj: AwsRdsDbDomainMembership) => any;
|
|
4406
|
+
}
|
|
4407
|
+
|
|
4408
|
+
export interface AwsRdsDbInstanceVpcSecurityGroup {
|
|
4675
4409
|
|
|
4676
|
-
|
|
4410
|
+
VpcSecurityGroupId?: string;
|
|
4677
4411
|
|
|
4678
|
-
|
|
4412
|
+
Status?: string;
|
|
4413
|
+
}
|
|
4414
|
+
export declare namespace AwsRdsDbInstanceVpcSecurityGroup {
|
|
4679
4415
|
|
|
4680
|
-
|
|
4416
|
+
const filterSensitiveLog: (obj: AwsRdsDbInstanceVpcSecurityGroup) => any;
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
export interface AwsRdsDbClusterDetails {
|
|
4681
4420
|
|
|
4682
|
-
|
|
4421
|
+
AllocatedStorage?: number;
|
|
4683
4422
|
|
|
4684
|
-
|
|
4423
|
+
AvailabilityZones?: string[];
|
|
4685
4424
|
|
|
4686
|
-
|
|
4425
|
+
BackupRetentionPeriod?: number;
|
|
4687
4426
|
|
|
4688
|
-
|
|
4427
|
+
DatabaseName?: string;
|
|
4689
4428
|
|
|
4690
|
-
|
|
4429
|
+
Status?: string;
|
|
4691
4430
|
|
|
4692
|
-
|
|
4431
|
+
Endpoint?: string;
|
|
4693
4432
|
|
|
4694
|
-
|
|
4433
|
+
ReaderEndpoint?: string;
|
|
4695
4434
|
|
|
4696
|
-
|
|
4435
|
+
CustomEndpoints?: string[];
|
|
4697
4436
|
|
|
4698
|
-
|
|
4437
|
+
MultiAz?: boolean;
|
|
4699
4438
|
|
|
4700
|
-
|
|
4439
|
+
Engine?: string;
|
|
4701
4440
|
|
|
4702
|
-
|
|
4441
|
+
EngineVersion?: string;
|
|
4703
4442
|
|
|
4704
|
-
|
|
4443
|
+
Port?: number;
|
|
4705
4444
|
|
|
4706
|
-
|
|
4445
|
+
MasterUsername?: string;
|
|
4707
4446
|
|
|
4708
|
-
|
|
4447
|
+
PreferredBackupWindow?: string;
|
|
4709
4448
|
|
|
4710
|
-
|
|
4449
|
+
PreferredMaintenanceWindow?: string;
|
|
4711
4450
|
|
|
4712
|
-
|
|
4451
|
+
ReadReplicaIdentifiers?: string[];
|
|
4713
4452
|
|
|
4714
|
-
|
|
4453
|
+
VpcSecurityGroups?: AwsRdsDbInstanceVpcSecurityGroup[];
|
|
4715
4454
|
|
|
4716
|
-
|
|
4455
|
+
HostedZoneId?: string;
|
|
4717
4456
|
|
|
4718
|
-
|
|
4457
|
+
StorageEncrypted?: boolean;
|
|
4719
4458
|
|
|
4720
4459
|
KmsKeyId?: string;
|
|
4721
4460
|
|
|
4722
|
-
|
|
4461
|
+
DbClusterResourceId?: string;
|
|
4723
4462
|
|
|
4724
|
-
|
|
4463
|
+
AssociatedRoles?: AwsRdsDbClusterAssociatedRole[];
|
|
4725
4464
|
|
|
4726
|
-
|
|
4465
|
+
ClusterCreateTime?: string;
|
|
4727
4466
|
|
|
4728
|
-
|
|
4467
|
+
EnabledCloudWatchLogsExports?: string[];
|
|
4468
|
+
|
|
4469
|
+
EngineMode?: string;
|
|
4729
4470
|
|
|
4730
|
-
|
|
4471
|
+
DeletionProtection?: boolean;
|
|
4731
4472
|
|
|
4732
|
-
|
|
4473
|
+
HttpEndpointEnabled?: boolean;
|
|
4733
4474
|
|
|
4734
|
-
|
|
4475
|
+
ActivityStreamStatus?: string;
|
|
4735
4476
|
|
|
4736
|
-
|
|
4477
|
+
CopyTagsToSnapshot?: boolean;
|
|
4737
4478
|
|
|
4738
|
-
|
|
4479
|
+
CrossAccountClone?: boolean;
|
|
4739
4480
|
|
|
4740
|
-
|
|
4481
|
+
DomainMemberships?: AwsRdsDbDomainMembership[];
|
|
4741
4482
|
|
|
4742
|
-
|
|
4483
|
+
DbClusterParameterGroup?: string;
|
|
4743
4484
|
|
|
4744
|
-
|
|
4485
|
+
DbSubnetGroup?: string;
|
|
4745
4486
|
|
|
4746
|
-
|
|
4487
|
+
DbClusterOptionGroupMemberships?: AwsRdsDbClusterOptionGroupMembership[];
|
|
4747
4488
|
|
|
4748
|
-
|
|
4489
|
+
DbClusterIdentifier?: string;
|
|
4749
4490
|
|
|
4750
|
-
|
|
4491
|
+
DbClusterMembers?: AwsRdsDbClusterMember[];
|
|
4751
4492
|
|
|
4752
|
-
|
|
4493
|
+
IamDatabaseAuthenticationEnabled?: boolean;
|
|
4753
4494
|
}
|
|
4754
|
-
export declare namespace
|
|
4495
|
+
export declare namespace AwsRdsDbClusterDetails {
|
|
4755
4496
|
|
|
4756
|
-
const filterSensitiveLog: (obj:
|
|
4497
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterDetails) => any;
|
|
4757
4498
|
}
|
|
4758
4499
|
|
|
4759
|
-
export interface
|
|
4500
|
+
export interface AwsRdsDbClusterSnapshotDetails {
|
|
4760
4501
|
|
|
4761
|
-
|
|
4502
|
+
AvailabilityZones?: string[];
|
|
4762
4503
|
|
|
4763
|
-
|
|
4504
|
+
SnapshotCreateTime?: string;
|
|
4764
4505
|
|
|
4765
|
-
|
|
4506
|
+
Engine?: string;
|
|
4766
4507
|
|
|
4767
|
-
|
|
4768
|
-
}
|
|
4769
|
-
export declare namespace AwsS3AccountPublicAccessBlockDetails {
|
|
4508
|
+
AllocatedStorage?: number;
|
|
4770
4509
|
|
|
4771
|
-
|
|
4772
|
-
}
|
|
4773
|
-
|
|
4774
|
-
export interface AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails {
|
|
4510
|
+
Status?: string;
|
|
4775
4511
|
|
|
4776
|
-
|
|
4777
|
-
}
|
|
4778
|
-
export declare namespace AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails {
|
|
4512
|
+
Port?: number;
|
|
4779
4513
|
|
|
4780
|
-
|
|
4781
|
-
}
|
|
4782
|
-
|
|
4783
|
-
export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsTagDetails {
|
|
4514
|
+
VpcId?: string;
|
|
4784
4515
|
|
|
4785
|
-
|
|
4516
|
+
ClusterCreateTime?: string;
|
|
4786
4517
|
|
|
4787
|
-
|
|
4788
|
-
}
|
|
4789
|
-
export declare namespace AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsTagDetails {
|
|
4518
|
+
MasterUsername?: string;
|
|
4790
4519
|
|
|
4791
|
-
|
|
4792
|
-
}
|
|
4793
|
-
|
|
4794
|
-
export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsDetails {
|
|
4520
|
+
EngineVersion?: string;
|
|
4795
4521
|
|
|
4796
|
-
|
|
4522
|
+
LicenseModel?: string;
|
|
4797
4523
|
|
|
4798
|
-
|
|
4524
|
+
SnapshotType?: string;
|
|
4799
4525
|
|
|
4800
|
-
|
|
4801
|
-
}
|
|
4802
|
-
export declare namespace AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsDetails {
|
|
4526
|
+
PercentProgress?: number;
|
|
4803
4527
|
|
|
4804
|
-
|
|
4805
|
-
}
|
|
4806
|
-
|
|
4807
|
-
export interface AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateTagDetails {
|
|
4528
|
+
StorageEncrypted?: boolean;
|
|
4808
4529
|
|
|
4809
|
-
|
|
4530
|
+
KmsKeyId?: string;
|
|
4810
4531
|
|
|
4811
|
-
|
|
4532
|
+
DbClusterIdentifier?: string;
|
|
4533
|
+
|
|
4534
|
+
DbClusterSnapshotIdentifier?: string;
|
|
4535
|
+
|
|
4536
|
+
IamDatabaseAuthenticationEnabled?: boolean;
|
|
4812
4537
|
}
|
|
4813
|
-
export declare namespace
|
|
4538
|
+
export declare namespace AwsRdsDbClusterSnapshotDetails {
|
|
4814
4539
|
|
|
4815
|
-
const filterSensitiveLog: (obj:
|
|
4540
|
+
const filterSensitiveLog: (obj: AwsRdsDbClusterSnapshotDetails) => any;
|
|
4816
4541
|
}
|
|
4817
4542
|
|
|
4818
|
-
export interface
|
|
4819
|
-
|
|
4820
|
-
Operands?: AwsS3BucketBucketLifecycleConfigurationRulesFilterPredicateOperandsDetails[];
|
|
4543
|
+
export interface AwsRdsDbInstanceAssociatedRole {
|
|
4821
4544
|
|
|
4822
|
-
|
|
4545
|
+
RoleArn?: string;
|
|
4823
4546
|
|
|
4824
|
-
|
|
4547
|
+
FeatureName?: string;
|
|
4825
4548
|
|
|
4826
|
-
|
|
4549
|
+
Status?: string;
|
|
4827
4550
|
}
|
|
4828
|
-
export declare namespace
|
|
4551
|
+
export declare namespace AwsRdsDbInstanceAssociatedRole {
|
|
4829
4552
|
|
|
4830
|
-
const filterSensitiveLog: (obj:
|
|
4553
|
+
const filterSensitiveLog: (obj: AwsRdsDbInstanceAssociatedRole) => any;
|
|
4831
4554
|
}
|
|
4832
4555
|
|
|
4833
|
-
export interface
|
|
4556
|
+
export interface AwsRdsDbParameterGroup {
|
|
4557
|
+
|
|
4558
|
+
DbParameterGroupName?: string;
|
|
4834
4559
|
|
|
4835
|
-
|
|
4560
|
+
ParameterApplyStatus?: string;
|
|
4836
4561
|
}
|
|
4837
|
-
export declare namespace
|
|
4562
|
+
export declare namespace AwsRdsDbParameterGroup {
|
|
4838
4563
|
|
|
4839
|
-
const filterSensitiveLog: (obj:
|
|
4564
|
+
const filterSensitiveLog: (obj: AwsRdsDbParameterGroup) => any;
|
|
4840
4565
|
}
|
|
4841
4566
|
|
|
4842
|
-
export interface
|
|
4843
|
-
|
|
4844
|
-
Days?: number;
|
|
4567
|
+
export interface AwsRdsDbSubnetGroupSubnetAvailabilityZone {
|
|
4845
4568
|
|
|
4846
|
-
|
|
4569
|
+
Name?: string;
|
|
4847
4570
|
}
|
|
4848
|
-
export declare namespace
|
|
4571
|
+
export declare namespace AwsRdsDbSubnetGroupSubnetAvailabilityZone {
|
|
4849
4572
|
|
|
4850
|
-
const filterSensitiveLog: (obj:
|
|
4573
|
+
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnetAvailabilityZone) => any;
|
|
4851
4574
|
}
|
|
4852
4575
|
|
|
4853
|
-
export interface
|
|
4576
|
+
export interface AwsRdsDbSubnetGroupSubnet {
|
|
4854
4577
|
|
|
4855
|
-
|
|
4578
|
+
SubnetIdentifier?: string;
|
|
4856
4579
|
|
|
4857
|
-
|
|
4580
|
+
SubnetAvailabilityZone?: AwsRdsDbSubnetGroupSubnetAvailabilityZone;
|
|
4858
4581
|
|
|
4859
|
-
|
|
4582
|
+
SubnetStatus?: string;
|
|
4860
4583
|
}
|
|
4861
|
-
export declare namespace
|
|
4584
|
+
export declare namespace AwsRdsDbSubnetGroupSubnet {
|
|
4862
4585
|
|
|
4863
|
-
const filterSensitiveLog: (obj:
|
|
4586
|
+
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroupSubnet) => any;
|
|
4864
4587
|
}
|
|
4865
4588
|
|
|
4866
|
-
export interface
|
|
4867
|
-
|
|
4868
|
-
AbortIncompleteMultipartUpload?: AwsS3BucketBucketLifecycleConfigurationRulesAbortIncompleteMultipartUploadDetails;
|
|
4869
|
-
|
|
4870
|
-
ExpirationDate?: string;
|
|
4871
|
-
|
|
4872
|
-
ExpirationInDays?: number;
|
|
4873
|
-
|
|
4874
|
-
ExpiredObjectDeleteMarker?: boolean;
|
|
4875
|
-
|
|
4876
|
-
Filter?: AwsS3BucketBucketLifecycleConfigurationRulesFilterDetails;
|
|
4589
|
+
export interface AwsRdsDbSubnetGroup {
|
|
4877
4590
|
|
|
4878
|
-
|
|
4591
|
+
DbSubnetGroupName?: string;
|
|
4879
4592
|
|
|
4880
|
-
|
|
4593
|
+
DbSubnetGroupDescription?: string;
|
|
4881
4594
|
|
|
4882
|
-
|
|
4595
|
+
VpcId?: string;
|
|
4883
4596
|
|
|
4884
|
-
|
|
4597
|
+
SubnetGroupStatus?: string;
|
|
4885
4598
|
|
|
4886
|
-
|
|
4599
|
+
Subnets?: AwsRdsDbSubnetGroupSubnet[];
|
|
4887
4600
|
|
|
4888
|
-
|
|
4601
|
+
DbSubnetGroupArn?: string;
|
|
4889
4602
|
}
|
|
4890
|
-
export declare namespace
|
|
4603
|
+
export declare namespace AwsRdsDbSubnetGroup {
|
|
4891
4604
|
|
|
4892
|
-
const filterSensitiveLog: (obj:
|
|
4605
|
+
const filterSensitiveLog: (obj: AwsRdsDbSubnetGroup) => any;
|
|
4893
4606
|
}
|
|
4894
4607
|
|
|
4895
|
-
export interface
|
|
4896
|
-
|
|
4897
|
-
Rules?: AwsS3BucketBucketLifecycleConfigurationRulesDetails[];
|
|
4898
|
-
}
|
|
4899
|
-
export declare namespace AwsS3BucketBucketLifecycleConfigurationDetails {
|
|
4608
|
+
export interface AwsRdsDbInstanceEndpoint {
|
|
4900
4609
|
|
|
4901
|
-
|
|
4902
|
-
}
|
|
4903
|
-
|
|
4904
|
-
export interface AwsS3BucketLoggingConfiguration {
|
|
4610
|
+
Address?: string;
|
|
4905
4611
|
|
|
4906
|
-
|
|
4612
|
+
Port?: number;
|
|
4907
4613
|
|
|
4908
|
-
|
|
4614
|
+
HostedZoneId?: string;
|
|
4909
4615
|
}
|
|
4910
|
-
export declare namespace
|
|
4616
|
+
export declare namespace AwsRdsDbInstanceEndpoint {
|
|
4911
4617
|
|
|
4912
|
-
const filterSensitiveLog: (obj:
|
|
4913
|
-
}
|
|
4914
|
-
export declare enum AwsS3BucketNotificationConfigurationS3KeyFilterRuleName {
|
|
4915
|
-
PREFIX = "Prefix",
|
|
4916
|
-
SUFFIX = "Suffix"
|
|
4618
|
+
const filterSensitiveLog: (obj: AwsRdsDbInstanceEndpoint) => any;
|
|
4917
4619
|
}
|
|
4918
4620
|
|
|
4919
|
-
export interface
|
|
4621
|
+
export interface AwsRdsDbOptionGroupMembership {
|
|
4920
4622
|
|
|
4921
|
-
|
|
4623
|
+
OptionGroupName?: string;
|
|
4922
4624
|
|
|
4923
|
-
|
|
4625
|
+
Status?: string;
|
|
4924
4626
|
}
|
|
4925
|
-
export declare namespace
|
|
4627
|
+
export declare namespace AwsRdsDbOptionGroupMembership {
|
|
4926
4628
|
|
|
4927
|
-
const filterSensitiveLog: (obj:
|
|
4629
|
+
const filterSensitiveLog: (obj: AwsRdsDbOptionGroupMembership) => any;
|
|
4928
4630
|
}
|
|
4929
4631
|
|
|
4930
|
-
export interface
|
|
4931
|
-
|
|
4932
|
-
FilterRules?: AwsS3BucketNotificationConfigurationS3KeyFilterRule[];
|
|
4933
|
-
}
|
|
4934
|
-
export declare namespace AwsS3BucketNotificationConfigurationS3KeyFilter {
|
|
4632
|
+
export interface AwsRdsPendingCloudWatchLogsExports {
|
|
4935
4633
|
|
|
4936
|
-
|
|
4937
|
-
}
|
|
4938
|
-
|
|
4939
|
-
export interface AwsS3BucketNotificationConfigurationFilter {
|
|
4634
|
+
LogTypesToEnable?: string[];
|
|
4940
4635
|
|
|
4941
|
-
|
|
4636
|
+
LogTypesToDisable?: string[];
|
|
4942
4637
|
}
|
|
4943
|
-
export declare namespace
|
|
4638
|
+
export declare namespace AwsRdsPendingCloudWatchLogsExports {
|
|
4944
4639
|
|
|
4945
|
-
const filterSensitiveLog: (obj:
|
|
4640
|
+
const filterSensitiveLog: (obj: AwsRdsPendingCloudWatchLogsExports) => any;
|
|
4946
4641
|
}
|