@intentius/chant-lexicon-aws 0.0.11 → 0.0.13
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/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +791 -241
- package/dist/types/index.d.ts +1007 -459
- package/package.json +2 -2
- package/src/codegen/docs.ts +1 -0
- package/src/codegen/generate-typescript.ts +1 -1
- package/src/codegen/generate.ts +3 -2
- package/src/composites/composites.test.ts +148 -0
- package/src/composites/index.ts +2 -0
- package/src/composites/rds-instance.ts +173 -0
- package/src/coverage.test.ts +31 -0
- package/src/generated/index.d.ts +1007 -459
- package/src/generated/index.ts +120 -101
- package/src/generated/lexicon-aws.json +791 -241
- package/src/index.ts +2 -2
- package/src/spec/parse.test.ts +50 -0
- package/src/spec/parse.ts +9 -6
- package/src/validate.test.ts +34 -0
package/src/generated/index.d.ts
CHANGED
|
@@ -426,6 +426,11 @@ export declare class AgentSpace {
|
|
|
426
426
|
readonly AgentSpaceId: string;
|
|
427
427
|
readonly Arn: string;
|
|
428
428
|
readonly CreatedAt: string;
|
|
429
|
+
readonly OperatorApp_Iam_CreatedAt: string;
|
|
430
|
+
readonly OperatorApp_Iam_UpdatedAt: string;
|
|
431
|
+
readonly OperatorApp_Idc_CreatedAt: string;
|
|
432
|
+
readonly OperatorApp_Idc_IdcApplicationArn: string;
|
|
433
|
+
readonly OperatorApp_Idc_UpdatedAt: string;
|
|
429
434
|
readonly UpdatedAt: string;
|
|
430
435
|
}
|
|
431
436
|
|
|
@@ -1057,6 +1062,7 @@ export declare class AnomalySubscription {
|
|
|
1057
1062
|
ThresholdExpression?: string;
|
|
1058
1063
|
}, attributes?: CFResourceAttributes);
|
|
1059
1064
|
readonly AccountId: string;
|
|
1065
|
+
readonly Subscribers_Item_Status: string;
|
|
1060
1066
|
readonly SubscriptionArn: string;
|
|
1061
1067
|
}
|
|
1062
1068
|
|
|
@@ -2039,6 +2045,9 @@ export declare class ApprovalTeam {
|
|
|
2039
2045
|
UpdateSessionArn?: string;
|
|
2040
2046
|
VersionId?: string;
|
|
2041
2047
|
}, attributes?: CFResourceAttributes);
|
|
2048
|
+
readonly Approvers_Item_ApproverId: string;
|
|
2049
|
+
readonly Approvers_Item_PrimaryIdentityStatus: string;
|
|
2050
|
+
readonly Approvers_Item_ResponseTime: string;
|
|
2042
2051
|
readonly Arn: string;
|
|
2043
2052
|
readonly CreationTime: string;
|
|
2044
2053
|
readonly LastUpdateTime: string;
|
|
@@ -2183,6 +2192,8 @@ export declare class AppSyncApi {
|
|
|
2183
2192
|
readonly ApiArn: string;
|
|
2184
2193
|
readonly ApiId: string;
|
|
2185
2194
|
readonly Dns: AppSyncApi_DnsMap;
|
|
2195
|
+
readonly Dns_Http: string;
|
|
2196
|
+
readonly Dns_Realtime: string;
|
|
2186
2197
|
}
|
|
2187
2198
|
|
|
2188
2199
|
export declare class AppSyncApiKey {
|
|
@@ -2486,7 +2497,15 @@ export declare class AssetModel {
|
|
|
2486
2497
|
Tags?: AssetModel_Tag[];
|
|
2487
2498
|
}, attributes?: CFResourceAttributes);
|
|
2488
2499
|
readonly AssetModelArn: string;
|
|
2500
|
+
readonly AssetModelCompositeModels_Item_CompositeModelProperties_Item_Id: string;
|
|
2501
|
+
readonly AssetModelCompositeModels_Item_CompositeModelProperties_Item_Type_Metric_Variables_Item_Value_PropertyId: string;
|
|
2502
|
+
readonly AssetModelCompositeModels_Item_CompositeModelProperties_Item_Type_Transform_Variables_Item_Value_PropertyId: string;
|
|
2503
|
+
readonly AssetModelCompositeModels_Item_Id: string;
|
|
2504
|
+
readonly AssetModelHierarchies_Item_Id: string;
|
|
2489
2505
|
readonly AssetModelId: string;
|
|
2506
|
+
readonly AssetModelProperties_Item_Id: string;
|
|
2507
|
+
readonly AssetModelProperties_Item_Type_Metric_Variables_Item_Value_PropertyId: string;
|
|
2508
|
+
readonly AssetModelProperties_Item_Type_Transform_Variables_Item_Value_PropertyId: string;
|
|
2490
2509
|
}
|
|
2491
2510
|
|
|
2492
2511
|
export declare class Assignment {
|
|
@@ -2645,35 +2664,6 @@ export declare class AutomatedReasoningPolicyVersion {
|
|
|
2645
2664
|
readonly Version: string;
|
|
2646
2665
|
}
|
|
2647
2666
|
|
|
2648
|
-
export declare class AutomationRule {
|
|
2649
|
-
constructor(props: {
|
|
2650
|
-
/** One or more actions to update finding fields if a finding matches the conditions specified in ``Criteria``. */
|
|
2651
|
-
Actions: AutomationRule_AutomationRulesAction[];
|
|
2652
|
-
/** A set of [Security Finding Format (ASFF)](https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-findings-format.html) finding field attributes and corresponding expected values that ASH uses to filter findings. If a rule is enabled and a finding matches the criteria specified in this parameter, ASH applies the rule action to the finding. */
|
|
2653
|
-
Criteria: AutomationRule_AutomationRulesFindingFilters;
|
|
2654
|
-
/** A description of the rule. */
|
|
2655
|
-
Description: string;
|
|
2656
|
-
/** The name of the rule. */
|
|
2657
|
-
RuleName: string;
|
|
2658
|
-
/** An integer ranging from 1 to 1000 that represents the order in which the rule action is applied to findings. Security Hub CSPM applies rules with lower values for this parameter first. */
|
|
2659
|
-
RuleOrder: number;
|
|
2660
|
-
CreatedAt?: string;
|
|
2661
|
-
CreatedBy?: string;
|
|
2662
|
-
/** Specifies whether a rule is the last to be applied with respect to a finding that matches the rule criteria. This is useful when a finding matches the criteria for multiple rules, and each rule has different actions. If a rule is terminal, Security Hub CSPM applies the rule action to a finding that matches the rule criteria and doesn't evaluate other rules for the finding. By default, a rule isn't terminal. */
|
|
2663
|
-
IsTerminal?: boolean;
|
|
2664
|
-
RuleArn?: string;
|
|
2665
|
-
/** Whether the rule is active after it is created. If this parameter is equal to ``ENABLED``, ASH applies the rule to findings and finding updates after the rule is created. */
|
|
2666
|
-
RuleStatus?: "DISABLED" | "ENABLED";
|
|
2667
|
-
/** User-defined tags associated with an automation rule. */
|
|
2668
|
-
Tags?: Record<string, unknown>;
|
|
2669
|
-
UpdatedAt?: string;
|
|
2670
|
-
}, attributes?: CFResourceAttributes);
|
|
2671
|
-
readonly CreatedAt: string;
|
|
2672
|
-
readonly CreatedBy: string;
|
|
2673
|
-
readonly RuleArn: string;
|
|
2674
|
-
readonly UpdatedAt: string;
|
|
2675
|
-
}
|
|
2676
|
-
|
|
2677
2667
|
export declare class AutomationRuleV2 {
|
|
2678
2668
|
constructor(props: {
|
|
2679
2669
|
/** A list of actions to be performed when the rule criteria is met */
|
|
@@ -2758,6 +2748,7 @@ export declare class AutoScalingGroup {
|
|
|
2758
2748
|
To manage various warm-up settings at the group level, we recommend that you set the default instance warmup, *even if it is set to 0 seconds*. To remove a value that you previously set, include the property but specify ``-1`` for the value. However, we strongly recommend keeping the default instance warmup enabled by specifying a value of ``0`` or other nominal value.
|
|
2759
2749
|
Default: None */
|
|
2760
2750
|
DefaultInstanceWarmup?: number;
|
|
2751
|
+
/** The deletion protection setting for the Auto Scaling group. */
|
|
2761
2752
|
DeletionProtection?: string;
|
|
2762
2753
|
/** The desired capacity is the initial capacity of the Auto Scaling group at the time of its creation and the capacity it attempts to maintain. It can scale beyond this capacity if you configure automatic scaling.
|
|
2763
2754
|
The number must be greater than or equal to the minimum size of the group and less than or equal to the maximum size of the group. If you do not specify a desired capacity when creating the stack, the default is the minimum size of the group.
|
|
@@ -3169,6 +3160,7 @@ export declare class BedrockDataSource {
|
|
|
3169
3160
|
VectorIngestionConfiguration?: BedrockDataSource_VectorIngestionConfiguration;
|
|
3170
3161
|
}, attributes?: CFResourceAttributes);
|
|
3171
3162
|
readonly CreatedAt: string;
|
|
3163
|
+
readonly DataSourceConfiguration_WebConfiguration_CrawlerConfiguration_UserAgentHeader: string;
|
|
3172
3164
|
readonly DataSourceId: string;
|
|
3173
3165
|
readonly DataSourceStatus: BedrockDataSource_DataSourceStatus;
|
|
3174
3166
|
readonly FailureReasons: string[];
|
|
@@ -3660,6 +3652,13 @@ export declare class Bucket {
|
|
|
3660
3652
|
readonly Arn: string;
|
|
3661
3653
|
readonly DomainName: string;
|
|
3662
3654
|
readonly DualStackDomainName: string;
|
|
3655
|
+
readonly MetadataConfiguration_Destination: string;
|
|
3656
|
+
readonly MetadataConfiguration_InventoryTableConfiguration_TableArn: string;
|
|
3657
|
+
readonly MetadataConfiguration_InventoryTableConfiguration_TableName: string;
|
|
3658
|
+
readonly MetadataConfiguration_JournalTableConfiguration_TableArn: string;
|
|
3659
|
+
readonly MetadataConfiguration_JournalTableConfiguration_TableName: string;
|
|
3660
|
+
readonly MetadataTableConfiguration_S3TablesDestination_TableArn: string;
|
|
3661
|
+
readonly MetadataTableConfiguration_S3TablesDestination_TableNamespace: string;
|
|
3663
3662
|
readonly RegionalDomainName: string;
|
|
3664
3663
|
readonly WebsiteURL: string;
|
|
3665
3664
|
}
|
|
@@ -3765,7 +3764,11 @@ export declare class CacheCluster {
|
|
|
3765
3764
|
TransitEncryptionEnabled?: boolean;
|
|
3766
3765
|
VpcSecurityGroupIds?: string[];
|
|
3767
3766
|
}, attributes?: CFResourceAttributes);
|
|
3767
|
+
readonly ConfigurationEndpoint_Address: string;
|
|
3768
|
+
readonly ConfigurationEndpoint_Port: string;
|
|
3768
3769
|
readonly Id: string;
|
|
3770
|
+
readonly RedisEndpoint_Address: string;
|
|
3771
|
+
readonly RedisEndpoint_Port: string;
|
|
3769
3772
|
}
|
|
3770
3773
|
|
|
3771
3774
|
export declare class CachePolicy {
|
|
@@ -3851,6 +3854,7 @@ export declare class Canary {
|
|
|
3851
3854
|
/** Provide VPC Configuration if enabled. */
|
|
3852
3855
|
VPCConfig?: Canary_VPCConfig;
|
|
3853
3856
|
}, attributes?: CFResourceAttributes);
|
|
3857
|
+
readonly Code_SourceLocationArn: string;
|
|
3854
3858
|
readonly Id: string;
|
|
3855
3859
|
readonly State: string;
|
|
3856
3860
|
}
|
|
@@ -4115,6 +4119,7 @@ export declare class CfFunction {
|
|
|
4115
4119
|
Stage?: string;
|
|
4116
4120
|
}, attributes?: CFResourceAttributes);
|
|
4117
4121
|
readonly FunctionARN: string;
|
|
4122
|
+
readonly FunctionMetadata_FunctionARN: string;
|
|
4118
4123
|
readonly Stage: string;
|
|
4119
4124
|
}
|
|
4120
4125
|
|
|
@@ -4780,6 +4785,20 @@ export declare class CloudVmCluster {
|
|
|
4780
4785
|
readonly CloudVmClusterArn: string;
|
|
4781
4786
|
readonly CloudVmClusterId: string;
|
|
4782
4787
|
readonly ComputeModel: string;
|
|
4788
|
+
readonly DbNodes_Item_BackupIpId: string;
|
|
4789
|
+
readonly DbNodes_Item_BackupVnic2Id: string;
|
|
4790
|
+
readonly DbNodes_Item_CpuCoreCount: string;
|
|
4791
|
+
readonly DbNodes_Item_DbNodeArn: string;
|
|
4792
|
+
readonly DbNodes_Item_DbNodeId: string;
|
|
4793
|
+
readonly DbNodes_Item_DbNodeStorageSizeInGBs: string;
|
|
4794
|
+
readonly DbNodes_Item_DbSystemId: string;
|
|
4795
|
+
readonly DbNodes_Item_HostIpId: string;
|
|
4796
|
+
readonly DbNodes_Item_Hostname: string;
|
|
4797
|
+
readonly DbNodes_Item_MemorySizeInGBs: string;
|
|
4798
|
+
readonly DbNodes_Item_Ocid: string;
|
|
4799
|
+
readonly DbNodes_Item_Status: string;
|
|
4800
|
+
readonly DbNodes_Item_Vnic2Id: string;
|
|
4801
|
+
readonly DbNodes_Item_VnicId: string;
|
|
4783
4802
|
readonly DiskRedundancy: string;
|
|
4784
4803
|
readonly Domain: string;
|
|
4785
4804
|
readonly ListenerPort: number;
|
|
@@ -5273,6 +5292,26 @@ export declare class Collaboration {
|
|
|
5273
5292
|
readonly CollaborationIdentifier: string;
|
|
5274
5293
|
}
|
|
5275
5294
|
|
|
5295
|
+
export declare class CollectionGroup {
|
|
5296
|
+
constructor(props: {
|
|
5297
|
+
/** The name of the collection group. */
|
|
5298
|
+
Name: string;
|
|
5299
|
+
/** Indicates whether standby replicas are used for the collection group. */
|
|
5300
|
+
StandbyReplicas: "DISABLED" | "ENABLED";
|
|
5301
|
+
/** The Amazon Resource Name (ARN) of the collection group. */
|
|
5302
|
+
Arn?: string;
|
|
5303
|
+
CapacityLimits?: CollectionGroup_CapacityLimits;
|
|
5304
|
+
/** The description of the collection group. */
|
|
5305
|
+
Description?: string;
|
|
5306
|
+
/** The unique identifier of the collection group. */
|
|
5307
|
+
Id?: string;
|
|
5308
|
+
/** An array of key-value pairs to apply to this resource. */
|
|
5309
|
+
Tags?: CollectionGroup_Tag[];
|
|
5310
|
+
}, attributes?: CFResourceAttributes);
|
|
5311
|
+
readonly Arn: string;
|
|
5312
|
+
readonly Id: string;
|
|
5313
|
+
}
|
|
5314
|
+
|
|
5276
5315
|
export declare class Command {
|
|
5277
5316
|
constructor(props: {
|
|
5278
5317
|
/** The unique identifier for the command. */
|
|
@@ -5477,6 +5516,49 @@ export declare class ComputeNodeGroup {
|
|
|
5477
5516
|
readonly Status: "ACTIVE" | "CREATE_FAILED" | "CREATING" | "DELETE_FAILED" | "DELETING" | "UPDATE_FAILED" | "UPDATING";
|
|
5478
5517
|
}
|
|
5479
5518
|
|
|
5519
|
+
export declare class ComputeOptimizerAutomationRule {
|
|
5520
|
+
constructor(props: {
|
|
5521
|
+
/** The name of the automation rule. */
|
|
5522
|
+
Name: string;
|
|
5523
|
+
/** The types of recommended actions this rule will implement. */
|
|
5524
|
+
RecommendedActionTypes: "SnapshotAndDeleteUnattachedEbsVolume" | "UpgradeEbsVolumeType"[];
|
|
5525
|
+
/** The type of automation rule. */
|
|
5526
|
+
RuleType: "AccountRule" | "OrganizationRule";
|
|
5527
|
+
/** The schedule configuration for when the rule runs. */
|
|
5528
|
+
Schedule: ComputeOptimizerAutomationRule_Schedule;
|
|
5529
|
+
/** The status of the automation rule. */
|
|
5530
|
+
Status: "Active" | "Inactive";
|
|
5531
|
+
/** The AWS account ID that owns the automation rule. */
|
|
5532
|
+
AccountId?: string;
|
|
5533
|
+
/** The timestamp when the automation rule was created. */
|
|
5534
|
+
CreatedTimestamp?: string;
|
|
5535
|
+
/** Filter criteria that specify which recommended actions qualify for implementation. */
|
|
5536
|
+
Criteria?: ComputeOptimizerAutomationRule_Criteria;
|
|
5537
|
+
/** The description of the automation rule. */
|
|
5538
|
+
Description?: string;
|
|
5539
|
+
/** The timestamp when the automation rule was last updated. */
|
|
5540
|
+
LastUpdatedTimestamp?: string;
|
|
5541
|
+
/** Organization configuration for organization rules, including rule apply order and account scope. */
|
|
5542
|
+
OrganizationConfiguration?: ComputeOptimizerAutomationRule_OrganizationConfiguration;
|
|
5543
|
+
/** Rule priority within its group */
|
|
5544
|
+
Priority?: string;
|
|
5545
|
+
/** The Amazon Resource Name (ARN) of the automation rule. */
|
|
5546
|
+
RuleArn?: string;
|
|
5547
|
+
/** The unique identifier of the automation rule. */
|
|
5548
|
+
RuleId?: string;
|
|
5549
|
+
/** The revision number of the automation rule. */
|
|
5550
|
+
RuleRevision?: string;
|
|
5551
|
+
/** Tags associated with the automation rule. */
|
|
5552
|
+
Tags?: ComputeOptimizerAutomationRule_Tag[];
|
|
5553
|
+
}, attributes?: CFResourceAttributes);
|
|
5554
|
+
readonly AccountId: string;
|
|
5555
|
+
readonly CreatedTimestamp: string;
|
|
5556
|
+
readonly LastUpdatedTimestamp: string;
|
|
5557
|
+
readonly RuleArn: string;
|
|
5558
|
+
readonly RuleId: string;
|
|
5559
|
+
readonly RuleRevision: string;
|
|
5560
|
+
}
|
|
5561
|
+
|
|
5480
5562
|
export declare class Config {
|
|
5481
5563
|
constructor(props: {
|
|
5482
5564
|
ConfigData: Config_ConfigData;
|
|
@@ -5518,6 +5600,7 @@ export declare class ConfigRule {
|
|
|
5518
5600
|
Scope?: ConfigRule_Scope;
|
|
5519
5601
|
}, attributes?: CFResourceAttributes);
|
|
5520
5602
|
readonly Arn: string;
|
|
5603
|
+
readonly Compliance_Type: string;
|
|
5521
5604
|
readonly ConfigRuleId: string;
|
|
5522
5605
|
}
|
|
5523
5606
|
|
|
@@ -5557,6 +5640,7 @@ export declare class ConfigurationManager {
|
|
|
5557
5640
|
StatusSummaries?: ConfigurationManager_StatusSummary[];
|
|
5558
5641
|
Tags?: Record<string, unknown>;
|
|
5559
5642
|
}, attributes?: CFResourceAttributes);
|
|
5643
|
+
readonly ConfigurationDefinitions_Item_id: string;
|
|
5560
5644
|
readonly CreatedAt: string;
|
|
5561
5645
|
readonly LastModifiedAt: string;
|
|
5562
5646
|
readonly ManagerArn: string;
|
|
@@ -6524,6 +6608,10 @@ export declare class ContainerRecipe {
|
|
|
6524
6608
|
}, attributes?: CFResourceAttributes);
|
|
6525
6609
|
readonly Arn: string;
|
|
6526
6610
|
readonly LatestVersion: ContainerRecipe_LatestVersion;
|
|
6611
|
+
readonly LatestVersion_Arn: string;
|
|
6612
|
+
readonly LatestVersion_Major: string;
|
|
6613
|
+
readonly LatestVersion_Minor: string;
|
|
6614
|
+
readonly LatestVersion_Patch: string;
|
|
6527
6615
|
}
|
|
6528
6616
|
|
|
6529
6617
|
export declare class ContinuousDeploymentPolicy {
|
|
@@ -6877,7 +6965,9 @@ export declare class CustomerProfilesDomain {
|
|
|
6877
6965
|
Tags?: CustomerProfilesDomain_Tag[];
|
|
6878
6966
|
}, attributes?: CFResourceAttributes);
|
|
6879
6967
|
readonly CreatedAt: string;
|
|
6968
|
+
readonly DataStore_Readiness: string;
|
|
6880
6969
|
readonly LastUpdatedAt: string;
|
|
6970
|
+
readonly RuleBasedMatching_Status: string;
|
|
6881
6971
|
readonly Stats: CustomerProfilesDomain_DomainStats;
|
|
6882
6972
|
}
|
|
6883
6973
|
|
|
@@ -6920,6 +7010,8 @@ export declare class CustomerProfilesIntegration {
|
|
|
6920
7010
|
ObjectTypeName?: string;
|
|
6921
7011
|
/** The mapping between 3rd party event types and ObjectType names */
|
|
6922
7012
|
ObjectTypeNames?: CustomerProfilesIntegration_ObjectTypeMapping[];
|
|
7013
|
+
/** Scope of the integration, such as 'PROFILE' or 'DOMAIN' */
|
|
7014
|
+
Scope?: "DOMAIN" | "PROFILE";
|
|
6923
7015
|
/** The tags (keys and values) associated with the integration */
|
|
6924
7016
|
Tags?: CustomerProfilesIntegration_Tag[];
|
|
6925
7017
|
/** The URI of the S3 bucket or any other type of data source. */
|
|
@@ -8393,7 +8485,11 @@ export declare class DbCluster {
|
|
|
8393
8485
|
readonly DBClusterArn: string;
|
|
8394
8486
|
readonly DBClusterResourceId: string;
|
|
8395
8487
|
readonly Endpoint: DbCluster_Endpoint;
|
|
8488
|
+
readonly Endpoint_Address: string;
|
|
8489
|
+
readonly Endpoint_Port: string;
|
|
8490
|
+
readonly MasterUserSecret_SecretArn: string;
|
|
8396
8491
|
readonly ReadEndpoint: DbCluster_ReadEndpoint;
|
|
8492
|
+
readonly ReadEndpoint_Address: string;
|
|
8397
8493
|
readonly StorageThroughput: number;
|
|
8398
8494
|
}
|
|
8399
8495
|
|
|
@@ -9042,14 +9138,23 @@ export declare class DbInstance {
|
|
|
9042
9138
|
}, attributes?: CFResourceAttributes);
|
|
9043
9139
|
readonly AutomaticRestartTime: string;
|
|
9044
9140
|
readonly CertificateDetails: DbInstance_CertificateDetails;
|
|
9141
|
+
readonly CertificateDetails_CAIdentifier: string;
|
|
9142
|
+
readonly CertificateDetails_ValidTill: string;
|
|
9045
9143
|
readonly DBInstanceArn: string;
|
|
9046
9144
|
readonly DBInstanceStatus: string;
|
|
9047
9145
|
readonly DbiResourceId: string;
|
|
9048
9146
|
readonly Endpoint: DbInstance_Endpoint;
|
|
9147
|
+
readonly Endpoint_Address: string;
|
|
9148
|
+
readonly Endpoint_HostedZoneId: string;
|
|
9149
|
+
readonly Endpoint_Port: string;
|
|
9049
9150
|
readonly InstanceCreateTime: string;
|
|
9050
9151
|
readonly IsStorageConfigUpgradeAvailable: boolean;
|
|
9051
9152
|
readonly LatestRestorableTime: string;
|
|
9052
9153
|
readonly ListenerEndpoint: DbInstance_Endpoint;
|
|
9154
|
+
readonly ListenerEndpoint_Address: string;
|
|
9155
|
+
readonly ListenerEndpoint_HostedZoneId: string;
|
|
9156
|
+
readonly ListenerEndpoint_Port: string;
|
|
9157
|
+
readonly MasterUserSecret_SecretArn: string;
|
|
9053
9158
|
readonly PercentProgress: string;
|
|
9054
9159
|
readonly ReadReplicaDBClusterIdentifiers: string[];
|
|
9055
9160
|
readonly ReadReplicaDBInstanceIdentifiers: string[];
|
|
@@ -9870,6 +9975,8 @@ export declare class Disk {
|
|
|
9870
9975
|
readonly DiskArn: string;
|
|
9871
9976
|
readonly Iops: number;
|
|
9872
9977
|
readonly IsAttached: boolean;
|
|
9978
|
+
readonly Location_AvailabilityZone: string;
|
|
9979
|
+
readonly Location_RegionName: string;
|
|
9873
9980
|
readonly Path: string;
|
|
9874
9981
|
readonly ResourceType: string;
|
|
9875
9982
|
readonly State: string;
|
|
@@ -10675,9 +10782,10 @@ export declare class EC2Volume {
|
|
|
10675
10782
|
SourceVolumeId?: string;
|
|
10676
10783
|
/** The tags to apply to the volume during creation. */
|
|
10677
10784
|
Tags?: EC2Volume_Tag[];
|
|
10678
|
-
/** The throughput to provision for a volume, with a maximum of
|
|
10785
|
+
/** The throughput to provision for a volume, with a maximum of 2,000 MiB/s.
|
|
10679
10786
|
This parameter is valid only for ``gp3`` volumes. The default value is 125.
|
|
10680
|
-
Valid Range: Minimum value of 125. Maximum value of
|
|
10787
|
+
Valid Range: Minimum value of 125. Maximum value of 2000.
|
|
10788
|
+
The maximum ratio of throughput to IOPS is 0.25 MiB/s per IOPS. For example, a volume with 3,000 IOPS can have a maximum throughput of 750 MiB/s (3,000 x 0.25). */
|
|
10681
10789
|
Throughput?: number;
|
|
10682
10790
|
VolumeId?: string;
|
|
10683
10791
|
/** Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume. This is also known as *volume initialization*. Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation.
|
|
@@ -11028,6 +11136,8 @@ export declare class EFSFileSystem {
|
|
|
11028
11136
|
}, attributes?: CFResourceAttributes);
|
|
11029
11137
|
readonly Arn: string;
|
|
11030
11138
|
readonly FileSystemId: string;
|
|
11139
|
+
readonly ReplicationConfiguration_Destinations_Item_Status: string;
|
|
11140
|
+
readonly ReplicationConfiguration_Destinations_Item_StatusMessage: string;
|
|
11031
11141
|
}
|
|
11032
11142
|
|
|
11033
11143
|
export declare class EgressOnlyInternetGateway {
|
|
@@ -11115,6 +11225,8 @@ export declare class EKSCapability {
|
|
|
11115
11225
|
Version?: string;
|
|
11116
11226
|
}, attributes?: CFResourceAttributes);
|
|
11117
11227
|
readonly Arn: string;
|
|
11228
|
+
readonly Configuration_ArgoCd_AwsIdc_IdcManagedApplicationArn: string;
|
|
11229
|
+
readonly Configuration_ArgoCd_ServerUrl: string;
|
|
11118
11230
|
readonly CreatedAt: string;
|
|
11119
11231
|
readonly ModifiedAt: string;
|
|
11120
11232
|
readonly Status: string;
|
|
@@ -11170,6 +11282,7 @@ export declare class EKSCluster {
|
|
|
11170
11282
|
readonly EncryptionConfigKeyArn: string;
|
|
11171
11283
|
readonly Endpoint: string;
|
|
11172
11284
|
readonly Id: string;
|
|
11285
|
+
readonly KubernetesNetworkConfig_ServiceIpv6Cidr: string;
|
|
11173
11286
|
readonly OpenIdConnectIssuerUrl: string;
|
|
11174
11287
|
}
|
|
11175
11288
|
|
|
@@ -11281,6 +11394,8 @@ export declare class ElbLoadBalancer {
|
|
|
11281
11394
|
readonly CanonicalHostedZoneNameID: string;
|
|
11282
11395
|
readonly DNSName: string;
|
|
11283
11396
|
readonly Id: string;
|
|
11397
|
+
readonly SourceSecurityGroup_GroupName: string;
|
|
11398
|
+
readonly SourceSecurityGroup_OwnerAlias: string;
|
|
11284
11399
|
}
|
|
11285
11400
|
|
|
11286
11401
|
export declare class Elbv2TrustStore {
|
|
@@ -11351,6 +11466,12 @@ export declare class EmailContact {
|
|
|
11351
11466
|
}, attributes?: CFResourceAttributes);
|
|
11352
11467
|
readonly Arn: string;
|
|
11353
11468
|
readonly EmailContact: EmailContact_EmailContact;
|
|
11469
|
+
readonly EmailContact_Address: string;
|
|
11470
|
+
readonly EmailContact_Arn: string;
|
|
11471
|
+
readonly EmailContact_CreationTime: string;
|
|
11472
|
+
readonly EmailContact_Name: string;
|
|
11473
|
+
readonly EmailContact_Status: string;
|
|
11474
|
+
readonly EmailContact_UpdateTime: string;
|
|
11354
11475
|
}
|
|
11355
11476
|
|
|
11356
11477
|
export declare class EmailIdentity {
|
|
@@ -11646,7 +11767,15 @@ export declare class EndpointAccess {
|
|
|
11646
11767
|
readonly EndpointStatus: string;
|
|
11647
11768
|
readonly Port: number;
|
|
11648
11769
|
readonly VpcEndpoint: Record<string, unknown>;
|
|
11770
|
+
readonly VpcEndpoint_NetworkInterfaces_Item_AvailabilityZone: string;
|
|
11771
|
+
readonly VpcEndpoint_NetworkInterfaces_Item_NetworkInterfaceId: string;
|
|
11772
|
+
readonly VpcEndpoint_NetworkInterfaces_Item_PrivateIpAddress: string;
|
|
11773
|
+
readonly VpcEndpoint_NetworkInterfaces_Item_SubnetId: string;
|
|
11774
|
+
readonly VpcEndpoint_VpcEndpointId: string;
|
|
11775
|
+
readonly VpcEndpoint_VpcId: string;
|
|
11649
11776
|
readonly VpcSecurityGroups: EndpointAccess_VpcSecurityGroup[];
|
|
11777
|
+
readonly VpcSecurityGroups_Item_Status: string;
|
|
11778
|
+
readonly VpcSecurityGroups_Item_VpcSecurityGroupId: string;
|
|
11650
11779
|
}
|
|
11651
11780
|
|
|
11652
11781
|
export declare class EndpointAuthorization {
|
|
@@ -12267,6 +12396,8 @@ export declare class EventsConnection {
|
|
|
12267
12396
|
}, attributes?: CFResourceAttributes);
|
|
12268
12397
|
readonly Arn: string;
|
|
12269
12398
|
readonly ArnForPolicy: string;
|
|
12399
|
+
readonly AuthParameters_ConnectivityParameters_ResourceParameters_ResourceAssociationArn: string;
|
|
12400
|
+
readonly InvocationConnectivityParameters_ResourceParameters_ResourceAssociationArn: string;
|
|
12270
12401
|
readonly SecretArn: string;
|
|
12271
12402
|
}
|
|
12272
12403
|
|
|
@@ -12426,6 +12557,15 @@ export declare class EventType {
|
|
|
12426
12557
|
}, attributes?: CFResourceAttributes);
|
|
12427
12558
|
readonly Arn: string;
|
|
12428
12559
|
readonly CreatedTime: string;
|
|
12560
|
+
readonly EntityTypes_Item_Arn: string;
|
|
12561
|
+
readonly EntityTypes_Item_CreatedTime: string;
|
|
12562
|
+
readonly EntityTypes_Item_LastUpdatedTime: string;
|
|
12563
|
+
readonly EventVariables_Item_Arn: string;
|
|
12564
|
+
readonly EventVariables_Item_CreatedTime: string;
|
|
12565
|
+
readonly EventVariables_Item_LastUpdatedTime: string;
|
|
12566
|
+
readonly Labels_Item_Arn: string;
|
|
12567
|
+
readonly Labels_Item_CreatedTime: string;
|
|
12568
|
+
readonly Labels_Item_LastUpdatedTime: string;
|
|
12429
12569
|
readonly LastUpdatedTime: string;
|
|
12430
12570
|
}
|
|
12431
12571
|
|
|
@@ -12553,6 +12693,7 @@ export declare class Export {
|
|
|
12553
12693
|
ExportArn?: string;
|
|
12554
12694
|
Tags?: Export_ResourceTag[];
|
|
12555
12695
|
}, attributes?: CFResourceAttributes);
|
|
12696
|
+
readonly Export_ExportArn: string;
|
|
12556
12697
|
readonly ExportArn: string;
|
|
12557
12698
|
}
|
|
12558
12699
|
|
|
@@ -12581,6 +12722,19 @@ export declare class ExpressGatewayService {
|
|
|
12581
12722
|
readonly ActiveConfigurations: ExpressGatewayService_ExpressGatewayServiceConfiguration[];
|
|
12582
12723
|
readonly CreatedAt: string;
|
|
12583
12724
|
readonly ECSManagedResourceArns: ExpressGatewayService_ECSManagedResourceArns;
|
|
12725
|
+
readonly ECSManagedResourceArns_AutoScaling: string;
|
|
12726
|
+
readonly ECSManagedResourceArns_AutoScaling_ApplicationAutoScalingPolicies: string;
|
|
12727
|
+
readonly ECSManagedResourceArns_AutoScaling_ScalableTarget: string;
|
|
12728
|
+
readonly ECSManagedResourceArns_IngressPath: string;
|
|
12729
|
+
readonly ECSManagedResourceArns_IngressPath_CertificateArn: string;
|
|
12730
|
+
readonly ECSManagedResourceArns_IngressPath_ListenerArn: string;
|
|
12731
|
+
readonly ECSManagedResourceArns_IngressPath_ListenerRuleArn: string;
|
|
12732
|
+
readonly ECSManagedResourceArns_IngressPath_LoadBalancerArn: string;
|
|
12733
|
+
readonly ECSManagedResourceArns_IngressPath_LoadBalancerSecurityGroups: string;
|
|
12734
|
+
readonly ECSManagedResourceArns_IngressPath_TargetGroupArns: string;
|
|
12735
|
+
readonly ECSManagedResourceArns_LogGroups: string;
|
|
12736
|
+
readonly ECSManagedResourceArns_MetricAlarms: string;
|
|
12737
|
+
readonly ECSManagedResourceArns_ServiceSecurityGroups: string;
|
|
12584
12738
|
readonly Endpoint: string;
|
|
12585
12739
|
readonly ServiceArn: string;
|
|
12586
12740
|
readonly Status: ExpressGatewayService_ExpressGatewayServiceStatus;
|
|
@@ -12751,6 +12905,8 @@ export declare class Field {
|
|
|
12751
12905
|
/** The display name of the field as it appears to agents in the case interface. Should be descriptive and user-friendly (e.g., 'Customer Priority Level', 'Issue Category'). */
|
|
12752
12906
|
Name: string;
|
|
12753
12907
|
Type: Field_FieldType;
|
|
12908
|
+
/** Field-type specific attributes that control rendering and validation behavior */
|
|
12909
|
+
Attributes?: Field_FieldAttributes;
|
|
12754
12910
|
/** The time at which the field was created. */
|
|
12755
12911
|
CreatedTime?: string;
|
|
12756
12912
|
/** A description explaining the purpose and usage of this field in cases. Helps agents and administrators understand what information should be captured in this field. */
|
|
@@ -12967,6 +13123,7 @@ export declare class FirewallRuleGroup {
|
|
|
12967
13123
|
readonly Arn: string;
|
|
12968
13124
|
readonly CreationTime: string;
|
|
12969
13125
|
readonly CreatorRequestId: string;
|
|
13126
|
+
readonly FirewallRules_Item_FirewallThreatProtectionId: string;
|
|
12970
13127
|
readonly Id: string;
|
|
12971
13128
|
readonly ModificationTime: string;
|
|
12972
13129
|
readonly OwnerId: string;
|
|
@@ -13517,9 +13674,29 @@ export declare class FraudDetectorDetector {
|
|
|
13517
13674
|
Tags?: FraudDetectorDetector_Tag[];
|
|
13518
13675
|
}, attributes?: CFResourceAttributes);
|
|
13519
13676
|
readonly Arn: string;
|
|
13677
|
+
readonly AssociatedModels_Item_Arn: string;
|
|
13520
13678
|
readonly CreatedTime: string;
|
|
13521
13679
|
readonly DetectorVersionId: string;
|
|
13680
|
+
readonly EventType_Arn: string;
|
|
13681
|
+
readonly EventType_CreatedTime: string;
|
|
13682
|
+
readonly EventType_EntityTypes_Item_Arn: string;
|
|
13683
|
+
readonly EventType_EntityTypes_Item_CreatedTime: string;
|
|
13684
|
+
readonly EventType_EntityTypes_Item_LastUpdatedTime: string;
|
|
13685
|
+
readonly EventType_EventVariables_Item_Arn: string;
|
|
13686
|
+
readonly EventType_EventVariables_Item_CreatedTime: string;
|
|
13687
|
+
readonly EventType_EventVariables_Item_LastUpdatedTime: string;
|
|
13688
|
+
readonly EventType_Labels_Item_Arn: string;
|
|
13689
|
+
readonly EventType_Labels_Item_CreatedTime: string;
|
|
13690
|
+
readonly EventType_Labels_Item_LastUpdatedTime: string;
|
|
13691
|
+
readonly EventType_LastUpdatedTime: string;
|
|
13522
13692
|
readonly LastUpdatedTime: string;
|
|
13693
|
+
readonly Rules_Item_Arn: string;
|
|
13694
|
+
readonly Rules_Item_CreatedTime: string;
|
|
13695
|
+
readonly Rules_Item_LastUpdatedTime: string;
|
|
13696
|
+
readonly Rules_Item_Outcomes_Item_Arn: string;
|
|
13697
|
+
readonly Rules_Item_Outcomes_Item_CreatedTime: string;
|
|
13698
|
+
readonly Rules_Item_Outcomes_Item_LastUpdatedTime: string;
|
|
13699
|
+
readonly Rules_Item_RuleVersion: string;
|
|
13523
13700
|
}
|
|
13524
13701
|
|
|
13525
13702
|
export declare class FSxFileSystem {
|
|
@@ -13664,6 +13841,8 @@ export declare class Function {
|
|
|
13664
13841
|
}, attributes?: CFResourceAttributes);
|
|
13665
13842
|
readonly Arn: string;
|
|
13666
13843
|
readonly SnapStartResponse: Function_SnapStartResponse;
|
|
13844
|
+
readonly SnapStartResponse_ApplyOn: string;
|
|
13845
|
+
readonly SnapStartResponse_OptimizationStatus: string;
|
|
13667
13846
|
}
|
|
13668
13847
|
|
|
13669
13848
|
export declare class FunctionConfiguration {
|
|
@@ -13761,6 +13940,7 @@ export declare class FuotaTask {
|
|
|
13761
13940
|
readonly Arn: string;
|
|
13762
13941
|
readonly FuotaTaskStatus: string;
|
|
13763
13942
|
readonly Id: string;
|
|
13943
|
+
readonly LoRaWAN_StartTime: string;
|
|
13764
13944
|
}
|
|
13765
13945
|
|
|
13766
13946
|
export declare class GameLiftAlias {
|
|
@@ -15295,6 +15475,10 @@ export declare class ImageBuilderComponent {
|
|
|
15295
15475
|
readonly Arn: string;
|
|
15296
15476
|
readonly Encrypted: boolean;
|
|
15297
15477
|
readonly LatestVersion: ImageBuilderComponent_LatestVersion;
|
|
15478
|
+
readonly LatestVersion_Arn: string;
|
|
15479
|
+
readonly LatestVersion_Major: string;
|
|
15480
|
+
readonly LatestVersion_Minor: string;
|
|
15481
|
+
readonly LatestVersion_Patch: string;
|
|
15298
15482
|
readonly Type: "BUILD" | "TEST";
|
|
15299
15483
|
}
|
|
15300
15484
|
|
|
@@ -15341,6 +15525,10 @@ export declare class ImageBuilderImage {
|
|
|
15341
15525
|
readonly ImageId: string;
|
|
15342
15526
|
readonly ImageUri: string;
|
|
15343
15527
|
readonly LatestVersion: ImageBuilderImage_LatestVersion;
|
|
15528
|
+
readonly LatestVersion_Arn: string;
|
|
15529
|
+
readonly LatestVersion_Major: string;
|
|
15530
|
+
readonly LatestVersion_Minor: string;
|
|
15531
|
+
readonly LatestVersion_Patch: string;
|
|
15344
15532
|
readonly Name: string;
|
|
15345
15533
|
}
|
|
15346
15534
|
|
|
@@ -15395,6 +15583,10 @@ export declare class ImageBuilderWorkflow {
|
|
|
15395
15583
|
}, attributes?: CFResourceAttributes);
|
|
15396
15584
|
readonly Arn: string;
|
|
15397
15585
|
readonly LatestVersion: ImageBuilderWorkflow_LatestVersion;
|
|
15586
|
+
readonly LatestVersion_Arn: string;
|
|
15587
|
+
readonly LatestVersion_Major: string;
|
|
15588
|
+
readonly LatestVersion_Minor: string;
|
|
15589
|
+
readonly LatestVersion_Patch: string;
|
|
15398
15590
|
}
|
|
15399
15591
|
|
|
15400
15592
|
export declare class ImagePipeline {
|
|
@@ -15467,6 +15659,10 @@ export declare class ImageRecipe {
|
|
|
15467
15659
|
}, attributes?: CFResourceAttributes);
|
|
15468
15660
|
readonly Arn: string;
|
|
15469
15661
|
readonly LatestVersion: ImageRecipe_LatestVersion;
|
|
15662
|
+
readonly LatestVersion_Arn: string;
|
|
15663
|
+
readonly LatestVersion_Major: string;
|
|
15664
|
+
readonly LatestVersion_Minor: string;
|
|
15665
|
+
readonly LatestVersion_Patch: string;
|
|
15470
15666
|
}
|
|
15471
15667
|
|
|
15472
15668
|
export declare class ImageVersion {
|
|
@@ -15548,6 +15744,9 @@ export declare class InferenceComponent {
|
|
|
15548
15744
|
readonly InferenceComponentArn: string;
|
|
15549
15745
|
readonly InferenceComponentStatus: InferenceComponent_InferenceComponentStatus;
|
|
15550
15746
|
readonly LastModifiedTime: string;
|
|
15747
|
+
readonly RuntimeConfig_CurrentCopyCount: string;
|
|
15748
|
+
readonly RuntimeConfig_DesiredCopyCount: string;
|
|
15749
|
+
readonly Specification_Container_DeployedImage: string;
|
|
15551
15750
|
}
|
|
15552
15751
|
|
|
15553
15752
|
export declare class InferenceExperiment {
|
|
@@ -16513,7 +16712,9 @@ export declare class IoTSiteWiseAsset {
|
|
|
16513
16712
|
Tags?: IoTSiteWiseAsset_Tag[];
|
|
16514
16713
|
}, attributes?: CFResourceAttributes);
|
|
16515
16714
|
readonly AssetArn: string;
|
|
16715
|
+
readonly AssetHierarchies_Item_Id: string;
|
|
16516
16716
|
readonly AssetId: string;
|
|
16717
|
+
readonly AssetProperties_Item_Id: string;
|
|
16517
16718
|
}
|
|
16518
16719
|
|
|
16519
16720
|
export declare class IoTSiteWiseDashboard {
|
|
@@ -17734,12 +17935,19 @@ export declare class LaunchNotificationConstraint {
|
|
|
17734
17935
|
|
|
17735
17936
|
export declare class LaunchRoleConstraint {
|
|
17736
17937
|
constructor(props: {
|
|
17938
|
+
/** The ID of the portfolio to which this launch role constraint applies. */
|
|
17737
17939
|
PortfolioId: string;
|
|
17940
|
+
/** The ID of the product to which this launch role constraint applies. */
|
|
17738
17941
|
ProductId: string;
|
|
17942
|
+
/** The language code for the constraint. */
|
|
17739
17943
|
AcceptLanguage?: string;
|
|
17944
|
+
/** The description of the launch role constraint. */
|
|
17740
17945
|
Description?: string;
|
|
17946
|
+
/** The unique identifier for the launch role constraint. */
|
|
17741
17947
|
Id?: string;
|
|
17948
|
+
/** The local IAM role name to use in the launch constraint. */
|
|
17742
17949
|
LocalRoleName?: string;
|
|
17950
|
+
/** The ARN of the IAM role used for the launch constraint. */
|
|
17743
17951
|
RoleArn?: string;
|
|
17744
17952
|
}, attributes?: CFResourceAttributes);
|
|
17745
17953
|
readonly Id: string;
|
|
@@ -18109,6 +18317,7 @@ export declare class LightsailContainer {
|
|
|
18109
18317
|
}, attributes?: CFResourceAttributes);
|
|
18110
18318
|
readonly ContainerArn: string;
|
|
18111
18319
|
readonly PrincipalArn: string;
|
|
18320
|
+
readonly PrivateRegistryAccess_EcrImagePullerRole_PrincipalArn: string;
|
|
18112
18321
|
readonly Url: string;
|
|
18113
18322
|
}
|
|
18114
18323
|
|
|
@@ -18203,6 +18412,7 @@ export declare class LightsailDomain {
|
|
|
18203
18412
|
}, attributes?: CFResourceAttributes);
|
|
18204
18413
|
readonly Arn: string;
|
|
18205
18414
|
readonly CreatedAt: string;
|
|
18415
|
+
readonly DomainEntries_Item_Id: string;
|
|
18206
18416
|
readonly Location: Record<string, unknown>;
|
|
18207
18417
|
readonly ResourceType: "Domain";
|
|
18208
18418
|
readonly SupportCode: string;
|
|
@@ -18248,13 +18458,20 @@ export declare class LightsailInstance {
|
|
|
18248
18458
|
/** Username of the Lightsail instance. */
|
|
18249
18459
|
UserName?: string;
|
|
18250
18460
|
}, attributes?: CFResourceAttributes);
|
|
18461
|
+
readonly Hardware_CpuCount: string;
|
|
18462
|
+
readonly Hardware_RamSizeInGb: string;
|
|
18251
18463
|
readonly InstanceArn: string;
|
|
18252
18464
|
readonly Ipv6Addresses: string[];
|
|
18253
18465
|
readonly IsStaticIp: boolean;
|
|
18466
|
+
readonly Location_AvailabilityZone: string;
|
|
18467
|
+
readonly Location_RegionName: string;
|
|
18468
|
+
readonly Networking_MonthlyTransfer_GbPerMonthAllocated: string;
|
|
18254
18469
|
readonly PrivateIpAddress: string;
|
|
18255
18470
|
readonly PublicIpAddress: string;
|
|
18256
18471
|
readonly ResourceType: string;
|
|
18257
18472
|
readonly SshKeyName: string;
|
|
18473
|
+
readonly State_Code: string;
|
|
18474
|
+
readonly State_Name: string;
|
|
18258
18475
|
readonly SupportCode: string;
|
|
18259
18476
|
readonly UserName: string;
|
|
18260
18477
|
}
|
|
@@ -18678,6 +18895,7 @@ export declare class LocationAzureBlob {
|
|
|
18678
18895
|
/** An array of key-value pairs to apply to this resource. */
|
|
18679
18896
|
Tags?: LocationAzureBlob_Tag[];
|
|
18680
18897
|
}, attributes?: CFResourceAttributes);
|
|
18898
|
+
readonly CmkSecretConfig_SecretArn: string;
|
|
18681
18899
|
readonly LocationArn: string;
|
|
18682
18900
|
readonly LocationUri: string;
|
|
18683
18901
|
readonly ManagedSecretConfig: LocationAzureBlob_ManagedSecretConfig;
|
|
@@ -18879,6 +19097,7 @@ export declare class LocationObjectStorage {
|
|
|
18879
19097
|
/** An array of key-value pairs to apply to this resource. */
|
|
18880
19098
|
Tags?: LocationObjectStorage_Tag[];
|
|
18881
19099
|
}, attributes?: CFResourceAttributes);
|
|
19100
|
+
readonly CmkSecretConfig_SecretArn: string;
|
|
18882
19101
|
readonly LocationArn: string;
|
|
18883
19102
|
readonly LocationUri: string;
|
|
18884
19103
|
readonly ManagedSecretConfig: LocationObjectStorage_ManagedSecretConfig;
|
|
@@ -18939,6 +19158,7 @@ export declare class LocationSMB {
|
|
|
18939
19158
|
/** The user who can mount the share, has the permissions to access files and folders in the SMB share. */
|
|
18940
19159
|
User?: string;
|
|
18941
19160
|
}, attributes?: CFResourceAttributes);
|
|
19161
|
+
readonly CmkSecretConfig_SecretArn: string;
|
|
18942
19162
|
readonly LocationArn: string;
|
|
18943
19163
|
readonly LocationUri: string;
|
|
18944
19164
|
readonly ManagedSecretConfig: LocationSMB_ManagedSecretConfig;
|
|
@@ -19712,6 +19932,11 @@ export declare class MediaConnectFlow {
|
|
|
19712
19932
|
readonly FlowArn: string;
|
|
19713
19933
|
readonly FlowAvailabilityZone: string;
|
|
19714
19934
|
readonly FlowNdiMachineName: string;
|
|
19935
|
+
readonly MediaStreams_Item_Fmt: string;
|
|
19936
|
+
readonly Source_IngestIp: string;
|
|
19937
|
+
readonly Source_SourceArn: string;
|
|
19938
|
+
readonly Source_SourceIngestPort: string;
|
|
19939
|
+
readonly VpcInterfaces_Item_NetworkInterfaceIds: string;
|
|
19715
19940
|
}
|
|
19716
19941
|
|
|
19717
19942
|
export declare class MediaConnectGateway {
|
|
@@ -19865,6 +20090,8 @@ export declare class MediaPackageAsset {
|
|
|
19865
20090
|
}, attributes?: CFResourceAttributes);
|
|
19866
20091
|
readonly Arn: string;
|
|
19867
20092
|
readonly CreatedAt: string;
|
|
20093
|
+
readonly EgressEndpoints_Item_PackagingConfigurationId: string;
|
|
20094
|
+
readonly EgressEndpoints_Item_Url: string;
|
|
19868
20095
|
}
|
|
19869
20096
|
|
|
19870
20097
|
export declare class MediaPackageChannel {
|
|
@@ -19885,6 +20112,10 @@ export declare class MediaPackageChannel {
|
|
|
19885
20112
|
Tags?: MediaPackageChannel_Tag[];
|
|
19886
20113
|
}, attributes?: CFResourceAttributes);
|
|
19887
20114
|
readonly Arn: string;
|
|
20115
|
+
readonly HlsIngest_ingestEndpoints_Item_Id: string;
|
|
20116
|
+
readonly HlsIngest_ingestEndpoints_Item_Password: string;
|
|
20117
|
+
readonly HlsIngest_ingestEndpoints_Item_Url: string;
|
|
20118
|
+
readonly HlsIngest_ingestEndpoints_Item_Username: string;
|
|
19888
20119
|
}
|
|
19889
20120
|
|
|
19890
20121
|
export declare class MediaPackageOriginEndpoint {
|
|
@@ -19991,7 +20222,9 @@ export declare class MediaPackageV2OriginEndpoint {
|
|
|
19991
20222
|
readonly Arn: string;
|
|
19992
20223
|
readonly CreatedAt: string;
|
|
19993
20224
|
readonly DashManifestUrls: string[];
|
|
20225
|
+
readonly HlsManifests_Item_Url: string;
|
|
19994
20226
|
readonly HlsManifestUrls: string[];
|
|
20227
|
+
readonly LowLatencyHlsManifests_Item_Url: string;
|
|
19995
20228
|
readonly LowLatencyHlsManifestUrls: string[];
|
|
19996
20229
|
readonly ModifiedAt: string;
|
|
19997
20230
|
readonly MssManifestUrls: string[];
|
|
@@ -20099,6 +20332,31 @@ export declare class Memory {
|
|
|
20099
20332
|
readonly FailureReason: string;
|
|
20100
20333
|
readonly MemoryArn: string;
|
|
20101
20334
|
readonly MemoryId: string;
|
|
20335
|
+
readonly MemoryStrategies_Item_CustomMemoryStrategy_CreatedAt: string;
|
|
20336
|
+
readonly MemoryStrategies_Item_CustomMemoryStrategy_Status: string;
|
|
20337
|
+
readonly MemoryStrategies_Item_CustomMemoryStrategy_StrategyId: string;
|
|
20338
|
+
readonly MemoryStrategies_Item_CustomMemoryStrategy_Type: string;
|
|
20339
|
+
readonly MemoryStrategies_Item_CustomMemoryStrategy_UpdatedAt: string;
|
|
20340
|
+
readonly MemoryStrategies_Item_EpisodicMemoryStrategy_CreatedAt: string;
|
|
20341
|
+
readonly MemoryStrategies_Item_EpisodicMemoryStrategy_Status: string;
|
|
20342
|
+
readonly MemoryStrategies_Item_EpisodicMemoryStrategy_StrategyId: string;
|
|
20343
|
+
readonly MemoryStrategies_Item_EpisodicMemoryStrategy_Type: string;
|
|
20344
|
+
readonly MemoryStrategies_Item_EpisodicMemoryStrategy_UpdatedAt: string;
|
|
20345
|
+
readonly MemoryStrategies_Item_SemanticMemoryStrategy_CreatedAt: string;
|
|
20346
|
+
readonly MemoryStrategies_Item_SemanticMemoryStrategy_Status: string;
|
|
20347
|
+
readonly MemoryStrategies_Item_SemanticMemoryStrategy_StrategyId: string;
|
|
20348
|
+
readonly MemoryStrategies_Item_SemanticMemoryStrategy_Type: string;
|
|
20349
|
+
readonly MemoryStrategies_Item_SemanticMemoryStrategy_UpdatedAt: string;
|
|
20350
|
+
readonly MemoryStrategies_Item_SummaryMemoryStrategy_CreatedAt: string;
|
|
20351
|
+
readonly MemoryStrategies_Item_SummaryMemoryStrategy_Status: string;
|
|
20352
|
+
readonly MemoryStrategies_Item_SummaryMemoryStrategy_StrategyId: string;
|
|
20353
|
+
readonly MemoryStrategies_Item_SummaryMemoryStrategy_Type: string;
|
|
20354
|
+
readonly MemoryStrategies_Item_SummaryMemoryStrategy_UpdatedAt: string;
|
|
20355
|
+
readonly MemoryStrategies_Item_UserPreferenceMemoryStrategy_CreatedAt: string;
|
|
20356
|
+
readonly MemoryStrategies_Item_UserPreferenceMemoryStrategy_Status: string;
|
|
20357
|
+
readonly MemoryStrategies_Item_UserPreferenceMemoryStrategy_StrategyId: string;
|
|
20358
|
+
readonly MemoryStrategies_Item_UserPreferenceMemoryStrategy_Type: string;
|
|
20359
|
+
readonly MemoryStrategies_Item_UserPreferenceMemoryStrategy_UpdatedAt: string;
|
|
20102
20360
|
readonly Status: Memory_MemoryStatus;
|
|
20103
20361
|
readonly UpdatedAt: string;
|
|
20104
20362
|
}
|
|
@@ -20175,6 +20433,8 @@ You cannot modify the value of TransitEncryptionEnabled after the cluster is cre
|
|
|
20175
20433
|
TLSEnabled?: boolean;
|
|
20176
20434
|
}, attributes?: CFResourceAttributes);
|
|
20177
20435
|
readonly ARN: string;
|
|
20436
|
+
readonly ClusterEndpoint_Address: string;
|
|
20437
|
+
readonly ClusterEndpoint_Port: string;
|
|
20178
20438
|
readonly ParameterGroupStatus: string;
|
|
20179
20439
|
readonly Status: string;
|
|
20180
20440
|
}
|
|
@@ -20278,6 +20538,7 @@ export declare class MessageTemplate {
|
|
|
20278
20538
|
Tags?: MessageTemplate_Tag[];
|
|
20279
20539
|
}, attributes?: CFResourceAttributes);
|
|
20280
20540
|
readonly MessageTemplateArn: string;
|
|
20541
|
+
readonly MessageTemplateAttachments_Item_AttachmentId: string;
|
|
20281
20542
|
readonly MessageTemplateContentSha256: string;
|
|
20282
20543
|
readonly MessageTemplateId: string;
|
|
20283
20544
|
}
|
|
@@ -20605,7 +20866,13 @@ export declare class ModelCard {
|
|
|
20605
20866
|
/** Key-value pairs used to manage metadata for model cards. */
|
|
20606
20867
|
Tags?: ModelCard_Tag[];
|
|
20607
20868
|
}, attributes?: CFResourceAttributes);
|
|
20869
|
+
readonly CreatedBy_DomainId: string;
|
|
20870
|
+
readonly CreatedBy_UserProfileArn: string;
|
|
20871
|
+
readonly CreatedBy_UserProfileName: string;
|
|
20608
20872
|
readonly CreationTime: string;
|
|
20873
|
+
readonly LastModifiedBy_DomainId: string;
|
|
20874
|
+
readonly LastModifiedBy_UserProfileArn: string;
|
|
20875
|
+
readonly LastModifiedBy_UserProfileName: string;
|
|
20609
20876
|
readonly LastModifiedTime: string;
|
|
20610
20877
|
readonly ModelCardArn: string;
|
|
20611
20878
|
readonly ModelCardProcessingStatus: "ContentDeleted" | "DeleteCompleted" | "DeleteFailed" | "DeleteInProgress" | "DeletePending" | "ExportJobsDeleted" | "UnsetValue";
|
|
@@ -20852,6 +21119,7 @@ export declare class MPAIdentitySource {
|
|
|
20852
21119
|
}, attributes?: CFResourceAttributes);
|
|
20853
21120
|
readonly CreationTime: string;
|
|
20854
21121
|
readonly IdentitySourceArn: string;
|
|
21122
|
+
readonly IdentitySourceParameters_IamIdentityCenter_ApprovalPortalUrl: string;
|
|
20855
21123
|
readonly IdentitySourceType: string;
|
|
20856
21124
|
readonly Status: string;
|
|
20857
21125
|
readonly StatusCode: string;
|
|
@@ -20892,6 +21160,9 @@ export declare class MSKConfiguration {
|
|
|
20892
21160
|
LatestRevision?: MSKConfiguration_LatestRevision;
|
|
20893
21161
|
}, attributes?: CFResourceAttributes);
|
|
20894
21162
|
readonly Arn: string;
|
|
21163
|
+
readonly LatestRevision_CreationTime: string;
|
|
21164
|
+
readonly LatestRevision_Description: string;
|
|
21165
|
+
readonly LatestRevision_Revision: string;
|
|
20895
21166
|
}
|
|
20896
21167
|
|
|
20897
21168
|
export declare class MSKTopic {
|
|
@@ -20935,6 +21206,8 @@ export declare class MulticastGroup {
|
|
|
20935
21206
|
}, attributes?: CFResourceAttributes);
|
|
20936
21207
|
readonly Arn: string;
|
|
20937
21208
|
readonly Id: string;
|
|
21209
|
+
readonly LoRaWAN_NumberOfDevicesInGroup: string;
|
|
21210
|
+
readonly LoRaWAN_NumberOfDevicesRequested: string;
|
|
20938
21211
|
readonly Status: string;
|
|
20939
21212
|
}
|
|
20940
21213
|
|
|
@@ -21014,6 +21287,7 @@ export declare class MultiRegionAccessPointPolicy {
|
|
|
21014
21287
|
PolicyStatus?: Record<string, unknown>;
|
|
21015
21288
|
}, attributes?: CFResourceAttributes);
|
|
21016
21289
|
readonly PolicyStatus: Record<string, unknown>;
|
|
21290
|
+
readonly PolicyStatus_IsPublic: string;
|
|
21017
21291
|
}
|
|
21018
21292
|
|
|
21019
21293
|
export declare class MultiRegionCluster {
|
|
@@ -21108,6 +21382,11 @@ export declare class MWAAEnvironment {
|
|
|
21108
21382
|
readonly Arn: string;
|
|
21109
21383
|
readonly CeleryExecutorQueue: string;
|
|
21110
21384
|
readonly DatabaseVpcEndpointService: string;
|
|
21385
|
+
readonly LoggingConfiguration_DagProcessingLogs_CloudWatchLogGroupArn: string;
|
|
21386
|
+
readonly LoggingConfiguration_SchedulerLogs_CloudWatchLogGroupArn: string;
|
|
21387
|
+
readonly LoggingConfiguration_TaskLogs_CloudWatchLogGroupArn: string;
|
|
21388
|
+
readonly LoggingConfiguration_WebserverLogs_CloudWatchLogGroupArn: string;
|
|
21389
|
+
readonly LoggingConfiguration_WorkerLogs_CloudWatchLogGroupArn: string;
|
|
21111
21390
|
readonly WebserverUrl: string;
|
|
21112
21391
|
readonly WebserverVpcEndpointService: string;
|
|
21113
21392
|
}
|
|
@@ -22062,6 +22341,8 @@ export declare class ObjectType {
|
|
|
22062
22341
|
MaxProfileObjectCount?: number;
|
|
22063
22342
|
/** The format of your sourceLastUpdatedTimestamp that was previously set up. */
|
|
22064
22343
|
SourceLastUpdatedTimestampFormat?: string;
|
|
22344
|
+
/** Defines the priority order of object types. Lower value indicates higher priority. */
|
|
22345
|
+
SourcePriority?: number;
|
|
22065
22346
|
/** The tags (keys and values) associated with the integration. */
|
|
22066
22347
|
Tags?: ObjectType_Tag[];
|
|
22067
22348
|
/** A unique identifier for the object template. */
|
|
@@ -22353,12 +22634,15 @@ export declare class OpenSearchServiceDomain {
|
|
|
22353
22634
|
Tags?: OpenSearchServiceDomain_Tag[];
|
|
22354
22635
|
VPCOptions?: OpenSearchServiceDomain_VPCOptions;
|
|
22355
22636
|
}, attributes?: CFResourceAttributes);
|
|
22637
|
+
readonly AdvancedSecurityOptions_AnonymousAuthDisableDate: string;
|
|
22356
22638
|
readonly Arn: string;
|
|
22357
22639
|
readonly DomainArn: string;
|
|
22358
22640
|
readonly DomainEndpoint: string;
|
|
22359
22641
|
readonly DomainEndpoints: Record<string, unknown>;
|
|
22360
22642
|
readonly DomainEndpointV2: string;
|
|
22361
22643
|
readonly Id: string;
|
|
22644
|
+
readonly IdentityCenterOptions_IdentityCenterApplicationARN: string;
|
|
22645
|
+
readonly IdentityCenterOptions_IdentityStoreId: string;
|
|
22362
22646
|
readonly ServiceSoftwareOptions: OpenSearchServiceDomain_ServiceSoftwareOptions;
|
|
22363
22647
|
}
|
|
22364
22648
|
|
|
@@ -22906,6 +23190,11 @@ export declare class Package {
|
|
|
22906
23190
|
readonly Arn: string;
|
|
22907
23191
|
readonly CreatedTime: number;
|
|
22908
23192
|
readonly PackageId: string;
|
|
23193
|
+
readonly StorageLocation_BinaryPrefixLocation: string;
|
|
23194
|
+
readonly StorageLocation_Bucket: string;
|
|
23195
|
+
readonly StorageLocation_GeneratedPrefixLocation: string;
|
|
23196
|
+
readonly StorageLocation_ManifestPrefixLocation: string;
|
|
23197
|
+
readonly StorageLocation_RepoPrefixLocation: string;
|
|
22909
23198
|
}
|
|
22910
23199
|
|
|
22911
23200
|
export declare class PackageGroup {
|
|
@@ -23174,6 +23463,7 @@ export declare class PCAConnectorSCEPConnector {
|
|
|
23174
23463
|
OpenIdConfiguration?: PCAConnectorSCEPConnector_OpenIdConfiguration;
|
|
23175
23464
|
Tags?: Record<string, unknown>;
|
|
23176
23465
|
Type?: PCAConnectorSCEPConnector_ConnectorType;
|
|
23466
|
+
VpcEndpointId?: string;
|
|
23177
23467
|
}, attributes?: CFResourceAttributes);
|
|
23178
23468
|
readonly ConnectorArn: string;
|
|
23179
23469
|
readonly Endpoint: string;
|
|
@@ -23557,6 +23847,8 @@ export declare class PlaybackConfiguration {
|
|
|
23557
23847
|
/** The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support. */
|
|
23558
23848
|
TranscodeProfileName?: string;
|
|
23559
23849
|
}, attributes?: CFResourceAttributes);
|
|
23850
|
+
readonly DashConfiguration_ManifestEndpointPrefix: string;
|
|
23851
|
+
readonly HlsConfiguration_ManifestEndpointPrefix: string;
|
|
23560
23852
|
readonly PlaybackConfigurationArn: string;
|
|
23561
23853
|
readonly PlaybackEndpointPrefix: string;
|
|
23562
23854
|
readonly SessionInitializationEndpointPrefix: string;
|
|
@@ -24258,6 +24550,8 @@ export declare class ProjectProfile {
|
|
|
24258
24550
|
readonly CreatedBy: string;
|
|
24259
24551
|
readonly DomainId: string;
|
|
24260
24552
|
readonly DomainUnitId: string;
|
|
24553
|
+
readonly EnvironmentConfigurations_Item_ConfigurationParameters_ResolvedParameters: string;
|
|
24554
|
+
readonly EnvironmentConfigurations_Item_EnvironmentConfigurationId: string;
|
|
24261
24555
|
readonly Id: string;
|
|
24262
24556
|
readonly Identifier: string;
|
|
24263
24557
|
readonly LastUpdatedAt: string;
|
|
@@ -25465,6 +25759,8 @@ The value must be either -1 or an integer between 1 and 3,653. */
|
|
|
25465
25759
|
}, attributes?: CFResourceAttributes);
|
|
25466
25760
|
readonly ClusterNamespaceArn: string;
|
|
25467
25761
|
readonly DeferMaintenanceIdentifier: string;
|
|
25762
|
+
readonly Endpoint_Address: string;
|
|
25763
|
+
readonly Endpoint_Port: string;
|
|
25468
25764
|
readonly MasterPasswordSecretArn: string;
|
|
25469
25765
|
}
|
|
25470
25766
|
|
|
@@ -25594,6 +25890,17 @@ export declare class RedshiftServerlessNamespace {
|
|
|
25594
25890
|
Tags?: RedshiftServerlessNamespace_Tag[];
|
|
25595
25891
|
}, attributes?: CFResourceAttributes);
|
|
25596
25892
|
readonly Namespace: RedshiftServerlessNamespace_Namespace;
|
|
25893
|
+
readonly Namespace_AdminUsername: string;
|
|
25894
|
+
readonly Namespace_CreationDate: string;
|
|
25895
|
+
readonly Namespace_DbName: string;
|
|
25896
|
+
readonly Namespace_DefaultIamRoleArn: string;
|
|
25897
|
+
readonly Namespace_IamRoles: string;
|
|
25898
|
+
readonly Namespace_KmsKeyId: string;
|
|
25899
|
+
readonly Namespace_LogExports: string;
|
|
25900
|
+
readonly Namespace_NamespaceArn: string;
|
|
25901
|
+
readonly Namespace_NamespaceId: string;
|
|
25902
|
+
readonly Namespace_NamespaceName: string;
|
|
25903
|
+
readonly Namespace_Status: string;
|
|
25597
25904
|
}
|
|
25598
25905
|
|
|
25599
25906
|
export declare class RedshiftServerlessSnapshot {
|
|
@@ -25613,6 +25920,16 @@ export declare class RedshiftServerlessSnapshot {
|
|
|
25613
25920
|
}, attributes?: CFResourceAttributes);
|
|
25614
25921
|
readonly OwnerAccount: string;
|
|
25615
25922
|
readonly Snapshot: RedshiftServerlessSnapshot_Snapshot;
|
|
25923
|
+
readonly Snapshot_AdminUsername: string;
|
|
25924
|
+
readonly Snapshot_KmsKeyId: string;
|
|
25925
|
+
readonly Snapshot_NamespaceArn: string;
|
|
25926
|
+
readonly Snapshot_NamespaceName: string;
|
|
25927
|
+
readonly Snapshot_OwnerAccount: string;
|
|
25928
|
+
readonly Snapshot_RetentionPeriod: string;
|
|
25929
|
+
readonly Snapshot_SnapshotArn: string;
|
|
25930
|
+
readonly Snapshot_SnapshotCreateTime: string;
|
|
25931
|
+
readonly Snapshot_SnapshotName: string;
|
|
25932
|
+
readonly Snapshot_Status: string;
|
|
25616
25933
|
}
|
|
25617
25934
|
|
|
25618
25935
|
export declare class RefactorSpacesApplication {
|
|
@@ -25834,96 +26151,67 @@ export declare class ReplicationConfiguration {
|
|
|
25834
26151
|
|
|
25835
26152
|
export declare class ReplicationGroup {
|
|
25836
26153
|
constructor(props: {
|
|
25837
|
-
/** A user-created description for the replication group. */
|
|
25838
26154
|
ReplicationGroupDescription: string;
|
|
25839
|
-
/** A flag that enables encryption at rest when set to true.AtRestEncryptionEnabled after the replication group is created. To enable encryption at rest on a replication group you must set AtRestEncryptionEnabled to true when you create the replication group. */
|
|
25840
26155
|
AtRestEncryptionEnabled?: boolean;
|
|
25841
|
-
/** Reserved parameter. The password used to access a password protected server.AuthToken can be specified only on replication groups where TransitEncryptionEnabled is true. For more information. */
|
|
25842
26156
|
AuthToken?: string;
|
|
25843
|
-
/** Specifies whether a read-only replica is automatically promoted to read/write primary if the existing primary fails. AutomaticFailoverEnabled must be enabled for Redis (cluster mode enabled) replication groups. */
|
|
25844
26157
|
AutomaticFailoverEnabled?: boolean;
|
|
25845
|
-
/** This parameter is currently disabled. */
|
|
25846
26158
|
AutoMinorVersionUpgrade?: boolean;
|
|
25847
|
-
/** The compute and memory capacity of the nodes in the node group (shard). */
|
|
25848
26159
|
CacheNodeType?: string;
|
|
25849
|
-
/** The name of the parameter group to associate with this replication group. If this argument is omitted, the default cache parameter group for the specified engine is used. */
|
|
25850
26160
|
CacheParameterGroupName?: string;
|
|
25851
|
-
/** A list of cache security group names to associate with this replication group. */
|
|
25852
26161
|
CacheSecurityGroupNames?: string[];
|
|
25853
|
-
/** The name of the cache subnet group to be used for the replication group. */
|
|
25854
26162
|
CacheSubnetGroupName?: string;
|
|
25855
|
-
/** Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode to Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled and cluster mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can then complete cluster mode configuration and set the cluster mode to Enabled. For more information, see Modify cluster mode. */
|
|
25856
26163
|
ClusterMode?: string;
|
|
25857
|
-
|
|
25858
|
-
|
|
25859
|
-
/** Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This parameter must be set to true when using r6gd nodes. */
|
|
26164
|
+
ConfigurationEndPointAddress?: string;
|
|
26165
|
+
ConfigurationEndPointPort?: string;
|
|
25860
26166
|
DataTieringEnabled?: boolean;
|
|
25861
|
-
/** The name of the cache engine to be used for the clusters in this replication group. */
|
|
25862
26167
|
Engine?: string;
|
|
25863
|
-
/** The version number of the cache engine to be used for the clusters in this replication group. To view the supported cache engine versions, use the DescribeCacheEngineVersions operation. */
|
|
25864
26168
|
EngineVersion?: string;
|
|
25865
|
-
/** The name of the Global datastore */
|
|
25866
26169
|
GlobalReplicationGroupId?: string;
|
|
25867
|
-
/** The network type you choose when creating a replication group, either ipv4 | ipv6. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system. */
|
|
25868
26170
|
IpDiscovery?: string;
|
|
25869
|
-
/** The ID of the KMS key used to encrypt the disk on the cluster. */
|
|
25870
26171
|
KmsKeyId?: string;
|
|
25871
|
-
/** Specifies the destination, format and type of the logs. */
|
|
25872
26172
|
LogDeliveryConfigurations?: ReplicationGroup_LogDeliveryConfigurationRequest[];
|
|
25873
|
-
/** A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime: Multi-AZ. */
|
|
25874
26173
|
MultiAZEnabled?: boolean;
|
|
25875
|
-
/** Must be either ipv4 | ipv6 | dual_stack. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system */
|
|
25876
26174
|
NetworkType?: string;
|
|
25877
|
-
/** NodeGroupConfiguration is a property of the AWS::ElastiCache::ReplicationGroup resource that configures an Amazon ElastiCache (ElastiCache) Redis cluster node group. */
|
|
25878
26175
|
NodeGroupConfiguration?: ReplicationGroup_NodeGroupConfiguration[];
|
|
25879
|
-
/** The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are sent. */
|
|
25880
26176
|
NotificationTopicArn?: string;
|
|
25881
|
-
/** The number of clusters this replication group initially has.This parameter is not used if there is more than one node group (shard). You should use ReplicasPerNodeGroup instead. */
|
|
25882
26177
|
NumCacheClusters?: number;
|
|
25883
|
-
/** An optional parameter that specifies the number of node groups (shards) for this Redis (cluster mode enabled) replication group. For Redis (cluster mode disabled) either omit this parameter or set it to 1. */
|
|
25884
26178
|
NumNodeGroups?: number;
|
|
25885
|
-
/** The port number on which each member of the replication group accepts connections. */
|
|
25886
26179
|
Port?: number;
|
|
25887
|
-
/** A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the Availability Zones in the list is the order in which clusters are allocated. The primary cluster is created in the first AZ in the list. This parameter is not used if there is more than one node group (shard). You should use NodeGroupConfiguration instead. */
|
|
25888
26180
|
PreferredCacheClusterAZs?: string[];
|
|
25889
|
-
/** Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. */
|
|
25890
26181
|
PreferredMaintenanceWindow?: string;
|
|
25891
|
-
/** The identifier of the cluster that serves as the primary for this replication group. This cluster must already exist and have a status of available. */
|
|
25892
26182
|
PrimaryClusterId?: string;
|
|
25893
|
-
|
|
25894
|
-
|
|
25895
|
-
|
|
25896
|
-
|
|
25897
|
-
|
|
25898
|
-
|
|
26183
|
+
PrimaryEndPointAddress?: string;
|
|
26184
|
+
PrimaryEndPointPort?: string;
|
|
26185
|
+
ReadEndPointAddresses?: string;
|
|
26186
|
+
ReadEndPointAddressesList?: string[];
|
|
26187
|
+
ReadEndPointPorts?: string;
|
|
26188
|
+
ReadEndPointPortsList?: string[];
|
|
26189
|
+
ReaderEndPointAddress?: string;
|
|
26190
|
+
ReaderEndPointPort?: string;
|
|
25899
26191
|
ReplicasPerNodeGroup?: number;
|
|
25900
|
-
/** The replication group identifier. This parameter is stored as a lowercase string. */
|
|
25901
26192
|
ReplicationGroupId?: string;
|
|
25902
|
-
/** One or more Amazon VPC security groups associated with this replication group. */
|
|
25903
26193
|
SecurityGroupIds?: string[];
|
|
25904
|
-
/** A list of Amazon Resource Names (ARN) that uniquely identify the Redis RDB snapshot files stored in Amazon S3. */
|
|
25905
26194
|
SnapshotArns?: string[];
|
|
25906
|
-
/** The name of a snapshot from which to restore data into the new replication group. The snapshot status changes to restoring while the new replication group is being created. */
|
|
25907
26195
|
SnapshotName?: string;
|
|
25908
|
-
/** The number of days for which ElastiCache retains automatic snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted. */
|
|
25909
26196
|
SnapshotRetentionLimit?: number;
|
|
25910
|
-
/** The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot be set for Redis (cluster mode enabled) replication groups. */
|
|
25911
26197
|
SnapshottingClusterId?: string;
|
|
25912
|
-
/** The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your node group (shard). */
|
|
25913
26198
|
SnapshotWindow?: string;
|
|
25914
|
-
/** A list of cost allocation tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=myKey, Value=myKeyValue. You can include multiple tags as shown following: Key=myKey, Value=myKeyValue Key=mySecondKey, Value=mySecondKeyValue. */
|
|
25915
26199
|
Tags?: ReplicationGroup_Tag[];
|
|
25916
|
-
/** A flag that enables in-transit encryption when set to true. */
|
|
25917
26200
|
TransitEncryptionEnabled?: boolean;
|
|
25918
|
-
/** A setting that allows you to migrate your clients to use in-transit encryption, with no downtime. When setting TransitEncryptionEnabled to true, you can set your TransitEncryptionMode to preferred in the same request, to allow both encrypted and unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted connections you can modify the value to required to allow encrypted connections only. Setting TransitEncryptionMode to required is a two-step process that requires you to first set the TransitEncryptionMode to preferred, after that you can set TransitEncryptionMode to required. This process will not trigger the replacement of the replication group. */
|
|
25919
26201
|
TransitEncryptionMode?: string;
|
|
25920
|
-
/** The ID of user group to associate with the replication group. */
|
|
25921
26202
|
UserGroupIds?: string[];
|
|
25922
26203
|
}, attributes?: CFResourceAttributes);
|
|
25923
|
-
readonly
|
|
25924
|
-
readonly
|
|
25925
|
-
readonly
|
|
25926
|
-
readonly
|
|
26204
|
+
readonly ConfigurationEndPoint_Address: string;
|
|
26205
|
+
readonly ConfigurationEndPoint_Port: string;
|
|
26206
|
+
readonly PrimaryEndPoint_Address: string;
|
|
26207
|
+
readonly PrimaryEndPoint_Port: string;
|
|
26208
|
+
readonly ReadEndPoint_Addresses: string;
|
|
26209
|
+
readonly ReadEndPoint_Addresses_List: string;
|
|
26210
|
+
readonly ReadEndPoint_Ports: string;
|
|
26211
|
+
readonly ReadEndPoint_Ports_List: string;
|
|
26212
|
+
readonly ReaderEndPoint_Address: string;
|
|
26213
|
+
readonly ReaderEndPoint_Port: string;
|
|
26214
|
+
readonly ReplicationGroupId: string;
|
|
25927
26215
|
}
|
|
25928
26216
|
|
|
25929
26217
|
export declare class ReplicationInstance {
|
|
@@ -27617,6 +27905,8 @@ export declare class S3AccessPointAttachment {
|
|
|
27617
27905
|
/** The S3 access point configuration of the S3 access point attachment. */
|
|
27618
27906
|
S3AccessPoint?: S3AccessPointAttachment_S3AccessPoint;
|
|
27619
27907
|
}, attributes?: CFResourceAttributes);
|
|
27908
|
+
readonly S3AccessPoint_Alias: string;
|
|
27909
|
+
readonly S3AccessPoint_ResourceARN: string;
|
|
27620
27910
|
}
|
|
27621
27911
|
|
|
27622
27912
|
export declare class S3BucketPolicy {
|
|
@@ -27678,9 +27968,12 @@ export declare class S3ObjectLambdaAccessPoint {
|
|
|
27678
27968
|
PublicAccessBlockConfiguration?: S3ObjectLambdaAccessPoint_PublicAccessBlockConfiguration;
|
|
27679
27969
|
}, attributes?: CFResourceAttributes);
|
|
27680
27970
|
readonly Alias: S3ObjectLambdaAccessPoint_Alias;
|
|
27971
|
+
readonly Alias_Status: string;
|
|
27972
|
+
readonly Alias_Value: string;
|
|
27681
27973
|
readonly Arn: string;
|
|
27682
27974
|
readonly CreationDate: string;
|
|
27683
27975
|
readonly PolicyStatus: S3ObjectLambdaAccessPoint_PolicyStatus;
|
|
27976
|
+
readonly PolicyStatus_IsPublic: string;
|
|
27684
27977
|
readonly PublicAccessBlockConfiguration: S3ObjectLambdaAccessPoint_PublicAccessBlockConfiguration;
|
|
27685
27978
|
}
|
|
27686
27979
|
|
|
@@ -27772,6 +28065,7 @@ export declare class S3TableIntegration {
|
|
|
27772
28065
|
Tags?: S3TableIntegration_Tag[];
|
|
27773
28066
|
}, attributes?: CFResourceAttributes);
|
|
27774
28067
|
readonly Arn: string;
|
|
28068
|
+
readonly LogSources_Item_Identifier: string;
|
|
27775
28069
|
}
|
|
27776
28070
|
|
|
27777
28071
|
export declare class S3TablesNamespace {
|
|
@@ -27897,6 +28191,8 @@ export declare class SageMakerCluster {
|
|
|
27897
28191
|
readonly ClusterStatus: "Creating" | "Deleting" | "Failed" | "InService" | "RollingBack" | "SystemUpdating" | "Updating";
|
|
27898
28192
|
readonly CreationTime: string;
|
|
27899
28193
|
readonly FailureMessage: string;
|
|
28194
|
+
readonly InstanceGroups_Item_CurrentCount: string;
|
|
28195
|
+
readonly RestrictedInstanceGroups_Item_CurrentCount: string;
|
|
27900
28196
|
}
|
|
27901
28197
|
|
|
27902
28198
|
export declare class SageMakerDevice {
|
|
@@ -28483,6 +28779,9 @@ export declare class SecurityConfig {
|
|
|
28483
28779
|
SamlOptions?: SecurityConfig_SamlConfigOptions;
|
|
28484
28780
|
Type?: SecurityConfig_SecurityConfigType;
|
|
28485
28781
|
}, attributes?: CFResourceAttributes);
|
|
28782
|
+
readonly IamIdentityCenterOptions_ApplicationArn: string;
|
|
28783
|
+
readonly IamIdentityCenterOptions_ApplicationDescription: string;
|
|
28784
|
+
readonly IamIdentityCenterOptions_ApplicationName: string;
|
|
28486
28785
|
readonly Id: string;
|
|
28487
28786
|
}
|
|
28488
28787
|
|
|
@@ -28573,6 +28872,35 @@ export declare class SecurityGroupVpcAssociation {
|
|
|
28573
28872
|
readonly VpcOwnerId: string;
|
|
28574
28873
|
}
|
|
28575
28874
|
|
|
28875
|
+
export declare class SecurityHubAutomationRule {
|
|
28876
|
+
constructor(props: {
|
|
28877
|
+
/** One or more actions to update finding fields if a finding matches the conditions specified in ``Criteria``. */
|
|
28878
|
+
Actions: SecurityHubAutomationRule_AutomationRulesAction[];
|
|
28879
|
+
/** A set of [Security Finding Format (ASFF)](https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-findings-format.html) finding field attributes and corresponding expected values that ASH uses to filter findings. If a rule is enabled and a finding matches the criteria specified in this parameter, ASH applies the rule action to the finding. */
|
|
28880
|
+
Criteria: SecurityHubAutomationRule_AutomationRulesFindingFilters;
|
|
28881
|
+
/** A description of the rule. */
|
|
28882
|
+
Description: string;
|
|
28883
|
+
/** The name of the rule. */
|
|
28884
|
+
RuleName: string;
|
|
28885
|
+
/** An integer ranging from 1 to 1000 that represents the order in which the rule action is applied to findings. Security Hub CSPM applies rules with lower values for this parameter first. */
|
|
28886
|
+
RuleOrder: number;
|
|
28887
|
+
CreatedAt?: string;
|
|
28888
|
+
CreatedBy?: string;
|
|
28889
|
+
/** Specifies whether a rule is the last to be applied with respect to a finding that matches the rule criteria. This is useful when a finding matches the criteria for multiple rules, and each rule has different actions. If a rule is terminal, Security Hub CSPM applies the rule action to a finding that matches the rule criteria and doesn't evaluate other rules for the finding. By default, a rule isn't terminal. */
|
|
28890
|
+
IsTerminal?: boolean;
|
|
28891
|
+
RuleArn?: string;
|
|
28892
|
+
/** Whether the rule is active after it is created. If this parameter is equal to ``ENABLED``, ASH applies the rule to findings and finding updates after the rule is created. */
|
|
28893
|
+
RuleStatus?: "DISABLED" | "ENABLED";
|
|
28894
|
+
/** User-defined tags associated with an automation rule. */
|
|
28895
|
+
Tags?: Record<string, unknown>;
|
|
28896
|
+
UpdatedAt?: string;
|
|
28897
|
+
}, attributes?: CFResourceAttributes);
|
|
28898
|
+
readonly CreatedAt: string;
|
|
28899
|
+
readonly CreatedBy: string;
|
|
28900
|
+
readonly RuleArn: string;
|
|
28901
|
+
readonly UpdatedAt: string;
|
|
28902
|
+
}
|
|
28903
|
+
|
|
28576
28904
|
export declare class SecurityKey {
|
|
28577
28905
|
constructor(props: {
|
|
28578
28906
|
InstanceId: string;
|
|
@@ -28803,7 +29131,11 @@ export declare class ServerlessCache {
|
|
|
28803
29131
|
}, attributes?: CFResourceAttributes);
|
|
28804
29132
|
readonly ARN: string;
|
|
28805
29133
|
readonly CreateTime: string;
|
|
29134
|
+
readonly Endpoint_Address: string;
|
|
29135
|
+
readonly Endpoint_Port: string;
|
|
28806
29136
|
readonly FullEngineVersion: string;
|
|
29137
|
+
readonly ReaderEndpoint_Address: string;
|
|
29138
|
+
readonly ReaderEndpoint_Port: string;
|
|
28807
29139
|
readonly Status: string;
|
|
28808
29140
|
}
|
|
28809
29141
|
|
|
@@ -29108,6 +29440,8 @@ export declare class ServiceNetworkServiceAssociation {
|
|
|
29108
29440
|
}, attributes?: CFResourceAttributes);
|
|
29109
29441
|
readonly Arn: string;
|
|
29110
29442
|
readonly CreatedAt: string;
|
|
29443
|
+
readonly DnsEntry_DomainName: string;
|
|
29444
|
+
readonly DnsEntry_HostedZoneId: string;
|
|
29111
29445
|
readonly Id: string;
|
|
29112
29446
|
readonly ServiceArn: string;
|
|
29113
29447
|
readonly ServiceId: string;
|
|
@@ -29167,6 +29501,22 @@ export declare class ServiceProfile {
|
|
|
29167
29501
|
}, attributes?: CFResourceAttributes);
|
|
29168
29502
|
readonly Arn: string;
|
|
29169
29503
|
readonly Id: string;
|
|
29504
|
+
readonly LoRaWAN_ChannelMask: string;
|
|
29505
|
+
readonly LoRaWAN_DevStatusReqFreq: string;
|
|
29506
|
+
readonly LoRaWAN_DlBucketSize: string;
|
|
29507
|
+
readonly LoRaWAN_DlRate: string;
|
|
29508
|
+
readonly LoRaWAN_DlRatePolicy: string;
|
|
29509
|
+
readonly LoRaWAN_DrMax: string;
|
|
29510
|
+
readonly LoRaWAN_DrMin: string;
|
|
29511
|
+
readonly LoRaWAN_HrAllowed: string;
|
|
29512
|
+
readonly LoRaWAN_MinGwDiversity: string;
|
|
29513
|
+
readonly LoRaWAN_NwkGeoLoc: string;
|
|
29514
|
+
readonly LoRaWAN_ReportDevStatusBattery: string;
|
|
29515
|
+
readonly LoRaWAN_ReportDevStatusMargin: string;
|
|
29516
|
+
readonly LoRaWAN_TargetPer: string;
|
|
29517
|
+
readonly LoRaWAN_UlBucketSize: string;
|
|
29518
|
+
readonly LoRaWAN_UlRate: string;
|
|
29519
|
+
readonly LoRaWAN_UlRatePolicy: string;
|
|
29170
29520
|
}
|
|
29171
29521
|
|
|
29172
29522
|
export declare class ServiceTemplate {
|
|
@@ -29286,6 +29636,11 @@ export declare class SignalCatalog {
|
|
|
29286
29636
|
readonly Arn: string;
|
|
29287
29637
|
readonly CreationTime: string;
|
|
29288
29638
|
readonly LastModificationTime: string;
|
|
29639
|
+
readonly NodeCounts_TotalActuators: string;
|
|
29640
|
+
readonly NodeCounts_TotalAttributes: string;
|
|
29641
|
+
readonly NodeCounts_TotalBranches: string;
|
|
29642
|
+
readonly NodeCounts_TotalNodes: string;
|
|
29643
|
+
readonly NodeCounts_TotalSensors: string;
|
|
29289
29644
|
}
|
|
29290
29645
|
|
|
29291
29646
|
export declare class SignalingChannel {
|
|
@@ -30190,6 +30545,7 @@ export declare class StorageLens {
|
|
|
30190
30545
|
/** A set of tags (key-value pairs) for this Amazon S3 Storage Lens configuration. */
|
|
30191
30546
|
Tags?: StorageLens_Tag[];
|
|
30192
30547
|
}, attributes?: CFResourceAttributes);
|
|
30548
|
+
readonly StorageLensConfiguration_StorageLensArn: string;
|
|
30193
30549
|
}
|
|
30194
30550
|
|
|
30195
30551
|
export declare class StorageLensGroup {
|
|
@@ -32015,6 +32371,12 @@ export declare class TransitGatewayConnectPeer {
|
|
|
32015
32371
|
/** The ID of the Connect peer. */
|
|
32016
32372
|
TransitGatewayConnectPeerId?: string;
|
|
32017
32373
|
}, attributes?: CFResourceAttributes);
|
|
32374
|
+
readonly ConnectPeerConfiguration_BgpConfigurations: string;
|
|
32375
|
+
readonly ConnectPeerConfiguration_BgpConfigurations_Item_BgpStatus: string;
|
|
32376
|
+
readonly ConnectPeerConfiguration_BgpConfigurations_Item_PeerAddress: string;
|
|
32377
|
+
readonly ConnectPeerConfiguration_BgpConfigurations_Item_TransitGatewayAddress: string;
|
|
32378
|
+
readonly ConnectPeerConfiguration_BgpConfigurations_Item_TransitGatewayAsn: string;
|
|
32379
|
+
readonly ConnectPeerConfiguration_Protocol: string;
|
|
32018
32380
|
readonly CreationTime: string;
|
|
32019
32381
|
readonly State: string;
|
|
32020
32382
|
readonly TransitGatewayConnectPeerId: string;
|
|
@@ -32821,6 +33183,9 @@ export declare class UserSettings {
|
|
|
32821
33183
|
WebAuthnAllowed?: UserSettings_EnabledType;
|
|
32822
33184
|
}, attributes?: CFResourceAttributes);
|
|
32823
33185
|
readonly AssociatedPortalArns: string[];
|
|
33186
|
+
readonly BrandingConfiguration_FaviconMetadata: string;
|
|
33187
|
+
readonly BrandingConfiguration_LogoMetadata: string;
|
|
33188
|
+
readonly BrandingConfiguration_WallpaperMetadata: string;
|
|
32824
33189
|
readonly UserSettingsArn: string;
|
|
32825
33190
|
}
|
|
32826
33191
|
|
|
@@ -33576,6 +33941,30 @@ export declare class VPCEncryptionControl {
|
|
|
33576
33941
|
VpcPeeringExclusionInput?: "disable" | "enable";
|
|
33577
33942
|
}, attributes?: CFResourceAttributes);
|
|
33578
33943
|
readonly ResourceExclusions: VPCEncryptionControl_ResourceExclusions;
|
|
33944
|
+
readonly ResourceExclusions_EgressOnlyInternetGateway: string;
|
|
33945
|
+
readonly ResourceExclusions_EgressOnlyInternetGateway_State: string;
|
|
33946
|
+
readonly ResourceExclusions_EgressOnlyInternetGateway_StateMessage: string;
|
|
33947
|
+
readonly ResourceExclusions_ElasticFileSystem: string;
|
|
33948
|
+
readonly ResourceExclusions_ElasticFileSystem_State: string;
|
|
33949
|
+
readonly ResourceExclusions_ElasticFileSystem_StateMessage: string;
|
|
33950
|
+
readonly ResourceExclusions_InternetGateway: string;
|
|
33951
|
+
readonly ResourceExclusions_InternetGateway_State: string;
|
|
33952
|
+
readonly ResourceExclusions_InternetGateway_StateMessage: string;
|
|
33953
|
+
readonly ResourceExclusions_Lambda: string;
|
|
33954
|
+
readonly ResourceExclusions_Lambda_State: string;
|
|
33955
|
+
readonly ResourceExclusions_Lambda_StateMessage: string;
|
|
33956
|
+
readonly ResourceExclusions_NatGateway: string;
|
|
33957
|
+
readonly ResourceExclusions_NatGateway_State: string;
|
|
33958
|
+
readonly ResourceExclusions_NatGateway_StateMessage: string;
|
|
33959
|
+
readonly ResourceExclusions_VirtualPrivateGateway: string;
|
|
33960
|
+
readonly ResourceExclusions_VirtualPrivateGateway_State: string;
|
|
33961
|
+
readonly ResourceExclusions_VirtualPrivateGateway_StateMessage: string;
|
|
33962
|
+
readonly ResourceExclusions_VpcLattice: string;
|
|
33963
|
+
readonly ResourceExclusions_VpcLattice_State: string;
|
|
33964
|
+
readonly ResourceExclusions_VpcLattice_StateMessage: string;
|
|
33965
|
+
readonly ResourceExclusions_VpcPeering: string;
|
|
33966
|
+
readonly ResourceExclusions_VpcPeering_State: string;
|
|
33967
|
+
readonly ResourceExclusions_VpcPeering_StateMessage: string;
|
|
33579
33968
|
readonly State: "available" | "creating" | "delete-failed" | "deleted" | "deleting" | "enforce-failed" | "enforce-in-progress" | "monitor-failed" | "monitor-in-progress";
|
|
33580
33969
|
readonly StateMessage: string;
|
|
33581
33970
|
readonly VpcEncryptionControlId: string;
|
|
@@ -33793,6 +34182,8 @@ export declare class VpcLatticeService {
|
|
|
33793
34182
|
}, attributes?: CFResourceAttributes);
|
|
33794
34183
|
readonly Arn: string;
|
|
33795
34184
|
readonly CreatedAt: string;
|
|
34185
|
+
readonly DnsEntry_DomainName: string;
|
|
34186
|
+
readonly DnsEntry_HostedZoneId: string;
|
|
33796
34187
|
readonly Id: string;
|
|
33797
34188
|
readonly LastUpdatedAt: string;
|
|
33798
34189
|
readonly Status: "ACTIVE" | "CREATE_FAILED" | "CREATE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_IN_PROGRESS";
|
|
@@ -34163,6 +34554,8 @@ export declare class WAFv2RuleGroup {
|
|
|
34163
34554
|
Tags?: WAFv2RuleGroup_Tag[];
|
|
34164
34555
|
}, attributes?: CFResourceAttributes);
|
|
34165
34556
|
readonly Arn: string;
|
|
34557
|
+
readonly AvailableLabels_Item_Name: string;
|
|
34558
|
+
readonly ConsumedLabels_Item_Name: string;
|
|
34166
34559
|
readonly Id: string;
|
|
34167
34560
|
readonly LabelNamespace: string;
|
|
34168
34561
|
}
|
|
@@ -34281,6 +34674,7 @@ export declare class WebApp {
|
|
|
34281
34674
|
WebAppUnits?: any;
|
|
34282
34675
|
}, attributes?: CFResourceAttributes);
|
|
34283
34676
|
readonly Arn: string;
|
|
34677
|
+
readonly IdentityProviderDetails_ApplicationArn: string;
|
|
34284
34678
|
readonly VpcEndpointId: string;
|
|
34285
34679
|
readonly WebAppId: string;
|
|
34286
34680
|
}
|
|
@@ -34406,6 +34800,7 @@ export declare class WirelessDeviceImportTask {
|
|
|
34406
34800
|
readonly InitializedImportedDevicesCount: number;
|
|
34407
34801
|
readonly OnboardedImportedDevicesCount: number;
|
|
34408
34802
|
readonly PendingImportedDevicesCount: number;
|
|
34803
|
+
readonly Sidewalk_DeviceCreationFileList: string;
|
|
34409
34804
|
readonly Status: "COMPLETE" | "DELETING" | "FAILED" | "INITIALIZED" | "INITIALIZING" | "PENDING";
|
|
34410
34805
|
readonly StatusReason: string;
|
|
34411
34806
|
}
|
|
@@ -34547,6 +34942,29 @@ export declare class Workgroup {
|
|
|
34547
34942
|
/** Definition for workgroup resource */
|
|
34548
34943
|
Workgroup?: Workgroup_Workgroup;
|
|
34549
34944
|
}, attributes?: CFResourceAttributes);
|
|
34945
|
+
readonly Workgroup_BaseCapacity: string;
|
|
34946
|
+
readonly Workgroup_ConfigParameters_Item_ParameterKey: string;
|
|
34947
|
+
readonly Workgroup_ConfigParameters_Item_ParameterValue: string;
|
|
34948
|
+
readonly Workgroup_CreationDate: string;
|
|
34949
|
+
readonly Workgroup_Endpoint_Address: string;
|
|
34950
|
+
readonly Workgroup_Endpoint_Port: string;
|
|
34951
|
+
readonly Workgroup_Endpoint_VpcEndpoints_Item_NetworkInterfaces_Item_AvailabilityZone: string;
|
|
34952
|
+
readonly Workgroup_Endpoint_VpcEndpoints_Item_NetworkInterfaces_Item_NetworkInterfaceId: string;
|
|
34953
|
+
readonly Workgroup_Endpoint_VpcEndpoints_Item_NetworkInterfaces_Item_PrivateIpAddress: string;
|
|
34954
|
+
readonly Workgroup_Endpoint_VpcEndpoints_Item_NetworkInterfaces_Item_SubnetId: string;
|
|
34955
|
+
readonly Workgroup_Endpoint_VpcEndpoints_Item_VpcEndpointId: string;
|
|
34956
|
+
readonly Workgroup_Endpoint_VpcEndpoints_Item_VpcId: string;
|
|
34957
|
+
readonly Workgroup_EnhancedVpcRouting: string;
|
|
34958
|
+
readonly Workgroup_MaxCapacity: string;
|
|
34959
|
+
readonly Workgroup_NamespaceName: string;
|
|
34960
|
+
readonly Workgroup_PubliclyAccessible: string;
|
|
34961
|
+
readonly Workgroup_SecurityGroupIds: string;
|
|
34962
|
+
readonly Workgroup_Status: string;
|
|
34963
|
+
readonly Workgroup_SubnetIds: string;
|
|
34964
|
+
readonly Workgroup_TrackName: string;
|
|
34965
|
+
readonly Workgroup_WorkgroupArn: string;
|
|
34966
|
+
readonly Workgroup_WorkgroupId: string;
|
|
34967
|
+
readonly Workgroup_WorkgroupName: string;
|
|
34550
34968
|
}
|
|
34551
34969
|
|
|
34552
34970
|
export declare class WorkGroup {
|
|
@@ -34569,6 +34987,8 @@ export declare class WorkGroup {
|
|
|
34569
34987
|
WorkGroupConfigurationUpdates?: WorkGroup_WorkGroupConfigurationUpdates;
|
|
34570
34988
|
}, attributes?: CFResourceAttributes);
|
|
34571
34989
|
readonly CreationTime: string;
|
|
34990
|
+
readonly WorkGroupConfiguration_EngineVersion_EffectiveEngineVersion: string;
|
|
34991
|
+
readonly WorkGroupConfigurationUpdates_EngineVersion_EffectiveEngineVersion: string;
|
|
34572
34992
|
}
|
|
34573
34993
|
|
|
34574
34994
|
export declare class WorkloadIdentity {
|
|
@@ -34602,6 +35022,7 @@ export declare class WorkspaceInstance {
|
|
|
34602
35022
|
WorkspaceInstanceId?: string;
|
|
34603
35023
|
}, attributes?: CFResourceAttributes);
|
|
34604
35024
|
readonly EC2ManagedInstance: WorkspaceInstance_EC2ManagedInstance;
|
|
35025
|
+
readonly EC2ManagedInstance_InstanceId: string;
|
|
34605
35026
|
readonly ProvisionState: "ALLOCATED" | "ALLOCATING" | "DEALLOCATED" | "DEALLOCATING" | "ERROR_ALLOCATING" | "ERROR_DEALLOCATING";
|
|
34606
35027
|
readonly WorkspaceInstanceId: string;
|
|
34607
35028
|
}
|
|
@@ -47425,308 +47846,10 @@ export declare class AutomaticInputFailoverSettings {
|
|
|
47425
47846
|
});
|
|
47426
47847
|
}
|
|
47427
47848
|
|
|
47428
|
-
export declare class AutomationRule_AutomationRulesAction {
|
|
47429
|
-
constructor(props: {
|
|
47430
|
-
/** Specifies that the automation rule action is an update to a finding field. */
|
|
47431
|
-
FindingFieldsUpdate: AutomationRule_AutomationRulesFindingFieldsUpdate;
|
|
47432
|
-
/** Specifies the type of action that Security Hub CSPM takes when a finding matches the defined criteria of a rule. */
|
|
47433
|
-
Type: "FINDING_FIELDS_UPDATE";
|
|
47434
|
-
});
|
|
47435
|
-
}
|
|
47436
|
-
|
|
47437
|
-
export declare class AutomationRule_AutomationRulesFindingFieldsUpdate {
|
|
47438
|
-
constructor(props: {
|
|
47439
|
-
/** The rule action updates the ``Confidence`` field of a finding. */
|
|
47440
|
-
Confidence?: number;
|
|
47441
|
-
/** The rule action updates the ``Criticality`` field of a finding. */
|
|
47442
|
-
Criticality?: number;
|
|
47443
|
-
/** The rule action will update the ``Note`` field of a finding. */
|
|
47444
|
-
Note?: AutomationRule_NoteUpdate;
|
|
47445
|
-
/** The rule action will update the ``RelatedFindings`` field of a finding. */
|
|
47446
|
-
RelatedFindings?: AutomationRule_RelatedFinding[];
|
|
47447
|
-
/** The rule action will update the ``Severity`` field of a finding. */
|
|
47448
|
-
Severity?: AutomationRule_SeverityUpdate;
|
|
47449
|
-
/** The rule action updates the ``Types`` field of a finding. */
|
|
47450
|
-
Types?: string[];
|
|
47451
|
-
/** The rule action updates the ``UserDefinedFields`` field of a finding. */
|
|
47452
|
-
UserDefinedFields?: Record<string, unknown>;
|
|
47453
|
-
/** The rule action updates the ``VerificationState`` field of a finding. */
|
|
47454
|
-
VerificationState?: "BENIGN_POSITIVE" | "FALSE_POSITIVE" | "TRUE_POSITIVE" | "UNKNOWN";
|
|
47455
|
-
/** The rule action will update the ``Workflow`` field of a finding. */
|
|
47456
|
-
Workflow?: AutomationRule_WorkflowUpdate;
|
|
47457
|
-
});
|
|
47458
|
-
}
|
|
47459
|
-
|
|
47460
|
-
export declare class AutomationRule_AutomationRulesFindingFilters {
|
|
47461
|
-
constructor(props: {
|
|
47462
|
-
/** The AWS-account ID in which a finding was generated.
|
|
47463
|
-
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47464
|
-
AwsAccountId?: AutomationRule_StringFilter[];
|
|
47465
|
-
/** The name of the company for the product that generated the finding. For control-based findings, the company is AWS.
|
|
47466
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47467
|
-
CompanyName?: AutomationRule_StringFilter[];
|
|
47468
|
-
/** The unique identifier of a standard in which a control is enabled. This field consists of the resource portion of the Amazon Resource Name (ARN) returned for a standard in the [DescribeStandards](https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_DescribeStandards.html) API response.
|
|
47469
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47470
|
-
ComplianceAssociatedStandardsId?: AutomationRule_StringFilter[];
|
|
47471
|
-
/** The security control ID for which a finding was generated. Security control IDs are the same across standards.
|
|
47472
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47473
|
-
ComplianceSecurityControlId?: AutomationRule_StringFilter[];
|
|
47474
|
-
/** The result of a security check. This field is only used for findings generated from controls.
|
|
47475
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47476
|
-
ComplianceStatus?: AutomationRule_StringFilter[];
|
|
47477
|
-
/** The likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. ``Confidence`` is scored on a 0–100 basis using a ratio scale. A value of ``0`` means 0 percent confidence, and a value of ``100`` means 100 percent confidence. For example, a data exfiltration detection based on a statistical deviation of network traffic has low confidence because an actual exfiltration hasn't been verified. For more information, see [Confidence](https://docs.aws.amazon.com/securityhub/latest/userguide/asff-top-level-attributes.html#asff-confidence) in the *User Guide*.
|
|
47478
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47479
|
-
Confidence?: AutomationRule_NumberFilter[];
|
|
47480
|
-
/** A timestamp that indicates when this finding record was created.
|
|
47481
|
-
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47482
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47483
|
-
CreatedAt?: AutomationRule_DateFilter[];
|
|
47484
|
-
/** The level of importance that is assigned to the resources that are associated with a finding. ``Criticality`` is scored on a 0–100 basis, using a ratio scale that supports only full integers. A score of ``0`` means that the underlying resources have no criticality, and a score of ``100`` is reserved for the most critical resources. For more information, see [Criticality](https://docs.aws.amazon.com/securityhub/latest/userguide/asff-top-level-attributes.html#asff-criticality) in the *User Guide*.
|
|
47485
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47486
|
-
Criticality?: AutomationRule_NumberFilter[];
|
|
47487
|
-
/** A finding's description.
|
|
47488
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47489
|
-
Description?: AutomationRule_StringFilter[];
|
|
47490
|
-
/** A timestamp that indicates when the potential security issue captured by a finding was first observed by the security findings product.
|
|
47491
|
-
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47492
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47493
|
-
FirstObservedAt?: AutomationRule_DateFilter[];
|
|
47494
|
-
/** The identifier for the solution-specific component that generated a finding.
|
|
47495
|
-
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47496
|
-
GeneratorId?: AutomationRule_StringFilter[];
|
|
47497
|
-
/** The product-specific identifier for a finding.
|
|
47498
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47499
|
-
Id?: AutomationRule_StringFilter[];
|
|
47500
|
-
/** A timestamp that indicates when the security findings provider most recently observed a change in the resource that is involved in the finding.
|
|
47501
|
-
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47502
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47503
|
-
LastObservedAt?: AutomationRule_DateFilter[];
|
|
47504
|
-
/** The text of a user-defined note that's added to a finding.
|
|
47505
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47506
|
-
NoteText?: AutomationRule_StringFilter[];
|
|
47507
|
-
/** The timestamp of when the note was updated.
|
|
47508
|
-
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47509
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47510
|
-
NoteUpdatedAt?: AutomationRule_DateFilter[];
|
|
47511
|
-
/** The principal that created a note.
|
|
47512
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47513
|
-
NoteUpdatedBy?: AutomationRule_StringFilter[];
|
|
47514
|
-
/** The Amazon Resource Name (ARN) for a third-party product that generated a finding in Security Hub CSPM.
|
|
47515
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47516
|
-
ProductArn?: AutomationRule_StringFilter[];
|
|
47517
|
-
/** Provides the name of the product that generated the finding. For control-based findings, the product name is Security Hub CSPM.
|
|
47518
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47519
|
-
ProductName?: AutomationRule_StringFilter[];
|
|
47520
|
-
/** Provides the current state of a finding.
|
|
47521
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47522
|
-
RecordState?: AutomationRule_StringFilter[];
|
|
47523
|
-
/** The product-generated identifier for a related finding.
|
|
47524
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47525
|
-
RelatedFindingsId?: AutomationRule_StringFilter[];
|
|
47526
|
-
/** The ARN for the product that generated a related finding.
|
|
47527
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47528
|
-
RelatedFindingsProductArn?: AutomationRule_StringFilter[];
|
|
47529
|
-
/** Custom fields and values about the resource that a finding pertains to.
|
|
47530
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47531
|
-
ResourceDetailsOther?: AutomationRule_MapFilter[];
|
|
47532
|
-
/** The identifier for the given resource type. For AWS resources that are identified by Amazon Resource Names (ARNs), this is the ARN. For AWS resources that lack ARNs, this is the identifier as defined by the AWS-service that created the resource. For non-AWS resources, this is a unique identifier that is associated with the resource.
|
|
47533
|
-
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47534
|
-
ResourceId?: AutomationRule_StringFilter[];
|
|
47535
|
-
/** The partition in which the resource that the finding pertains to is located. A partition is a group of AWS-Regions. Each AWS-account is scoped to one partition.
|
|
47536
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47537
|
-
ResourcePartition?: AutomationRule_StringFilter[];
|
|
47538
|
-
/** The AWS-Region where the resource that a finding pertains to is located.
|
|
47539
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47540
|
-
ResourceRegion?: AutomationRule_StringFilter[];
|
|
47541
|
-
/** A list of AWS tags associated with a resource at the time the finding was processed.
|
|
47542
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47543
|
-
ResourceTags?: AutomationRule_MapFilter[];
|
|
47544
|
-
/** A finding's title.
|
|
47545
|
-
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47546
|
-
ResourceType?: AutomationRule_StringFilter[];
|
|
47547
|
-
/** The severity value of the finding.
|
|
47548
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47549
|
-
SeverityLabel?: AutomationRule_StringFilter[];
|
|
47550
|
-
/** Provides a URL that links to a page about the current finding in the finding product.
|
|
47551
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47552
|
-
SourceUrl?: AutomationRule_StringFilter[];
|
|
47553
|
-
/** A finding's title.
|
|
47554
|
-
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47555
|
-
Title?: AutomationRule_StringFilter[];
|
|
47556
|
-
/** One or more finding types in the format of namespace/category/classifier that classify a finding. For a list of namespaces, classifiers, and categories, see [Types taxonomy for ASFF](https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-findings-format-type-taxonomy.html) in the *User Guide*.
|
|
47557
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47558
|
-
Type?: AutomationRule_StringFilter[];
|
|
47559
|
-
/** A timestamp that indicates when the finding record was most recently updated.
|
|
47560
|
-
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47561
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47562
|
-
UpdatedAt?: AutomationRule_DateFilter[];
|
|
47563
|
-
/** A list of user-defined name and value string pairs added to a finding.
|
|
47564
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47565
|
-
UserDefinedFields?: AutomationRule_MapFilter[];
|
|
47566
|
-
/** Provides the veracity of a finding.
|
|
47567
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47568
|
-
VerificationState?: AutomationRule_StringFilter[];
|
|
47569
|
-
/** Provides information about the status of the investigation into a finding.
|
|
47570
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47571
|
-
WorkflowStatus?: AutomationRule_StringFilter[];
|
|
47572
|
-
});
|
|
47573
|
-
}
|
|
47574
|
-
|
|
47575
|
-
export declare class AutomationRule_BooleanFilter {
|
|
47576
|
-
constructor(props: {
|
|
47577
|
-
/** The value of the boolean. */
|
|
47578
|
-
Value: boolean;
|
|
47579
|
-
});
|
|
47580
|
-
}
|
|
47581
|
-
|
|
47582
|
-
export declare class AutomationRule_DateFilter {
|
|
47583
|
-
constructor(props: {
|
|
47584
|
-
/** A date range for the date filter. */
|
|
47585
|
-
DateRange?: AutomationRule_DateRange;
|
|
47586
|
-
/** A timestamp that provides the end date for the date filter.
|
|
47587
|
-
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps). */
|
|
47588
|
-
End?: string;
|
|
47589
|
-
/** A timestamp that provides the start date for the date filter.
|
|
47590
|
-
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps). */
|
|
47591
|
-
Start?: string;
|
|
47592
|
-
});
|
|
47593
|
-
}
|
|
47594
|
-
|
|
47595
|
-
export declare class AutomationRule_DateRange {
|
|
47596
|
-
constructor(props: {
|
|
47597
|
-
/** A date range unit for the date filter. */
|
|
47598
|
-
Unit: "DAYS";
|
|
47599
|
-
/** A date range value for the date filter. */
|
|
47600
|
-
Value: number;
|
|
47601
|
-
});
|
|
47602
|
-
}
|
|
47603
|
-
|
|
47604
|
-
export declare class AutomationRule_MapFilter {
|
|
47605
|
-
constructor(props: {
|
|
47606
|
-
/** The condition to apply to the key value when filtering Security Hub CSPM findings with a map filter.
|
|
47607
|
-
To search for values that have the filter value, use one of the following comparison operators:
|
|
47608
|
-
+ To search for values that include the filter value, use ``CONTAINS``. For example, for the ``ResourceTags`` field, the filter ``Department CONTAINS Security`` matches findings that include the value ``Security`` for the ``Department`` tag. In the same example, a finding with a value of ``Security team`` for the ``Department`` tag is a match.
|
|
47609
|
-
+ To search for values that exactly match the filter value, use ``EQUALS``. For example, for the ``ResourceTags`` field, the filter ``Department EQUALS Security`` matches findings that have the value ``Security`` for the ``Department`` tag.
|
|
47610
|
-
|
|
47611
|
-
``CONTAINS`` and ``EQUALS`` filters on the same field are joined by ``OR``. A finding matches if it matches any one of those filters. For example, the filters ``Department CONTAINS Security OR Department CONTAINS Finance`` match a finding that includes either ``Security``, ``Finance``, or both values.
|
|
47612
|
-
To search for values that don't have the filter value, use one of the following comparison operators:
|
|
47613
|
-
+ To search for values that exclude the filter value, use ``NOT_CONTAINS``. For example, for the ``ResourceTags`` field, the filter ``Department NOT_CONTAINS Finance`` matches findings that exclude the value ``Finance`` for the ``Department`` tag.
|
|
47614
|
-
+ To search for values other than the filter value, use ``NOT_EQUALS``. For example, for the ``ResourceTags`` field, the filter ``Department NOT_EQUALS Finance`` matches findings that don’t have the value ``Finance`` for the ``Department`` tag.
|
|
47615
|
-
|
|
47616
|
-
``NOT_CONTAINS`` and ``NOT_EQUALS`` filters on the same field are joined by ``AND``. A finding matches only if it matches all of those filters. For example, the filters ``Department NOT_CONTAINS Security AND Department NOT_CONTAINS Finance`` match a finding that excludes both the ``Security`` and ``Finance`` values.
|
|
47617
|
-
``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
|
|
47618
|
-
You can’t have both a ``CONTAINS`` filter and a ``NOT_CONTAINS`` filter on the same field. Similarly, you can’t have both an ``EQUALS`` filter and a ``NOT_EQUALS`` filter on the same field. Combining filters in this way returns an error.
|
|
47619
|
-
``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*. */
|
|
47620
|
-
Comparison: "CONTAINS" | "EQUALS" | "NOT_CONTAINS" | "NOT_EQUALS";
|
|
47621
|
-
/** The key of the map filter. For example, for ``ResourceTags``, ``Key`` identifies the name of the tag. For ``UserDefinedFields``, ``Key`` is the name of the field. */
|
|
47622
|
-
Key: string;
|
|
47623
|
-
/** The value for the key in the map filter. Filter values are case sensitive. For example, one of the values for a tag called ``Department`` might be ``Security``. If you provide ``security`` as the filter value, then there's no match. */
|
|
47624
|
-
Value: string;
|
|
47625
|
-
});
|
|
47626
|
-
}
|
|
47627
|
-
|
|
47628
|
-
export declare class AutomationRule_NoteUpdate {
|
|
47629
|
-
constructor(props: {
|
|
47630
|
-
/** The updated note text. */
|
|
47631
|
-
Text: string;
|
|
47632
|
-
/** The principal that updated the note. */
|
|
47633
|
-
UpdatedBy: any;
|
|
47634
|
-
});
|
|
47635
|
-
}
|
|
47636
|
-
|
|
47637
|
-
export declare class AutomationRule_NumberFilter {
|
|
47638
|
-
constructor(props: {
|
|
47639
|
-
/** The equal-to condition to be applied to a single field when querying for findings. */
|
|
47640
|
-
Eq?: number;
|
|
47641
|
-
/** The greater-than-equal condition to be applied to a single field when querying for findings. */
|
|
47642
|
-
Gte?: number;
|
|
47643
|
-
/** The less-than-equal condition to be applied to a single field when querying for findings. */
|
|
47644
|
-
Lte?: number;
|
|
47645
|
-
});
|
|
47646
|
-
}
|
|
47647
|
-
|
|
47648
|
-
export declare class AutomationRule_RelatedFinding {
|
|
47649
|
-
constructor(props: {
|
|
47650
|
-
/** The product-generated identifier for a related finding.
|
|
47651
|
-
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47652
|
-
Id: any;
|
|
47653
|
-
/** The Amazon Resource Name (ARN) for the product that generated a related finding. */
|
|
47654
|
-
ProductArn: string;
|
|
47655
|
-
});
|
|
47656
|
-
}
|
|
47657
|
-
|
|
47658
|
-
export declare class AutomationRule_SeverityUpdate {
|
|
47659
|
-
constructor(props: {
|
|
47660
|
-
/** The severity value of the finding. The allowed values are the following.
|
|
47661
|
-
+ ``INFORMATIONAL`` - No issue was found.
|
|
47662
|
-
+ ``LOW`` - The issue does not require action on its own.
|
|
47663
|
-
+ ``MEDIUM`` - The issue must be addressed but not urgently.
|
|
47664
|
-
+ ``HIGH`` - The issue must be addressed as a priority.
|
|
47665
|
-
+ ``CRITICAL`` - The issue must be remediated immediately to avoid it escalating. */
|
|
47666
|
-
Label?: "CRITICAL" | "HIGH" | "INFORMATIONAL" | "LOW" | "MEDIUM";
|
|
47667
|
-
/** The normalized severity for the finding. This attribute is to be deprecated in favor of ``Label``.
|
|
47668
|
-
If you provide ``Normalized`` and don't provide ``Label``, ``Label`` is set automatically as follows.
|
|
47669
|
-
+ 0 - ``INFORMATIONAL``
|
|
47670
|
-
+ 1–39 - ``LOW``
|
|
47671
|
-
+ 40–69 - ``MEDIUM``
|
|
47672
|
-
+ 70–89 - ``HIGH``
|
|
47673
|
-
+ 90–100 - ``CRITICAL`` */
|
|
47674
|
-
Normalized?: number;
|
|
47675
|
-
/** The native severity as defined by the AWS service or integrated partner product that generated the finding. */
|
|
47676
|
-
Product?: number;
|
|
47677
|
-
});
|
|
47678
|
-
}
|
|
47679
|
-
|
|
47680
|
-
export declare class AutomationRule_StringFilter {
|
|
47681
|
-
constructor(props: {
|
|
47682
|
-
/** The condition to apply to a string value when filtering Security Hub CSPM findings.
|
|
47683
|
-
To search for values that have the filter value, use one of the following comparison operators:
|
|
47684
|
-
+ To search for values that include the filter value, use ``CONTAINS``. For example, the filter ``Title CONTAINS CloudFront`` matches findings that have a ``Title`` that includes the string CloudFront.
|
|
47685
|
-
+ To search for values that exactly match the filter value, use ``EQUALS``. For example, the filter ``AwsAccountId EQUALS 123456789012`` only matches findings that have an account ID of ``123456789012``.
|
|
47686
|
-
+ To search for values that start with the filter value, use ``PREFIX``. For example, the filter ``ResourceRegion PREFIX us`` matches findings that have a ``ResourceRegion`` that starts with ``us``. A ``ResourceRegion`` that starts with a different value, such as ``af``, ``ap``, or ``ca``, doesn't match.
|
|
47687
|
-
|
|
47688
|
-
``CONTAINS``, ``EQUALS``, and ``PREFIX`` filters on the same field are joined by ``OR``. A finding matches if it matches any one of those filters. For example, the filters ``Title CONTAINS CloudFront OR Title CONTAINS CloudWatch`` match a finding that includes either ``CloudFront``, ``CloudWatch``, or both strings in the title.
|
|
47689
|
-
To search for values that don’t have the filter value, use one of the following comparison operators:
|
|
47690
|
-
+ To search for values that exclude the filter value, use ``NOT_CONTAINS``. For example, the filter ``Title NOT_CONTAINS CloudFront`` matches findings that have a ``Title`` that excludes the string CloudFront.
|
|
47691
|
-
+ To search for values other than the filter value, use ``NOT_EQUALS``. For example, the filter ``AwsAccountId NOT_EQUALS 123456789012`` only matches findings that have an account ID other than ``123456789012``.
|
|
47692
|
-
+ To search for values that don't start with the filter value, use ``PREFIX_NOT_EQUALS``. For example, the filter ``ResourceRegion PREFIX_NOT_EQUALS us`` matches findings with a ``ResourceRegion`` that starts with a value other than ``us``.
|
|
47693
|
-
|
|
47694
|
-
``NOT_CONTAINS``, ``NOT_EQUALS``, and ``PREFIX_NOT_EQUALS`` filters on the same field are joined by ``AND``. A finding matches only if it matches all of those filters. For example, the filters ``Title NOT_CONTAINS CloudFront AND Title NOT_CONTAINS CloudWatch`` match a finding that excludes both ``CloudFront`` and ``CloudWatch`` in the title.
|
|
47695
|
-
You can’t have both a ``CONTAINS`` filter and a ``NOT_CONTAINS`` filter on the same field. Similarly, you can't provide both an ``EQUALS`` filter and a ``NOT_EQUALS`` or ``PREFIX_NOT_EQUALS`` filter on the same field. Combining filters in this way returns an error. ``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
|
|
47696
|
-
You can combine ``PREFIX`` filters with ``NOT_EQUALS`` or ``PREFIX_NOT_EQUALS`` filters for the same field. Security Hub CSPM first processes the ``PREFIX`` filters, and then the ``NOT_EQUALS`` or ``PREFIX_NOT_EQUALS`` filters.
|
|
47697
|
-
For example, for the following filters, Security Hub CSPM first identifies findings that have resource types that start with either ``AwsIam`` or ``AwsEc2``. It then excludes findings that have a resource type of ``AwsIamPolicy`` and findings that have a resource type of ``AwsEc2NetworkInterface``.
|
|
47698
|
-
+ ``ResourceType PREFIX AwsIam``
|
|
47699
|
-
+ ``ResourceType PREFIX AwsEc2``
|
|
47700
|
-
+ ``ResourceType NOT_EQUALS AwsIamPolicy``
|
|
47701
|
-
+ ``ResourceType NOT_EQUALS AwsEc2NetworkInterface``
|
|
47702
|
-
|
|
47703
|
-
``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules V1. ``CONTAINS_WORD`` operator is only supported in ``GetFindingsV2``, ``GetFindingStatisticsV2``, ``GetResourcesV2``, and ``GetResourceStatisticsV2`` APIs. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*. */
|
|
47704
|
-
Comparison: AutomationRule_StringFilterComparison;
|
|
47705
|
-
/** The string filter value. Filter values are case sensitive. For example, the product name for control-based findings is ``Security Hub CSPM``. If you provide ``security hub`` as the filter value, there's no match. */
|
|
47706
|
-
Value: string;
|
|
47707
|
-
});
|
|
47708
|
-
}
|
|
47709
|
-
|
|
47710
|
-
export declare class AutomationRule_WorkflowUpdate {
|
|
47711
|
-
constructor(props: {
|
|
47712
|
-
/** The status of the investigation into the finding. The workflow status is specific to an individual finding. It does not affect the generation of new findings. For example, setting the workflow status to ``SUPPRESSED`` or ``RESOLVED`` does not prevent a new finding for the same issue.
|
|
47713
|
-
The allowed values are the following.
|
|
47714
|
-
+ ``NEW`` - The initial state of a finding, before it is reviewed.
|
|
47715
|
-
Security Hub CSPM also resets ``WorkFlowStatus`` from ``NOTIFIED`` or ``RESOLVED`` to ``NEW`` in the following cases:
|
|
47716
|
-
+ The record state changes from ``ARCHIVED`` to ``ACTIVE``.
|
|
47717
|
-
+ The compliance status changes from ``PASSED`` to either ``WARNING``, ``FAILED``, or ``NOT_AVAILABLE``.
|
|
47718
|
-
|
|
47719
|
-
+ ``NOTIFIED`` - Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner.
|
|
47720
|
-
+ ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
|
|
47721
|
-
+ ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated. */
|
|
47722
|
-
Status: "NEW" | "NOTIFIED" | "RESOLVED" | "SUPPRESSED";
|
|
47723
|
-
});
|
|
47724
|
-
}
|
|
47725
|
-
|
|
47726
47849
|
export declare class AutomationRulesAction {
|
|
47727
47850
|
constructor(props: {
|
|
47728
47851
|
/** Specifies that the automation rule action is an update to a finding field. */
|
|
47729
|
-
FindingFieldsUpdate:
|
|
47852
|
+
FindingFieldsUpdate: SecurityHubAutomationRule_AutomationRulesFindingFieldsUpdate;
|
|
47730
47853
|
/** Specifies the type of action that Security Hub CSPM takes when a finding matches the defined criteria of a rule. */
|
|
47731
47854
|
Type: "FINDING_FIELDS_UPDATE";
|
|
47732
47855
|
});
|
|
@@ -47748,11 +47871,11 @@ export declare class AutomationRulesFindingFieldsUpdate {
|
|
|
47748
47871
|
/** The rule action updates the ``Criticality`` field of a finding. */
|
|
47749
47872
|
Criticality?: number;
|
|
47750
47873
|
/** The rule action will update the ``Note`` field of a finding. */
|
|
47751
|
-
Note?:
|
|
47874
|
+
Note?: SecurityHubAutomationRule_NoteUpdate;
|
|
47752
47875
|
/** The rule action will update the ``RelatedFindings`` field of a finding. */
|
|
47753
|
-
RelatedFindings?:
|
|
47876
|
+
RelatedFindings?: SecurityHubAutomationRule_RelatedFinding[];
|
|
47754
47877
|
/** The rule action will update the ``Severity`` field of a finding. */
|
|
47755
|
-
Severity?:
|
|
47878
|
+
Severity?: SecurityHubAutomationRule_SeverityUpdate;
|
|
47756
47879
|
/** The rule action updates the ``Types`` field of a finding. */
|
|
47757
47880
|
Types?: string[];
|
|
47758
47881
|
/** The rule action updates the ``UserDefinedFields`` field of a finding. */
|
|
@@ -47760,7 +47883,7 @@ export declare class AutomationRulesFindingFieldsUpdate {
|
|
|
47760
47883
|
/** The rule action updates the ``VerificationState`` field of a finding. */
|
|
47761
47884
|
VerificationState?: "BENIGN_POSITIVE" | "FALSE_POSITIVE" | "TRUE_POSITIVE" | "UNKNOWN";
|
|
47762
47885
|
/** The rule action will update the ``Workflow`` field of a finding. */
|
|
47763
|
-
Workflow?:
|
|
47886
|
+
Workflow?: SecurityHubAutomationRule_WorkflowUpdate;
|
|
47764
47887
|
});
|
|
47765
47888
|
}
|
|
47766
47889
|
|
|
@@ -47779,114 +47902,114 @@ export declare class AutomationRulesFindingFilters {
|
|
|
47779
47902
|
constructor(props: {
|
|
47780
47903
|
/** The AWS-account ID in which a finding was generated.
|
|
47781
47904
|
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47782
|
-
AwsAccountId?:
|
|
47905
|
+
AwsAccountId?: SecurityHubAutomationRule_StringFilter[];
|
|
47783
47906
|
/** The name of the company for the product that generated the finding. For control-based findings, the company is AWS.
|
|
47784
47907
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47785
|
-
CompanyName?:
|
|
47908
|
+
CompanyName?: SecurityHubAutomationRule_StringFilter[];
|
|
47786
47909
|
/** The unique identifier of a standard in which a control is enabled. This field consists of the resource portion of the Amazon Resource Name (ARN) returned for a standard in the [DescribeStandards](https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_DescribeStandards.html) API response.
|
|
47787
47910
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47788
|
-
ComplianceAssociatedStandardsId?:
|
|
47911
|
+
ComplianceAssociatedStandardsId?: SecurityHubAutomationRule_StringFilter[];
|
|
47789
47912
|
/** The security control ID for which a finding was generated. Security control IDs are the same across standards.
|
|
47790
47913
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47791
|
-
ComplianceSecurityControlId?:
|
|
47914
|
+
ComplianceSecurityControlId?: SecurityHubAutomationRule_StringFilter[];
|
|
47792
47915
|
/** The result of a security check. This field is only used for findings generated from controls.
|
|
47793
47916
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47794
|
-
ComplianceStatus?:
|
|
47917
|
+
ComplianceStatus?: SecurityHubAutomationRule_StringFilter[];
|
|
47795
47918
|
/** The likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. ``Confidence`` is scored on a 0–100 basis using a ratio scale. A value of ``0`` means 0 percent confidence, and a value of ``100`` means 100 percent confidence. For example, a data exfiltration detection based on a statistical deviation of network traffic has low confidence because an actual exfiltration hasn't been verified. For more information, see [Confidence](https://docs.aws.amazon.com/securityhub/latest/userguide/asff-top-level-attributes.html#asff-confidence) in the *User Guide*.
|
|
47796
47919
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47797
|
-
Confidence?:
|
|
47920
|
+
Confidence?: SecurityHubAutomationRule_NumberFilter[];
|
|
47798
47921
|
/** A timestamp that indicates when this finding record was created.
|
|
47799
47922
|
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47800
47923
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47801
|
-
CreatedAt?:
|
|
47924
|
+
CreatedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
47802
47925
|
/** The level of importance that is assigned to the resources that are associated with a finding. ``Criticality`` is scored on a 0–100 basis, using a ratio scale that supports only full integers. A score of ``0`` means that the underlying resources have no criticality, and a score of ``100`` is reserved for the most critical resources. For more information, see [Criticality](https://docs.aws.amazon.com/securityhub/latest/userguide/asff-top-level-attributes.html#asff-criticality) in the *User Guide*.
|
|
47803
47926
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47804
|
-
Criticality?:
|
|
47927
|
+
Criticality?: SecurityHubAutomationRule_NumberFilter[];
|
|
47805
47928
|
/** A finding's description.
|
|
47806
47929
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47807
|
-
Description?:
|
|
47930
|
+
Description?: SecurityHubAutomationRule_StringFilter[];
|
|
47808
47931
|
/** A timestamp that indicates when the potential security issue captured by a finding was first observed by the security findings product.
|
|
47809
47932
|
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47810
47933
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47811
|
-
FirstObservedAt?:
|
|
47934
|
+
FirstObservedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
47812
47935
|
/** The identifier for the solution-specific component that generated a finding.
|
|
47813
47936
|
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47814
|
-
GeneratorId?:
|
|
47937
|
+
GeneratorId?: SecurityHubAutomationRule_StringFilter[];
|
|
47815
47938
|
/** The product-specific identifier for a finding.
|
|
47816
47939
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47817
|
-
Id?:
|
|
47940
|
+
Id?: SecurityHubAutomationRule_StringFilter[];
|
|
47818
47941
|
/** A timestamp that indicates when the security findings provider most recently observed a change in the resource that is involved in the finding.
|
|
47819
47942
|
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47820
47943
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47821
|
-
LastObservedAt?:
|
|
47944
|
+
LastObservedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
47822
47945
|
/** The text of a user-defined note that's added to a finding.
|
|
47823
47946
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47824
|
-
NoteText?:
|
|
47947
|
+
NoteText?: SecurityHubAutomationRule_StringFilter[];
|
|
47825
47948
|
/** The timestamp of when the note was updated.
|
|
47826
47949
|
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47827
47950
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47828
|
-
NoteUpdatedAt?:
|
|
47951
|
+
NoteUpdatedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
47829
47952
|
/** The principal that created a note.
|
|
47830
47953
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47831
|
-
NoteUpdatedBy?:
|
|
47954
|
+
NoteUpdatedBy?: SecurityHubAutomationRule_StringFilter[];
|
|
47832
47955
|
/** The Amazon Resource Name (ARN) for a third-party product that generated a finding in Security Hub CSPM.
|
|
47833
47956
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47834
|
-
ProductArn?:
|
|
47957
|
+
ProductArn?: SecurityHubAutomationRule_StringFilter[];
|
|
47835
47958
|
/** Provides the name of the product that generated the finding. For control-based findings, the product name is Security Hub CSPM.
|
|
47836
47959
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47837
|
-
ProductName?:
|
|
47960
|
+
ProductName?: SecurityHubAutomationRule_StringFilter[];
|
|
47838
47961
|
/** Provides the current state of a finding.
|
|
47839
47962
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47840
|
-
RecordState?:
|
|
47963
|
+
RecordState?: SecurityHubAutomationRule_StringFilter[];
|
|
47841
47964
|
/** The product-generated identifier for a related finding.
|
|
47842
47965
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47843
|
-
RelatedFindingsId?:
|
|
47966
|
+
RelatedFindingsId?: SecurityHubAutomationRule_StringFilter[];
|
|
47844
47967
|
/** The ARN for the product that generated a related finding.
|
|
47845
47968
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47846
|
-
RelatedFindingsProductArn?:
|
|
47969
|
+
RelatedFindingsProductArn?: SecurityHubAutomationRule_StringFilter[];
|
|
47847
47970
|
/** Custom fields and values about the resource that a finding pertains to.
|
|
47848
47971
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47849
|
-
ResourceDetailsOther?:
|
|
47972
|
+
ResourceDetailsOther?: SecurityHubAutomationRule_MapFilter[];
|
|
47850
47973
|
/** The identifier for the given resource type. For AWS resources that are identified by Amazon Resource Names (ARNs), this is the ARN. For AWS resources that lack ARNs, this is the identifier as defined by the AWS-service that created the resource. For non-AWS resources, this is a unique identifier that is associated with the resource.
|
|
47851
47974
|
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47852
|
-
ResourceId?:
|
|
47975
|
+
ResourceId?: SecurityHubAutomationRule_StringFilter[];
|
|
47853
47976
|
/** The partition in which the resource that the finding pertains to is located. A partition is a group of AWS-Regions. Each AWS-account is scoped to one partition.
|
|
47854
47977
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47855
|
-
ResourcePartition?:
|
|
47978
|
+
ResourcePartition?: SecurityHubAutomationRule_StringFilter[];
|
|
47856
47979
|
/** The AWS-Region where the resource that a finding pertains to is located.
|
|
47857
47980
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47858
|
-
ResourceRegion?:
|
|
47981
|
+
ResourceRegion?: SecurityHubAutomationRule_StringFilter[];
|
|
47859
47982
|
/** A list of AWS tags associated with a resource at the time the finding was processed.
|
|
47860
47983
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47861
|
-
ResourceTags?:
|
|
47984
|
+
ResourceTags?: SecurityHubAutomationRule_MapFilter[];
|
|
47862
47985
|
/** A finding's title.
|
|
47863
47986
|
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47864
|
-
ResourceType?:
|
|
47987
|
+
ResourceType?: SecurityHubAutomationRule_StringFilter[];
|
|
47865
47988
|
/** The severity value of the finding.
|
|
47866
47989
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47867
|
-
SeverityLabel?:
|
|
47990
|
+
SeverityLabel?: SecurityHubAutomationRule_StringFilter[];
|
|
47868
47991
|
/** Provides a URL that links to a page about the current finding in the finding product.
|
|
47869
47992
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47870
|
-
SourceUrl?:
|
|
47993
|
+
SourceUrl?: SecurityHubAutomationRule_StringFilter[];
|
|
47871
47994
|
/** A finding's title.
|
|
47872
47995
|
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
47873
|
-
Title?:
|
|
47996
|
+
Title?: SecurityHubAutomationRule_StringFilter[];
|
|
47874
47997
|
/** One or more finding types in the format of namespace/category/classifier that classify a finding. For a list of namespaces, classifiers, and categories, see [Types taxonomy for ASFF](https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-findings-format-type-taxonomy.html) in the *User Guide*.
|
|
47875
47998
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47876
|
-
Type?:
|
|
47999
|
+
Type?: SecurityHubAutomationRule_StringFilter[];
|
|
47877
48000
|
/** A timestamp that indicates when the finding record was most recently updated.
|
|
47878
48001
|
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
47879
48002
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47880
|
-
UpdatedAt?:
|
|
48003
|
+
UpdatedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
47881
48004
|
/** A list of user-defined name and value string pairs added to a finding.
|
|
47882
48005
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47883
|
-
UserDefinedFields?:
|
|
48006
|
+
UserDefinedFields?: SecurityHubAutomationRule_MapFilter[];
|
|
47884
48007
|
/** Provides the veracity of a finding.
|
|
47885
48008
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47886
|
-
VerificationState?:
|
|
48009
|
+
VerificationState?: SecurityHubAutomationRule_StringFilter[];
|
|
47887
48010
|
/** Provides information about the status of the investigation into a finding.
|
|
47888
48011
|
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
47889
|
-
WorkflowStatus?:
|
|
48012
|
+
WorkflowStatus?: SecurityHubAutomationRule_StringFilter[];
|
|
47890
48013
|
});
|
|
47891
48014
|
}
|
|
47892
48015
|
|
|
@@ -54479,6 +54602,19 @@ export declare class CapacityLimit {
|
|
|
54479
54602
|
});
|
|
54480
54603
|
}
|
|
54481
54604
|
|
|
54605
|
+
export declare class CapacityLimits {
|
|
54606
|
+
constructor(props: {
|
|
54607
|
+
/** The maximum indexing capacity for collections in the group. */
|
|
54608
|
+
MaxIndexingCapacityInOcu?: number;
|
|
54609
|
+
/** The maximum search capacity for collections in the group. */
|
|
54610
|
+
MaxSearchCapacityInOcu?: number;
|
|
54611
|
+
/** The minimum indexing capacity for collections in the group. */
|
|
54612
|
+
MinIndexingCapacityInOcu?: number;
|
|
54613
|
+
/** The minimum search capacity for collections in the group. */
|
|
54614
|
+
MinSearchCapacityInOcu?: number;
|
|
54615
|
+
});
|
|
54616
|
+
}
|
|
54617
|
+
|
|
54482
54618
|
export declare class CapacityManagerDataExport_Tag {
|
|
54483
54619
|
constructor(props: {
|
|
54484
54620
|
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
@@ -58144,6 +58280,28 @@ export declare class Collaboration_Tag {
|
|
|
58144
58280
|
});
|
|
58145
58281
|
}
|
|
58146
58282
|
|
|
58283
|
+
export declare class CollectionGroup_CapacityLimits {
|
|
58284
|
+
constructor(props: {
|
|
58285
|
+
/** The maximum indexing capacity for collections in the group. */
|
|
58286
|
+
MaxIndexingCapacityInOcu?: number;
|
|
58287
|
+
/** The maximum search capacity for collections in the group. */
|
|
58288
|
+
MaxSearchCapacityInOcu?: number;
|
|
58289
|
+
/** The minimum indexing capacity for collections in the group. */
|
|
58290
|
+
MinIndexingCapacityInOcu?: number;
|
|
58291
|
+
/** The minimum search capacity for collections in the group. */
|
|
58292
|
+
MinSearchCapacityInOcu?: number;
|
|
58293
|
+
});
|
|
58294
|
+
}
|
|
58295
|
+
|
|
58296
|
+
export declare class CollectionGroup_Tag {
|
|
58297
|
+
constructor(props: {
|
|
58298
|
+
/** The key in the key-value pair */
|
|
58299
|
+
Key: string;
|
|
58300
|
+
/** The value in the key-value pair */
|
|
58301
|
+
Value: string;
|
|
58302
|
+
});
|
|
58303
|
+
}
|
|
58304
|
+
|
|
58147
58305
|
export declare class CollectiveConstant {
|
|
58148
58306
|
constructor(props: {
|
|
58149
58307
|
ValueList?: string[];
|
|
@@ -59078,6 +59236,75 @@ export declare class ComputeNodeGroupConfiguration {
|
|
|
59078
59236
|
});
|
|
59079
59237
|
}
|
|
59080
59238
|
|
|
59239
|
+
export declare class ComputeOptimizerAutomationRule_Criteria {
|
|
59240
|
+
constructor(props: {
|
|
59241
|
+
EbsVolumeSizeInGib?: any;
|
|
59242
|
+
EbsVolumeType?: any;
|
|
59243
|
+
EstimatedMonthlySavings?: any;
|
|
59244
|
+
LookBackPeriodInDays?: any;
|
|
59245
|
+
Region?: any;
|
|
59246
|
+
ResourceArn?: any;
|
|
59247
|
+
ResourceTag?: any;
|
|
59248
|
+
RestartNeeded?: any;
|
|
59249
|
+
});
|
|
59250
|
+
}
|
|
59251
|
+
|
|
59252
|
+
export declare class ComputeOptimizerAutomationRule_DoubleCriteriaCondition {
|
|
59253
|
+
constructor(props: {
|
|
59254
|
+
Comparison?: "NumericEquals" | "NumericGreaterThan" | "NumericGreaterThanEquals" | "NumericLessThan" | "NumericLessThanEquals" | "NumericNotEquals" | "StringEquals" | "StringEqualsIgnoreCase" | "StringLike" | "StringNotEquals" | "StringNotEqualsIgnoreCase" | "StringNotLike";
|
|
59255
|
+
Values?: number[];
|
|
59256
|
+
});
|
|
59257
|
+
}
|
|
59258
|
+
|
|
59259
|
+
export declare class ComputeOptimizerAutomationRule_IntegerCriteriaCondition {
|
|
59260
|
+
constructor(props: {
|
|
59261
|
+
Comparison?: "NumericEquals" | "NumericGreaterThan" | "NumericGreaterThanEquals" | "NumericLessThan" | "NumericLessThanEquals" | "NumericNotEquals" | "StringEquals" | "StringEqualsIgnoreCase" | "StringLike" | "StringNotEquals" | "StringNotEqualsIgnoreCase" | "StringNotLike";
|
|
59262
|
+
Values?: number[];
|
|
59263
|
+
});
|
|
59264
|
+
}
|
|
59265
|
+
|
|
59266
|
+
export declare class ComputeOptimizerAutomationRule_OrganizationConfiguration {
|
|
59267
|
+
constructor(props: {
|
|
59268
|
+
/** List of account IDs where the organization rule applies */
|
|
59269
|
+
AccountIds?: string[];
|
|
59270
|
+
/** When the rule should be applied relative to account rules */
|
|
59271
|
+
RuleApplyOrder?: "AfterAccountRules" | "BeforeAccountRules";
|
|
59272
|
+
});
|
|
59273
|
+
}
|
|
59274
|
+
|
|
59275
|
+
export declare class ComputeOptimizerAutomationRule_ResourceTagsCriteriaCondition {
|
|
59276
|
+
constructor(props: {
|
|
59277
|
+
Comparison?: "NumericEquals" | "NumericGreaterThan" | "NumericGreaterThanEquals" | "NumericLessThan" | "NumericLessThanEquals" | "NumericNotEquals" | "StringEquals" | "StringEqualsIgnoreCase" | "StringLike" | "StringNotEquals" | "StringNotEqualsIgnoreCase" | "StringNotLike";
|
|
59278
|
+
Key?: string;
|
|
59279
|
+
Values?: string[];
|
|
59280
|
+
});
|
|
59281
|
+
}
|
|
59282
|
+
|
|
59283
|
+
export declare class ComputeOptimizerAutomationRule_Schedule {
|
|
59284
|
+
constructor(props: {
|
|
59285
|
+
/** Execution window duration in minutes */
|
|
59286
|
+
ExecutionWindowInMinutes?: number;
|
|
59287
|
+
/** Schedule expression (e.g., cron or rate expression) */
|
|
59288
|
+
ScheduleExpression?: string;
|
|
59289
|
+
/** IANA timezone identifier */
|
|
59290
|
+
ScheduleExpressionTimezone?: string;
|
|
59291
|
+
});
|
|
59292
|
+
}
|
|
59293
|
+
|
|
59294
|
+
export declare class ComputeOptimizerAutomationRule_StringCriteriaCondition {
|
|
59295
|
+
constructor(props: {
|
|
59296
|
+
Comparison?: "NumericEquals" | "NumericGreaterThan" | "NumericGreaterThanEquals" | "NumericLessThan" | "NumericLessThanEquals" | "NumericNotEquals" | "StringEquals" | "StringEqualsIgnoreCase" | "StringLike" | "StringNotEquals" | "StringNotEqualsIgnoreCase" | "StringNotLike";
|
|
59297
|
+
Values?: string[];
|
|
59298
|
+
});
|
|
59299
|
+
}
|
|
59300
|
+
|
|
59301
|
+
export declare class ComputeOptimizerAutomationRule_Tag {
|
|
59302
|
+
constructor(props: {
|
|
59303
|
+
Key: string;
|
|
59304
|
+
Value: string;
|
|
59305
|
+
});
|
|
59306
|
+
}
|
|
59307
|
+
|
|
59081
59308
|
export declare class ComputeResources {
|
|
59082
59309
|
constructor(props: {
|
|
59083
59310
|
MaxvCpus: number;
|
|
@@ -63001,12 +63228,6 @@ export declare class CreditSpecificationRequest {
|
|
|
63001
63228
|
});
|
|
63002
63229
|
}
|
|
63003
63230
|
|
|
63004
|
-
export declare class Criteria {
|
|
63005
|
-
constructor(props: {
|
|
63006
|
-
OcsfFindingCriteria?: AutomationRuleV2_OcsfFindingFilters;
|
|
63007
|
-
});
|
|
63008
|
-
}
|
|
63009
|
-
|
|
63010
63231
|
export declare class CriterionAdditionalProperties {
|
|
63011
63232
|
constructor(props: {
|
|
63012
63233
|
eq?: string[];
|
|
@@ -73076,6 +73297,13 @@ export declare class DomainVerification_TxtMethodConfig {
|
|
|
73076
73297
|
});
|
|
73077
73298
|
}
|
|
73078
73299
|
|
|
73300
|
+
export declare class DoubleCriteriaCondition {
|
|
73301
|
+
constructor(props: {
|
|
73302
|
+
Comparison?: "NumericEquals" | "NumericGreaterThan" | "NumericGreaterThanEquals" | "NumericLessThan" | "NumericLessThanEquals" | "NumericNotEquals" | "StringEquals" | "StringEqualsIgnoreCase" | "StringLike" | "StringNotEquals" | "StringNotEqualsIgnoreCase" | "StringNotLike";
|
|
73303
|
+
Values?: number[];
|
|
73304
|
+
});
|
|
73305
|
+
}
|
|
73306
|
+
|
|
73079
73307
|
export declare class DownlinkAwsGroundStationAgentEndpoint {
|
|
73080
73308
|
constructor(props: {
|
|
73081
73309
|
DataflowDetails: DataflowEndpointGroupV2_DownlinkDataflowDetails;
|
|
@@ -80576,6 +80804,12 @@ export declare class FHIRDatastore_Tag {
|
|
|
80576
80804
|
});
|
|
80577
80805
|
}
|
|
80578
80806
|
|
|
80807
|
+
export declare class Field_FieldAttributes {
|
|
80808
|
+
constructor(props: {
|
|
80809
|
+
Text?: Field_TextAttributes;
|
|
80810
|
+
});
|
|
80811
|
+
}
|
|
80812
|
+
|
|
80579
80813
|
export declare class Field_Tag {
|
|
80580
80814
|
constructor(props: {
|
|
80581
80815
|
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
@@ -80585,6 +80819,19 @@ export declare class Field_Tag {
|
|
|
80585
80819
|
});
|
|
80586
80820
|
}
|
|
80587
80821
|
|
|
80822
|
+
export declare class Field_TextAttributes {
|
|
80823
|
+
constructor(props: {
|
|
80824
|
+
/** Attribute that defines rendering component and validation */
|
|
80825
|
+
IsMultiline: boolean;
|
|
80826
|
+
});
|
|
80827
|
+
}
|
|
80828
|
+
|
|
80829
|
+
export declare class FieldAttributes {
|
|
80830
|
+
constructor(props: {
|
|
80831
|
+
Text?: Field_TextAttributes;
|
|
80832
|
+
});
|
|
80833
|
+
}
|
|
80834
|
+
|
|
80588
80835
|
export declare class FieldConfig {
|
|
80589
80836
|
constructor(props: {
|
|
80590
80837
|
Excluded?: boolean;
|
|
@@ -90207,6 +90454,13 @@ export declare class InstanceTypeSpecification {
|
|
|
90207
90454
|
});
|
|
90208
90455
|
}
|
|
90209
90456
|
|
|
90457
|
+
export declare class IntegerCriteriaCondition {
|
|
90458
|
+
constructor(props: {
|
|
90459
|
+
Comparison?: "NumericEquals" | "NumericGreaterThan" | "NumericGreaterThanEquals" | "NumericLessThan" | "NumericLessThanEquals" | "NumericNotEquals" | "StringEquals" | "StringEqualsIgnoreCase" | "StringLike" | "StringNotEquals" | "StringNotEqualsIgnoreCase" | "StringNotLike";
|
|
90460
|
+
Values?: number[];
|
|
90461
|
+
});
|
|
90462
|
+
}
|
|
90463
|
+
|
|
90210
90464
|
export declare class IntegerDatasetParameter {
|
|
90211
90465
|
constructor(props: {
|
|
90212
90466
|
/** <p>An identifier for the integer parameter created in the dataset.</p> */
|
|
@@ -108520,15 +108774,10 @@ export declare class Nodegroup_UpdateConfig {
|
|
|
108520
108774
|
|
|
108521
108775
|
export declare class NodeGroupConfiguration {
|
|
108522
108776
|
constructor(props: {
|
|
108523
|
-
/** Either the ElastiCache for Redis supplied 4-digit id or a user supplied id for the node group these configuration values apply to. */
|
|
108524
108777
|
NodeGroupId?: string;
|
|
108525
|
-
/** The Availability Zone where the primary node of this node group (shard) is launched. */
|
|
108526
108778
|
PrimaryAvailabilityZone?: string;
|
|
108527
|
-
/** A list of Availability Zones to be used for the read replicas. The number of Availability Zones in this list must match the value of ReplicaCount or ReplicasPerNodeGroup if not specified. */
|
|
108528
108779
|
ReplicaAvailabilityZones?: string[];
|
|
108529
|
-
/** The number of read replica nodes in this node group (shard). */
|
|
108530
108780
|
ReplicaCount?: number;
|
|
108531
|
-
/** A string of comma-separated values where the first set of values are the slot numbers (zero based), and the second set of values are the keyspaces for each slot. The following example specifies three slots (numbered 0, 1, and 2): 0,1,2,0-4999,5000-9999,10000-16,383. */
|
|
108532
108781
|
Slots?: string;
|
|
108533
108782
|
});
|
|
108534
108783
|
}
|
|
@@ -129340,7 +129589,6 @@ export declare class ReplicationConfiguration_RepositoryFilter {
|
|
|
129340
129589
|
|
|
129341
129590
|
export declare class ReplicationGroup_CloudWatchLogsDestinationDetails {
|
|
129342
129591
|
constructor(props: {
|
|
129343
|
-
/** The name of the CloudWatch Logs log group. */
|
|
129344
129592
|
LogGroup: string;
|
|
129345
129593
|
});
|
|
129346
129594
|
}
|
|
@@ -129352,18 +129600,8 @@ export declare class ReplicationGroup_DestinationDetails {
|
|
|
129352
129600
|
});
|
|
129353
129601
|
}
|
|
129354
129602
|
|
|
129355
|
-
export declare class ReplicationGroup_Endpoint {
|
|
129356
|
-
constructor(props: {
|
|
129357
|
-
/** The DNS hostname of the cache node. */
|
|
129358
|
-
Address?: string;
|
|
129359
|
-
/** The port number that the cache engine is listening on. */
|
|
129360
|
-
Port?: string;
|
|
129361
|
-
});
|
|
129362
|
-
}
|
|
129363
|
-
|
|
129364
129603
|
export declare class ReplicationGroup_KinesisFirehoseDestinationDetails {
|
|
129365
129604
|
constructor(props: {
|
|
129366
|
-
/** The name of the Kinesis Data Firehose delivery stream. */
|
|
129367
129605
|
DeliveryStream: string;
|
|
129368
129606
|
});
|
|
129369
129607
|
}
|
|
@@ -129371,35 +129609,25 @@ export declare class ReplicationGroup_KinesisFirehoseDestinationDetails {
|
|
|
129371
129609
|
export declare class ReplicationGroup_LogDeliveryConfigurationRequest {
|
|
129372
129610
|
constructor(props: {
|
|
129373
129611
|
DestinationDetails: ReplicationGroup_DestinationDetails;
|
|
129374
|
-
/** Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type. Valid values are either cloudwatch-logs or kinesis-firehose. */
|
|
129375
129612
|
DestinationType: string;
|
|
129376
|
-
/** Valid values are either json or text. */
|
|
129377
129613
|
LogFormat: string;
|
|
129378
|
-
/** Valid value is either slow-log, which refers to slow-log or engine-log. */
|
|
129379
129614
|
LogType: string;
|
|
129380
129615
|
});
|
|
129381
129616
|
}
|
|
129382
129617
|
|
|
129383
129618
|
export declare class ReplicationGroup_NodeGroupConfiguration {
|
|
129384
129619
|
constructor(props: {
|
|
129385
|
-
/** Either the ElastiCache for Redis supplied 4-digit id or a user supplied id for the node group these configuration values apply to. */
|
|
129386
129620
|
NodeGroupId?: string;
|
|
129387
|
-
/** The Availability Zone where the primary node of this node group (shard) is launched. */
|
|
129388
129621
|
PrimaryAvailabilityZone?: string;
|
|
129389
|
-
/** A list of Availability Zones to be used for the read replicas. The number of Availability Zones in this list must match the value of ReplicaCount or ReplicasPerNodeGroup if not specified. */
|
|
129390
129622
|
ReplicaAvailabilityZones?: string[];
|
|
129391
|
-
/** The number of read replica nodes in this node group (shard). */
|
|
129392
129623
|
ReplicaCount?: number;
|
|
129393
|
-
/** A string of comma-separated values where the first set of values are the slot numbers (zero based), and the second set of values are the keyspaces for each slot. The following example specifies three slots (numbered 0, 1, and 2): 0,1,2,0-4999,5000-9999,10000-16,383. */
|
|
129394
129624
|
Slots?: string;
|
|
129395
129625
|
});
|
|
129396
129626
|
}
|
|
129397
129627
|
|
|
129398
129628
|
export declare class ReplicationGroup_Tag {
|
|
129399
129629
|
constructor(props: {
|
|
129400
|
-
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
129401
129630
|
Key: string;
|
|
129402
|
-
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
129403
129631
|
Value: string;
|
|
129404
129632
|
});
|
|
129405
129633
|
}
|
|
@@ -130450,6 +130678,14 @@ export declare class ResourcesVpcConfig {
|
|
|
130450
130678
|
});
|
|
130451
130679
|
}
|
|
130452
130680
|
|
|
130681
|
+
export declare class ResourceTagsCriteriaCondition {
|
|
130682
|
+
constructor(props: {
|
|
130683
|
+
Comparison?: "NumericEquals" | "NumericGreaterThan" | "NumericGreaterThanEquals" | "NumericLessThan" | "NumericLessThanEquals" | "NumericNotEquals" | "StringEquals" | "StringEqualsIgnoreCase" | "StringLike" | "StringNotEquals" | "StringNotEqualsIgnoreCase" | "StringNotLike";
|
|
130684
|
+
Key?: string;
|
|
130685
|
+
Values?: string[];
|
|
130686
|
+
});
|
|
130687
|
+
}
|
|
130688
|
+
|
|
130453
130689
|
export declare class ResourceVersion_LoggingConfig {
|
|
130454
130690
|
constructor(props: {
|
|
130455
130691
|
/** The Amazon CloudWatch log group to which CloudFormation sends error logging information when invoking the type's handlers. */
|
|
@@ -136228,6 +136464,304 @@ export declare class SecurityHeadersConfig {
|
|
|
136228
136464
|
});
|
|
136229
136465
|
}
|
|
136230
136466
|
|
|
136467
|
+
export declare class SecurityHubAutomationRule_AutomationRulesAction {
|
|
136468
|
+
constructor(props: {
|
|
136469
|
+
/** Specifies that the automation rule action is an update to a finding field. */
|
|
136470
|
+
FindingFieldsUpdate: SecurityHubAutomationRule_AutomationRulesFindingFieldsUpdate;
|
|
136471
|
+
/** Specifies the type of action that Security Hub CSPM takes when a finding matches the defined criteria of a rule. */
|
|
136472
|
+
Type: "FINDING_FIELDS_UPDATE";
|
|
136473
|
+
});
|
|
136474
|
+
}
|
|
136475
|
+
|
|
136476
|
+
export declare class SecurityHubAutomationRule_AutomationRulesFindingFieldsUpdate {
|
|
136477
|
+
constructor(props: {
|
|
136478
|
+
/** The rule action updates the ``Confidence`` field of a finding. */
|
|
136479
|
+
Confidence?: number;
|
|
136480
|
+
/** The rule action updates the ``Criticality`` field of a finding. */
|
|
136481
|
+
Criticality?: number;
|
|
136482
|
+
/** The rule action will update the ``Note`` field of a finding. */
|
|
136483
|
+
Note?: SecurityHubAutomationRule_NoteUpdate;
|
|
136484
|
+
/** The rule action will update the ``RelatedFindings`` field of a finding. */
|
|
136485
|
+
RelatedFindings?: SecurityHubAutomationRule_RelatedFinding[];
|
|
136486
|
+
/** The rule action will update the ``Severity`` field of a finding. */
|
|
136487
|
+
Severity?: SecurityHubAutomationRule_SeverityUpdate;
|
|
136488
|
+
/** The rule action updates the ``Types`` field of a finding. */
|
|
136489
|
+
Types?: string[];
|
|
136490
|
+
/** The rule action updates the ``UserDefinedFields`` field of a finding. */
|
|
136491
|
+
UserDefinedFields?: Record<string, unknown>;
|
|
136492
|
+
/** The rule action updates the ``VerificationState`` field of a finding. */
|
|
136493
|
+
VerificationState?: "BENIGN_POSITIVE" | "FALSE_POSITIVE" | "TRUE_POSITIVE" | "UNKNOWN";
|
|
136494
|
+
/** The rule action will update the ``Workflow`` field of a finding. */
|
|
136495
|
+
Workflow?: SecurityHubAutomationRule_WorkflowUpdate;
|
|
136496
|
+
});
|
|
136497
|
+
}
|
|
136498
|
+
|
|
136499
|
+
export declare class SecurityHubAutomationRule_AutomationRulesFindingFilters {
|
|
136500
|
+
constructor(props: {
|
|
136501
|
+
/** The AWS-account ID in which a finding was generated.
|
|
136502
|
+
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
136503
|
+
AwsAccountId?: SecurityHubAutomationRule_StringFilter[];
|
|
136504
|
+
/** The name of the company for the product that generated the finding. For control-based findings, the company is AWS.
|
|
136505
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136506
|
+
CompanyName?: SecurityHubAutomationRule_StringFilter[];
|
|
136507
|
+
/** The unique identifier of a standard in which a control is enabled. This field consists of the resource portion of the Amazon Resource Name (ARN) returned for a standard in the [DescribeStandards](https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_DescribeStandards.html) API response.
|
|
136508
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136509
|
+
ComplianceAssociatedStandardsId?: SecurityHubAutomationRule_StringFilter[];
|
|
136510
|
+
/** The security control ID for which a finding was generated. Security control IDs are the same across standards.
|
|
136511
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136512
|
+
ComplianceSecurityControlId?: SecurityHubAutomationRule_StringFilter[];
|
|
136513
|
+
/** The result of a security check. This field is only used for findings generated from controls.
|
|
136514
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136515
|
+
ComplianceStatus?: SecurityHubAutomationRule_StringFilter[];
|
|
136516
|
+
/** The likelihood that a finding accurately identifies the behavior or issue that it was intended to identify. ``Confidence`` is scored on a 0–100 basis using a ratio scale. A value of ``0`` means 0 percent confidence, and a value of ``100`` means 100 percent confidence. For example, a data exfiltration detection based on a statistical deviation of network traffic has low confidence because an actual exfiltration hasn't been verified. For more information, see [Confidence](https://docs.aws.amazon.com/securityhub/latest/userguide/asff-top-level-attributes.html#asff-confidence) in the *User Guide*.
|
|
136517
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136518
|
+
Confidence?: SecurityHubAutomationRule_NumberFilter[];
|
|
136519
|
+
/** A timestamp that indicates when this finding record was created.
|
|
136520
|
+
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
136521
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136522
|
+
CreatedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
136523
|
+
/** The level of importance that is assigned to the resources that are associated with a finding. ``Criticality`` is scored on a 0–100 basis, using a ratio scale that supports only full integers. A score of ``0`` means that the underlying resources have no criticality, and a score of ``100`` is reserved for the most critical resources. For more information, see [Criticality](https://docs.aws.amazon.com/securityhub/latest/userguide/asff-top-level-attributes.html#asff-criticality) in the *User Guide*.
|
|
136524
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136525
|
+
Criticality?: SecurityHubAutomationRule_NumberFilter[];
|
|
136526
|
+
/** A finding's description.
|
|
136527
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136528
|
+
Description?: SecurityHubAutomationRule_StringFilter[];
|
|
136529
|
+
/** A timestamp that indicates when the potential security issue captured by a finding was first observed by the security findings product.
|
|
136530
|
+
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
136531
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136532
|
+
FirstObservedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
136533
|
+
/** The identifier for the solution-specific component that generated a finding.
|
|
136534
|
+
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
136535
|
+
GeneratorId?: SecurityHubAutomationRule_StringFilter[];
|
|
136536
|
+
/** The product-specific identifier for a finding.
|
|
136537
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136538
|
+
Id?: SecurityHubAutomationRule_StringFilter[];
|
|
136539
|
+
/** A timestamp that indicates when the security findings provider most recently observed a change in the resource that is involved in the finding.
|
|
136540
|
+
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
136541
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136542
|
+
LastObservedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
136543
|
+
/** The text of a user-defined note that's added to a finding.
|
|
136544
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136545
|
+
NoteText?: SecurityHubAutomationRule_StringFilter[];
|
|
136546
|
+
/** The timestamp of when the note was updated.
|
|
136547
|
+
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
136548
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136549
|
+
NoteUpdatedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
136550
|
+
/** The principal that created a note.
|
|
136551
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136552
|
+
NoteUpdatedBy?: SecurityHubAutomationRule_StringFilter[];
|
|
136553
|
+
/** The Amazon Resource Name (ARN) for a third-party product that generated a finding in Security Hub CSPM.
|
|
136554
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136555
|
+
ProductArn?: SecurityHubAutomationRule_StringFilter[];
|
|
136556
|
+
/** Provides the name of the product that generated the finding. For control-based findings, the product name is Security Hub CSPM.
|
|
136557
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136558
|
+
ProductName?: SecurityHubAutomationRule_StringFilter[];
|
|
136559
|
+
/** Provides the current state of a finding.
|
|
136560
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136561
|
+
RecordState?: SecurityHubAutomationRule_StringFilter[];
|
|
136562
|
+
/** The product-generated identifier for a related finding.
|
|
136563
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136564
|
+
RelatedFindingsId?: SecurityHubAutomationRule_StringFilter[];
|
|
136565
|
+
/** The ARN for the product that generated a related finding.
|
|
136566
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136567
|
+
RelatedFindingsProductArn?: SecurityHubAutomationRule_StringFilter[];
|
|
136568
|
+
/** Custom fields and values about the resource that a finding pertains to.
|
|
136569
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136570
|
+
ResourceDetailsOther?: SecurityHubAutomationRule_MapFilter[];
|
|
136571
|
+
/** The identifier for the given resource type. For AWS resources that are identified by Amazon Resource Names (ARNs), this is the ARN. For AWS resources that lack ARNs, this is the identifier as defined by the AWS-service that created the resource. For non-AWS resources, this is a unique identifier that is associated with the resource.
|
|
136572
|
+
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
136573
|
+
ResourceId?: SecurityHubAutomationRule_StringFilter[];
|
|
136574
|
+
/** The partition in which the resource that the finding pertains to is located. A partition is a group of AWS-Regions. Each AWS-account is scoped to one partition.
|
|
136575
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136576
|
+
ResourcePartition?: SecurityHubAutomationRule_StringFilter[];
|
|
136577
|
+
/** The AWS-Region where the resource that a finding pertains to is located.
|
|
136578
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136579
|
+
ResourceRegion?: SecurityHubAutomationRule_StringFilter[];
|
|
136580
|
+
/** A list of AWS tags associated with a resource at the time the finding was processed.
|
|
136581
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136582
|
+
ResourceTags?: SecurityHubAutomationRule_MapFilter[];
|
|
136583
|
+
/** A finding's title.
|
|
136584
|
+
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
136585
|
+
ResourceType?: SecurityHubAutomationRule_StringFilter[];
|
|
136586
|
+
/** The severity value of the finding.
|
|
136587
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136588
|
+
SeverityLabel?: SecurityHubAutomationRule_StringFilter[];
|
|
136589
|
+
/** Provides a URL that links to a page about the current finding in the finding product.
|
|
136590
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136591
|
+
SourceUrl?: SecurityHubAutomationRule_StringFilter[];
|
|
136592
|
+
/** A finding's title.
|
|
136593
|
+
Array Members: Minimum number of 1 item. Maximum number of 100 items. */
|
|
136594
|
+
Title?: SecurityHubAutomationRule_StringFilter[];
|
|
136595
|
+
/** One or more finding types in the format of namespace/category/classifier that classify a finding. For a list of namespaces, classifiers, and categories, see [Types taxonomy for ASFF](https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-findings-format-type-taxonomy.html) in the *User Guide*.
|
|
136596
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136597
|
+
Type?: SecurityHubAutomationRule_StringFilter[];
|
|
136598
|
+
/** A timestamp that indicates when the finding record was most recently updated.
|
|
136599
|
+
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps).
|
|
136600
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136601
|
+
UpdatedAt?: SecurityHubAutomationRule_DateFilter[];
|
|
136602
|
+
/** A list of user-defined name and value string pairs added to a finding.
|
|
136603
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136604
|
+
UserDefinedFields?: SecurityHubAutomationRule_MapFilter[];
|
|
136605
|
+
/** Provides the veracity of a finding.
|
|
136606
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136607
|
+
VerificationState?: SecurityHubAutomationRule_StringFilter[];
|
|
136608
|
+
/** Provides information about the status of the investigation into a finding.
|
|
136609
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136610
|
+
WorkflowStatus?: SecurityHubAutomationRule_StringFilter[];
|
|
136611
|
+
});
|
|
136612
|
+
}
|
|
136613
|
+
|
|
136614
|
+
export declare class SecurityHubAutomationRule_BooleanFilter {
|
|
136615
|
+
constructor(props: {
|
|
136616
|
+
/** The value of the boolean. */
|
|
136617
|
+
Value: boolean;
|
|
136618
|
+
});
|
|
136619
|
+
}
|
|
136620
|
+
|
|
136621
|
+
export declare class SecurityHubAutomationRule_DateFilter {
|
|
136622
|
+
constructor(props: {
|
|
136623
|
+
/** A date range for the date filter. */
|
|
136624
|
+
DateRange?: SecurityHubAutomationRule_DateRange;
|
|
136625
|
+
/** A timestamp that provides the end date for the date filter.
|
|
136626
|
+
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps). */
|
|
136627
|
+
End?: string;
|
|
136628
|
+
/** A timestamp that provides the start date for the date filter.
|
|
136629
|
+
For more information about the validation and formatting of timestamp fields in ASHlong, see [Timestamps](https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps). */
|
|
136630
|
+
Start?: string;
|
|
136631
|
+
});
|
|
136632
|
+
}
|
|
136633
|
+
|
|
136634
|
+
export declare class SecurityHubAutomationRule_DateRange {
|
|
136635
|
+
constructor(props: {
|
|
136636
|
+
/** A date range unit for the date filter. */
|
|
136637
|
+
Unit: "DAYS";
|
|
136638
|
+
/** A date range value for the date filter. */
|
|
136639
|
+
Value: number;
|
|
136640
|
+
});
|
|
136641
|
+
}
|
|
136642
|
+
|
|
136643
|
+
export declare class SecurityHubAutomationRule_MapFilter {
|
|
136644
|
+
constructor(props: {
|
|
136645
|
+
/** The condition to apply to the key value when filtering Security Hub CSPM findings with a map filter.
|
|
136646
|
+
To search for values that have the filter value, use one of the following comparison operators:
|
|
136647
|
+
+ To search for values that include the filter value, use ``CONTAINS``. For example, for the ``ResourceTags`` field, the filter ``Department CONTAINS Security`` matches findings that include the value ``Security`` for the ``Department`` tag. In the same example, a finding with a value of ``Security team`` for the ``Department`` tag is a match.
|
|
136648
|
+
+ To search for values that exactly match the filter value, use ``EQUALS``. For example, for the ``ResourceTags`` field, the filter ``Department EQUALS Security`` matches findings that have the value ``Security`` for the ``Department`` tag.
|
|
136649
|
+
|
|
136650
|
+
``CONTAINS`` and ``EQUALS`` filters on the same field are joined by ``OR``. A finding matches if it matches any one of those filters. For example, the filters ``Department CONTAINS Security OR Department CONTAINS Finance`` match a finding that includes either ``Security``, ``Finance``, or both values.
|
|
136651
|
+
To search for values that don't have the filter value, use one of the following comparison operators:
|
|
136652
|
+
+ To search for values that exclude the filter value, use ``NOT_CONTAINS``. For example, for the ``ResourceTags`` field, the filter ``Department NOT_CONTAINS Finance`` matches findings that exclude the value ``Finance`` for the ``Department`` tag.
|
|
136653
|
+
+ To search for values other than the filter value, use ``NOT_EQUALS``. For example, for the ``ResourceTags`` field, the filter ``Department NOT_EQUALS Finance`` matches findings that don’t have the value ``Finance`` for the ``Department`` tag.
|
|
136654
|
+
|
|
136655
|
+
``NOT_CONTAINS`` and ``NOT_EQUALS`` filters on the same field are joined by ``AND``. A finding matches only if it matches all of those filters. For example, the filters ``Department NOT_CONTAINS Security AND Department NOT_CONTAINS Finance`` match a finding that excludes both the ``Security`` and ``Finance`` values.
|
|
136656
|
+
``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
|
|
136657
|
+
You can’t have both a ``CONTAINS`` filter and a ``NOT_CONTAINS`` filter on the same field. Similarly, you can’t have both an ``EQUALS`` filter and a ``NOT_EQUALS`` filter on the same field. Combining filters in this way returns an error.
|
|
136658
|
+
``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*. */
|
|
136659
|
+
Comparison: "CONTAINS" | "EQUALS" | "NOT_CONTAINS" | "NOT_EQUALS";
|
|
136660
|
+
/** The key of the map filter. For example, for ``ResourceTags``, ``Key`` identifies the name of the tag. For ``UserDefinedFields``, ``Key`` is the name of the field. */
|
|
136661
|
+
Key: string;
|
|
136662
|
+
/** The value for the key in the map filter. Filter values are case sensitive. For example, one of the values for a tag called ``Department`` might be ``Security``. If you provide ``security`` as the filter value, then there's no match. */
|
|
136663
|
+
Value: string;
|
|
136664
|
+
});
|
|
136665
|
+
}
|
|
136666
|
+
|
|
136667
|
+
export declare class SecurityHubAutomationRule_NoteUpdate {
|
|
136668
|
+
constructor(props: {
|
|
136669
|
+
/** The updated note text. */
|
|
136670
|
+
Text: string;
|
|
136671
|
+
/** The principal that updated the note. */
|
|
136672
|
+
UpdatedBy: any;
|
|
136673
|
+
});
|
|
136674
|
+
}
|
|
136675
|
+
|
|
136676
|
+
export declare class SecurityHubAutomationRule_NumberFilter {
|
|
136677
|
+
constructor(props: {
|
|
136678
|
+
/** The equal-to condition to be applied to a single field when querying for findings. */
|
|
136679
|
+
Eq?: number;
|
|
136680
|
+
/** The greater-than-equal condition to be applied to a single field when querying for findings. */
|
|
136681
|
+
Gte?: number;
|
|
136682
|
+
/** The less-than-equal condition to be applied to a single field when querying for findings. */
|
|
136683
|
+
Lte?: number;
|
|
136684
|
+
});
|
|
136685
|
+
}
|
|
136686
|
+
|
|
136687
|
+
export declare class SecurityHubAutomationRule_RelatedFinding {
|
|
136688
|
+
constructor(props: {
|
|
136689
|
+
/** The product-generated identifier for a related finding.
|
|
136690
|
+
Array Members: Minimum number of 1 item. Maximum number of 20 items. */
|
|
136691
|
+
Id: any;
|
|
136692
|
+
/** The Amazon Resource Name (ARN) for the product that generated a related finding. */
|
|
136693
|
+
ProductArn: string;
|
|
136694
|
+
});
|
|
136695
|
+
}
|
|
136696
|
+
|
|
136697
|
+
export declare class SecurityHubAutomationRule_SeverityUpdate {
|
|
136698
|
+
constructor(props: {
|
|
136699
|
+
/** The severity value of the finding. The allowed values are the following.
|
|
136700
|
+
+ ``INFORMATIONAL`` - No issue was found.
|
|
136701
|
+
+ ``LOW`` - The issue does not require action on its own.
|
|
136702
|
+
+ ``MEDIUM`` - The issue must be addressed but not urgently.
|
|
136703
|
+
+ ``HIGH`` - The issue must be addressed as a priority.
|
|
136704
|
+
+ ``CRITICAL`` - The issue must be remediated immediately to avoid it escalating. */
|
|
136705
|
+
Label?: "CRITICAL" | "HIGH" | "INFORMATIONAL" | "LOW" | "MEDIUM";
|
|
136706
|
+
/** The normalized severity for the finding. This attribute is to be deprecated in favor of ``Label``.
|
|
136707
|
+
If you provide ``Normalized`` and don't provide ``Label``, ``Label`` is set automatically as follows.
|
|
136708
|
+
+ 0 - ``INFORMATIONAL``
|
|
136709
|
+
+ 1–39 - ``LOW``
|
|
136710
|
+
+ 40–69 - ``MEDIUM``
|
|
136711
|
+
+ 70–89 - ``HIGH``
|
|
136712
|
+
+ 90–100 - ``CRITICAL`` */
|
|
136713
|
+
Normalized?: number;
|
|
136714
|
+
/** The native severity as defined by the AWS service or integrated partner product that generated the finding. */
|
|
136715
|
+
Product?: number;
|
|
136716
|
+
});
|
|
136717
|
+
}
|
|
136718
|
+
|
|
136719
|
+
export declare class SecurityHubAutomationRule_StringFilter {
|
|
136720
|
+
constructor(props: {
|
|
136721
|
+
/** The condition to apply to a string value when filtering Security Hub CSPM findings.
|
|
136722
|
+
To search for values that have the filter value, use one of the following comparison operators:
|
|
136723
|
+
+ To search for values that include the filter value, use ``CONTAINS``. For example, the filter ``Title CONTAINS CloudFront`` matches findings that have a ``Title`` that includes the string CloudFront.
|
|
136724
|
+
+ To search for values that exactly match the filter value, use ``EQUALS``. For example, the filter ``AwsAccountId EQUALS 123456789012`` only matches findings that have an account ID of ``123456789012``.
|
|
136725
|
+
+ To search for values that start with the filter value, use ``PREFIX``. For example, the filter ``ResourceRegion PREFIX us`` matches findings that have a ``ResourceRegion`` that starts with ``us``. A ``ResourceRegion`` that starts with a different value, such as ``af``, ``ap``, or ``ca``, doesn't match.
|
|
136726
|
+
|
|
136727
|
+
``CONTAINS``, ``EQUALS``, and ``PREFIX`` filters on the same field are joined by ``OR``. A finding matches if it matches any one of those filters. For example, the filters ``Title CONTAINS CloudFront OR Title CONTAINS CloudWatch`` match a finding that includes either ``CloudFront``, ``CloudWatch``, or both strings in the title.
|
|
136728
|
+
To search for values that don’t have the filter value, use one of the following comparison operators:
|
|
136729
|
+
+ To search for values that exclude the filter value, use ``NOT_CONTAINS``. For example, the filter ``Title NOT_CONTAINS CloudFront`` matches findings that have a ``Title`` that excludes the string CloudFront.
|
|
136730
|
+
+ To search for values other than the filter value, use ``NOT_EQUALS``. For example, the filter ``AwsAccountId NOT_EQUALS 123456789012`` only matches findings that have an account ID other than ``123456789012``.
|
|
136731
|
+
+ To search for values that don't start with the filter value, use ``PREFIX_NOT_EQUALS``. For example, the filter ``ResourceRegion PREFIX_NOT_EQUALS us`` matches findings with a ``ResourceRegion`` that starts with a value other than ``us``.
|
|
136732
|
+
|
|
136733
|
+
``NOT_CONTAINS``, ``NOT_EQUALS``, and ``PREFIX_NOT_EQUALS`` filters on the same field are joined by ``AND``. A finding matches only if it matches all of those filters. For example, the filters ``Title NOT_CONTAINS CloudFront AND Title NOT_CONTAINS CloudWatch`` match a finding that excludes both ``CloudFront`` and ``CloudWatch`` in the title.
|
|
136734
|
+
You can’t have both a ``CONTAINS`` filter and a ``NOT_CONTAINS`` filter on the same field. Similarly, you can't provide both an ``EQUALS`` filter and a ``NOT_EQUALS`` or ``PREFIX_NOT_EQUALS`` filter on the same field. Combining filters in this way returns an error. ``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
|
|
136735
|
+
You can combine ``PREFIX`` filters with ``NOT_EQUALS`` or ``PREFIX_NOT_EQUALS`` filters for the same field. Security Hub CSPM first processes the ``PREFIX`` filters, and then the ``NOT_EQUALS`` or ``PREFIX_NOT_EQUALS`` filters.
|
|
136736
|
+
For example, for the following filters, Security Hub CSPM first identifies findings that have resource types that start with either ``AwsIam`` or ``AwsEc2``. It then excludes findings that have a resource type of ``AwsIamPolicy`` and findings that have a resource type of ``AwsEc2NetworkInterface``.
|
|
136737
|
+
+ ``ResourceType PREFIX AwsIam``
|
|
136738
|
+
+ ``ResourceType PREFIX AwsEc2``
|
|
136739
|
+
+ ``ResourceType NOT_EQUALS AwsIamPolicy``
|
|
136740
|
+
+ ``ResourceType NOT_EQUALS AwsEc2NetworkInterface``
|
|
136741
|
+
|
|
136742
|
+
``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules V1. ``CONTAINS_WORD`` operator is only supported in ``GetFindingsV2``, ``GetFindingStatisticsV2``, ``GetResourcesV2``, and ``GetResourceStatisticsV2`` APIs. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*. */
|
|
136743
|
+
Comparison: SecurityHubAutomationRule_StringFilterComparison;
|
|
136744
|
+
/** The string filter value. Filter values are case sensitive. For example, the product name for control-based findings is ``Security Hub CSPM``. If you provide ``security hub`` as the filter value, there's no match. */
|
|
136745
|
+
Value: string;
|
|
136746
|
+
});
|
|
136747
|
+
}
|
|
136748
|
+
|
|
136749
|
+
export declare class SecurityHubAutomationRule_WorkflowUpdate {
|
|
136750
|
+
constructor(props: {
|
|
136751
|
+
/** The status of the investigation into the finding. The workflow status is specific to an individual finding. It does not affect the generation of new findings. For example, setting the workflow status to ``SUPPRESSED`` or ``RESOLVED`` does not prevent a new finding for the same issue.
|
|
136752
|
+
The allowed values are the following.
|
|
136753
|
+
+ ``NEW`` - The initial state of a finding, before it is reviewed.
|
|
136754
|
+
Security Hub CSPM also resets ``WorkFlowStatus`` from ``NOTIFIED`` or ``RESOLVED`` to ``NEW`` in the following cases:
|
|
136755
|
+
+ The record state changes from ``ARCHIVED`` to ``ACTIVE``.
|
|
136756
|
+
+ The compliance status changes from ``PASSED`` to either ``WARNING``, ``FAILED``, or ``NOT_AVAILABLE``.
|
|
136757
|
+
|
|
136758
|
+
+ ``NOTIFIED`` - Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner.
|
|
136759
|
+
+ ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
|
|
136760
|
+
+ ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated. */
|
|
136761
|
+
Status: "NEW" | "NOTIFIED" | "RESOLVED" | "SUPPRESSED";
|
|
136762
|
+
});
|
|
136763
|
+
}
|
|
136764
|
+
|
|
136231
136765
|
export declare class SecurityHubPolicy {
|
|
136232
136766
|
constructor(props: {
|
|
136233
136767
|
/** A list that defines which security standards are enabled in the configuration policy. */
|
|
@@ -141699,6 +142233,13 @@ export declare class StringAttributeConstraints {
|
|
|
141699
142233
|
});
|
|
141700
142234
|
}
|
|
141701
142235
|
|
|
142236
|
+
export declare class StringCriteriaCondition {
|
|
142237
|
+
constructor(props: {
|
|
142238
|
+
Comparison?: "NumericEquals" | "NumericGreaterThan" | "NumericGreaterThanEquals" | "NumericLessThan" | "NumericLessThanEquals" | "NumericNotEquals" | "StringEquals" | "StringEqualsIgnoreCase" | "StringLike" | "StringNotEquals" | "StringNotEqualsIgnoreCase" | "StringNotLike";
|
|
142239
|
+
Values?: string[];
|
|
142240
|
+
});
|
|
142241
|
+
}
|
|
142242
|
+
|
|
141702
142243
|
export declare class StringDatasetParameter {
|
|
141703
142244
|
constructor(props: {
|
|
141704
142245
|
/** <p>An identifier for the string parameter that is created in the dataset.</p> */
|
|
@@ -144473,6 +145014,13 @@ export declare class TestCaseLatestVersion {
|
|
|
144473
145014
|
});
|
|
144474
145015
|
}
|
|
144475
145016
|
|
|
145017
|
+
export declare class TextAttributes {
|
|
145018
|
+
constructor(props: {
|
|
145019
|
+
/** Attribute that defines rendering component and validation */
|
|
145020
|
+
IsMultiline: boolean;
|
|
145021
|
+
});
|
|
145022
|
+
}
|
|
145023
|
+
|
|
144476
145024
|
export declare class TextDocumentStatistics {
|
|
144477
145025
|
constructor(props: {
|
|
144478
145026
|
IndexedTextBytes?: number;
|
|
@@ -154680,14 +155228,6 @@ export type AthenaCapacityReservation_CapacityReservationStatus =
|
|
|
154680
155228
|
| "PENDING"
|
|
154681
155229
|
| "UPDATE_PENDING";
|
|
154682
155230
|
|
|
154683
|
-
export type AutomationRule_StringFilterComparison =
|
|
154684
|
-
| "CONTAINS"
|
|
154685
|
-
| "EQUALS"
|
|
154686
|
-
| "NOT_CONTAINS"
|
|
154687
|
-
| "NOT_EQUALS"
|
|
154688
|
-
| "PREFIX"
|
|
154689
|
-
| "PREFIX_NOT_EQUALS";
|
|
154690
|
-
|
|
154691
155231
|
export type AutomationRuleV2_AllowedOperators = "AND" | "OR";
|
|
154692
155232
|
|
|
154693
155233
|
export type AutomationRuleV2_OcsfStringField =
|
|
@@ -160135,6 +160675,14 @@ export type SecurityGroupVpcAssociation_SecurityGroupVpcAssociationState =
|
|
|
160135
160675
|
| "disassociating"
|
|
160136
160676
|
| "disassociation-failed";
|
|
160137
160677
|
|
|
160678
|
+
export type SecurityHubAutomationRule_StringFilterComparison =
|
|
160679
|
+
| "CONTAINS"
|
|
160680
|
+
| "EQUALS"
|
|
160681
|
+
| "NOT_CONTAINS"
|
|
160682
|
+
| "NOT_EQUALS"
|
|
160683
|
+
| "PREFIX"
|
|
160684
|
+
| "PREFIX_NOT_EQUALS";
|
|
160685
|
+
|
|
160138
160686
|
export type SecurityPolicy_SecurityPolicyType = "encryption" | "network";
|
|
160139
160687
|
|
|
160140
160688
|
export type SegmentDefinition_AttributeDimensionType =
|