@pulumi/aws-native 1.1.0 → 1.2.0-alpha.1728935629
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/ec2/getTransitGatewayRouteTable.d.ts +5 -0
- package/ec2/getTransitGatewayRouteTable.js.map +1 -1
- package/ec2/transitGatewayRouteTable.d.ts +2 -2
- package/ec2/transitGatewayRouteTable.js +1 -1
- package/ec2/transitGatewayRouteTable.js.map +1 -1
- package/ec2/vpnConnection.d.ts +16 -32
- package/ec2/vpnConnection.js.map +1 -1
- package/glue/crawler.d.ts +4 -5
- package/glue/crawler.js +0 -2
- package/glue/crawler.js.map +1 -1
- package/glue/getCrawler.d.ts +10 -5
- package/glue/getCrawler.js +1 -1
- package/glue/getCrawler.js.map +1 -1
- package/mediapackagev2/channel.d.ts +16 -0
- package/mediapackagev2/channel.js.map +1 -1
- package/mediapackagev2/getOriginEndpoint.d.ts +3 -0
- package/mediapackagev2/getOriginEndpoint.js.map +1 -1
- package/mediapackagev2/originEndpoint.d.ts +6 -0
- package/mediapackagev2/originEndpoint.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/route53resolver/getResolverRule.d.ts +0 -4
- package/route53resolver/getResolverRule.js.map +1 -1
- package/route53resolver/resolverRule.d.ts +0 -8
- package/route53resolver/resolverRule.js +0 -2
- package/route53resolver/resolverRule.js.map +1 -1
- package/sagemaker/imageVersion.d.ts +1 -5
- package/sagemaker/imageVersion.js +1 -1
- package/sagemaker/imageVersion.js.map +1 -1
- package/securityhub/findingAggregator.d.ts +4 -4
- package/securityhub/getFindingAggregator.d.ts +2 -2
- package/types/enums/ec2/index.d.ts +49 -0
- package/types/enums/ec2/index.js +42 -1
- package/types/enums/ec2/index.js.map +1 -1
- package/types/enums/s3/index.d.ts +0 -8
- package/types/enums/s3/index.js.map +1 -1
- package/types/enums/securityhub/index.d.ts +2 -2
- package/types/input.d.ts +109 -53
- package/types/output.d.ts +109 -53
|
@@ -32,8 +32,8 @@ export interface GetFindingAggregatorResult {
|
|
|
32
32
|
*/
|
|
33
33
|
readonly regionLinkingMode?: enums.securityhub.FindingAggregatorRegionLinkingMode;
|
|
34
34
|
/**
|
|
35
|
-
* If ``RegionLinkingMode`` is ``ALL_REGIONS_EXCEPT_SPECIFIED``, then this is a space-separated list of Regions that
|
|
36
|
-
* If ``RegionLinkingMode`` is ``SPECIFIED_REGIONS``, then this is a space-separated list of Regions that do
|
|
35
|
+
* If ``RegionLinkingMode`` is ``ALL_REGIONS_EXCEPT_SPECIFIED``, then this is a space-separated list of Regions that don't replicate and send findings to the home Region.
|
|
36
|
+
* If ``RegionLinkingMode`` is ``SPECIFIED_REGIONS``, then this is a space-separated list of Regions that do replicate and send findings to the home Region.
|
|
37
37
|
* An ``InvalidInputException`` error results if you populate this field while ``RegionLinkingMode`` is ``NO_REGIONS``.
|
|
38
38
|
*/
|
|
39
39
|
readonly regions?: string[];
|
|
@@ -686,3 +686,52 @@ export declare const VpcEndpointType: {
|
|
|
686
686
|
* Default: Gateway
|
|
687
687
|
*/
|
|
688
688
|
export type VpcEndpointType = (typeof VpcEndpointType)[keyof typeof VpcEndpointType];
|
|
689
|
+
export declare const VpnConnectionCloudwatchLogOptionsSpecificationLogOutputFormat: {
|
|
690
|
+
readonly Json: "json";
|
|
691
|
+
readonly Text: "text";
|
|
692
|
+
};
|
|
693
|
+
export type VpnConnectionCloudwatchLogOptionsSpecificationLogOutputFormat = (typeof VpnConnectionCloudwatchLogOptionsSpecificationLogOutputFormat)[keyof typeof VpnConnectionCloudwatchLogOptionsSpecificationLogOutputFormat];
|
|
694
|
+
export declare const VpnConnectionIkeVersionsRequestListValueValue: {
|
|
695
|
+
readonly Ikev1: "ikev1";
|
|
696
|
+
readonly Ikev2: "ikev2";
|
|
697
|
+
};
|
|
698
|
+
export type VpnConnectionIkeVersionsRequestListValueValue = (typeof VpnConnectionIkeVersionsRequestListValueValue)[keyof typeof VpnConnectionIkeVersionsRequestListValueValue];
|
|
699
|
+
export declare const VpnConnectionPhase1EncryptionAlgorithmsRequestListValueValue: {
|
|
700
|
+
readonly Aes128: "AES128";
|
|
701
|
+
readonly Aes256: "AES256";
|
|
702
|
+
readonly Aes128Gcm16: "AES128-GCM-16";
|
|
703
|
+
readonly Aes256Gcm16: "AES256-GCM-16";
|
|
704
|
+
};
|
|
705
|
+
export type VpnConnectionPhase1EncryptionAlgorithmsRequestListValueValue = (typeof VpnConnectionPhase1EncryptionAlgorithmsRequestListValueValue)[keyof typeof VpnConnectionPhase1EncryptionAlgorithmsRequestListValueValue];
|
|
706
|
+
export declare const VpnConnectionPhase1IntegrityAlgorithmsRequestListValueValue: {
|
|
707
|
+
readonly Sha1: "SHA1";
|
|
708
|
+
readonly Sha2256: "SHA2-256";
|
|
709
|
+
readonly Sha2384: "SHA2-384";
|
|
710
|
+
readonly Sha2512: "SHA2-512";
|
|
711
|
+
};
|
|
712
|
+
export type VpnConnectionPhase1IntegrityAlgorithmsRequestListValueValue = (typeof VpnConnectionPhase1IntegrityAlgorithmsRequestListValueValue)[keyof typeof VpnConnectionPhase1IntegrityAlgorithmsRequestListValueValue];
|
|
713
|
+
export declare const VpnConnectionPhase2EncryptionAlgorithmsRequestListValueValue: {
|
|
714
|
+
readonly Aes128: "AES128";
|
|
715
|
+
readonly Aes256: "AES256";
|
|
716
|
+
readonly Aes128Gcm16: "AES128-GCM-16";
|
|
717
|
+
readonly Aes256Gcm16: "AES256-GCM-16";
|
|
718
|
+
};
|
|
719
|
+
export type VpnConnectionPhase2EncryptionAlgorithmsRequestListValueValue = (typeof VpnConnectionPhase2EncryptionAlgorithmsRequestListValueValue)[keyof typeof VpnConnectionPhase2EncryptionAlgorithmsRequestListValueValue];
|
|
720
|
+
export declare const VpnConnectionPhase2IntegrityAlgorithmsRequestListValueValue: {
|
|
721
|
+
readonly Sha1: "SHA1";
|
|
722
|
+
readonly Sha2256: "SHA2-256";
|
|
723
|
+
readonly Sha2384: "SHA2-384";
|
|
724
|
+
readonly Sha2512: "SHA2-512";
|
|
725
|
+
};
|
|
726
|
+
export type VpnConnectionPhase2IntegrityAlgorithmsRequestListValueValue = (typeof VpnConnectionPhase2IntegrityAlgorithmsRequestListValueValue)[keyof typeof VpnConnectionPhase2IntegrityAlgorithmsRequestListValueValue];
|
|
727
|
+
export declare const VpnConnectionVpnTunnelOptionsSpecificationDpdTimeoutAction: {
|
|
728
|
+
readonly Clear: "clear";
|
|
729
|
+
readonly None: "none";
|
|
730
|
+
readonly Restart: "restart";
|
|
731
|
+
};
|
|
732
|
+
export type VpnConnectionVpnTunnelOptionsSpecificationDpdTimeoutAction = (typeof VpnConnectionVpnTunnelOptionsSpecificationDpdTimeoutAction)[keyof typeof VpnConnectionVpnTunnelOptionsSpecificationDpdTimeoutAction];
|
|
733
|
+
export declare const VpnConnectionVpnTunnelOptionsSpecificationStartupAction: {
|
|
734
|
+
readonly Add: "add";
|
|
735
|
+
readonly Start: "start";
|
|
736
|
+
};
|
|
737
|
+
export type VpnConnectionVpnTunnelOptionsSpecificationStartupAction = (typeof VpnConnectionVpnTunnelOptionsSpecificationStartupAction)[keyof typeof VpnConnectionVpnTunnelOptionsSpecificationStartupAction];
|
package/types/enums/ec2/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.SpotFleetInstanceRequirementsRequestInstanceGenerationsItem = exports.SpotFleetInstanceRequirementsRequestCpuManufacturersItem = exports.SpotFleetInstanceRequirementsRequestBurstablePerformance = exports.SpotFleetInstanceRequirementsRequestBareMetal = exports.SpotFleetInstanceRequirementsRequestAcceleratorTypesItem = exports.SpotFleetInstanceRequirementsRequestAcceleratorNamesItem = exports.SpotFleetInstanceRequirementsRequestAcceleratorManufacturersItem = exports.SpotFleetEbsBlockDeviceVolumeType = exports.SnapshotBlockPublicAccessState = exports.PrefixListAddressFamily = exports.NetworkInsightsPathProtocol = exports.NetworkInsightsAnalysisStatus = exports.NetworkInsightsAccessScopeProtocol = exports.NetworkInsightsAccessScopeAnalysisStatus = exports.NetworkInsightsAccessScopeAnalysisFindingsFound = exports.LaunchTemplateCpuOptionsAmdSevSnp = exports.KeyPairKeyType = exports.KeyPairKeyFormat = exports.IpamTier = exports.IpamScopeType = exports.IpamPoolState = exports.IpamPoolPublicIpSource = exports.IpamPoolIpamScopeType = exports.IpamPoolAwsService = exports.InstancePrivateDnsNameOptionsHostnameType = exports.InstanceAffinity = exports.FlowLogTrafficType = exports.FlowLogResourceType = exports.FlowLogLogDestinationType = exports.FlowLogDestinationOptionsPropertiesFileFormat = exports.Ec2FleetType = exports.Ec2FleetTargetCapacitySpecificationRequestTargetCapacityUnitType = exports.Ec2FleetTargetCapacitySpecificationRequestDefaultTargetCapacityType = exports.Ec2FleetTagSpecificationResourceType = exports.Ec2FleetSpotOptionsRequestInstanceInterruptionBehavior = exports.Ec2FleetSpotOptionsRequestAllocationStrategy = exports.Ec2FleetInstanceRequirementsRequestLocalStorageTypesItem = exports.Ec2FleetInstanceRequirementsRequestLocalStorage = exports.Ec2FleetInstanceRequirementsRequestInstanceGenerationsItem = exports.Ec2FleetInstanceRequirementsRequestCpuManufacturersItem = exports.Ec2FleetInstanceRequirementsRequestBurstablePerformance = exports.Ec2FleetInstanceRequirementsRequestBareMetal = exports.Ec2FleetInstanceRequirementsRequestAcceleratorTypesItem = exports.Ec2FleetInstanceRequirementsRequestAcceleratorNamesItem = exports.Ec2FleetInstanceRequirementsRequestAcceleratorManufacturersItem = exports.Ec2FleetExcessCapacityTerminationPolicy = exports.Ec2FleetCapacityReservationOptionsRequestUsageStrategy = exports.Ec2FleetCapacityRebalanceReplacementStrategy = exports.CapacityReservationFleetTenancy = exports.CapacityReservationFleetInstanceMatchCriteria = void 0;
|
|
6
|
-
exports.VpcEndpointType = exports.SpotFleetTagSpecificationResourceType = exports.SpotFleetSpotPlacementTenancy = exports.SpotFleetSpotCapacityRebalanceReplacementStrategy = exports.SpotFleetRequestConfigDataType = exports.SpotFleetRequestConfigDataTargetCapacityUnitType = exports.SpotFleetRequestConfigDataInstanceInterruptionBehavior = exports.SpotFleetRequestConfigDataExcessCapacityTerminationPolicy = exports.SpotFleetRequestConfigDataAllocationStrategy = exports.SpotFleetInstanceRequirementsRequestLocalStorageTypesItem = exports.SpotFleetInstanceRequirementsRequestLocalStorage = void 0;
|
|
6
|
+
exports.VpnConnectionVpnTunnelOptionsSpecificationStartupAction = exports.VpnConnectionVpnTunnelOptionsSpecificationDpdTimeoutAction = exports.VpnConnectionPhase2IntegrityAlgorithmsRequestListValueValue = exports.VpnConnectionPhase2EncryptionAlgorithmsRequestListValueValue = exports.VpnConnectionPhase1IntegrityAlgorithmsRequestListValueValue = exports.VpnConnectionPhase1EncryptionAlgorithmsRequestListValueValue = exports.VpnConnectionIkeVersionsRequestListValueValue = exports.VpnConnectionCloudwatchLogOptionsSpecificationLogOutputFormat = exports.VpcEndpointType = exports.SpotFleetTagSpecificationResourceType = exports.SpotFleetSpotPlacementTenancy = exports.SpotFleetSpotCapacityRebalanceReplacementStrategy = exports.SpotFleetRequestConfigDataType = exports.SpotFleetRequestConfigDataTargetCapacityUnitType = exports.SpotFleetRequestConfigDataInstanceInterruptionBehavior = exports.SpotFleetRequestConfigDataExcessCapacityTerminationPolicy = exports.SpotFleetRequestConfigDataAllocationStrategy = exports.SpotFleetInstanceRequirementsRequestLocalStorageTypesItem = exports.SpotFleetInstanceRequirementsRequestLocalStorage = void 0;
|
|
7
7
|
exports.CapacityReservationFleetInstanceMatchCriteria = {
|
|
8
8
|
Open: "open",
|
|
9
9
|
};
|
|
@@ -400,4 +400,45 @@ exports.VpcEndpointType = {
|
|
|
400
400
|
Gateway: "Gateway",
|
|
401
401
|
GatewayLoadBalancer: "GatewayLoadBalancer",
|
|
402
402
|
};
|
|
403
|
+
exports.VpnConnectionCloudwatchLogOptionsSpecificationLogOutputFormat = {
|
|
404
|
+
Json: "json",
|
|
405
|
+
Text: "text",
|
|
406
|
+
};
|
|
407
|
+
exports.VpnConnectionIkeVersionsRequestListValueValue = {
|
|
408
|
+
Ikev1: "ikev1",
|
|
409
|
+
Ikev2: "ikev2",
|
|
410
|
+
};
|
|
411
|
+
exports.VpnConnectionPhase1EncryptionAlgorithmsRequestListValueValue = {
|
|
412
|
+
Aes128: "AES128",
|
|
413
|
+
Aes256: "AES256",
|
|
414
|
+
Aes128Gcm16: "AES128-GCM-16",
|
|
415
|
+
Aes256Gcm16: "AES256-GCM-16",
|
|
416
|
+
};
|
|
417
|
+
exports.VpnConnectionPhase1IntegrityAlgorithmsRequestListValueValue = {
|
|
418
|
+
Sha1: "SHA1",
|
|
419
|
+
Sha2256: "SHA2-256",
|
|
420
|
+
Sha2384: "SHA2-384",
|
|
421
|
+
Sha2512: "SHA2-512",
|
|
422
|
+
};
|
|
423
|
+
exports.VpnConnectionPhase2EncryptionAlgorithmsRequestListValueValue = {
|
|
424
|
+
Aes128: "AES128",
|
|
425
|
+
Aes256: "AES256",
|
|
426
|
+
Aes128Gcm16: "AES128-GCM-16",
|
|
427
|
+
Aes256Gcm16: "AES256-GCM-16",
|
|
428
|
+
};
|
|
429
|
+
exports.VpnConnectionPhase2IntegrityAlgorithmsRequestListValueValue = {
|
|
430
|
+
Sha1: "SHA1",
|
|
431
|
+
Sha2256: "SHA2-256",
|
|
432
|
+
Sha2384: "SHA2-384",
|
|
433
|
+
Sha2512: "SHA2-512",
|
|
434
|
+
};
|
|
435
|
+
exports.VpnConnectionVpnTunnelOptionsSpecificationDpdTimeoutAction = {
|
|
436
|
+
Clear: "clear",
|
|
437
|
+
None: "none",
|
|
438
|
+
Restart: "restart",
|
|
439
|
+
};
|
|
440
|
+
exports.VpnConnectionVpnTunnelOptionsSpecificationStartupAction = {
|
|
441
|
+
Add: "add",
|
|
442
|
+
Start: "start",
|
|
443
|
+
};
|
|
403
444
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/ec2/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/ec2/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -136,14 +136,6 @@ export declare const BucketLifecycleConfigurationTransitionDefaultMinimumObjectS
|
|
|
136
136
|
readonly VariesByStorageClass: "varies_by_storage_class";
|
|
137
137
|
readonly AllStorageClasses128k: "all_storage_classes_128K";
|
|
138
138
|
};
|
|
139
|
-
/**
|
|
140
|
-
* Indicates which default minimum object size behavior is applied to the lifecycle configuration.
|
|
141
|
-
*
|
|
142
|
-
* - `all_storage_classes_128K` - Objects smaller than 128 KB will not transition to any storage class by default.
|
|
143
|
-
* - `varies_by_storage_class` - Objects smaller than 128 KB will transition to Glacier Flexible Retrieval or Glacier Deep Archive storage classes. By default, all other storage classes will prevent transitions smaller than 128 KB.
|
|
144
|
-
*
|
|
145
|
-
* To customize the minimum object size for any transition you can add a filter that specifies a custom `ObjectSizeGreaterThan` or `ObjectSizeLessThan` in the body of your transition rule. Custom filters always take precedence over the default transition behavior.
|
|
146
|
-
*/
|
|
147
139
|
export type BucketLifecycleConfigurationTransitionDefaultMinimumObjectSize = (typeof BucketLifecycleConfigurationTransitionDefaultMinimumObjectSize)[keyof typeof BucketLifecycleConfigurationTransitionDefaultMinimumObjectSize];
|
|
148
140
|
export declare const BucketMetricsStatus: {
|
|
149
141
|
readonly Disabled: "Disabled";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/s3/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAGpE,QAAA,6BAA6B,GAAG;IACzC,GAAG,EAAE,KAAK;IACV,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;CAC3B,CAAC;AAOE,QAAA,qBAAqB,GAAG;IACjC,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,WAAW;CAChB,CAAC;AAOE,QAAA,uBAAuB,GAAG;IACnC,MAAM,EAAE,QAAQ;CACV,CAAC;AAOE,QAAA,wBAAwB,GAAG;IACpC,QAAQ,EAAE,UAAU;IACpB,GAAG,EAAE,KAAK;CACJ,CAAC;AAOE,QAAA,+CAA+C,GAAG;IAC3D,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,WAAW;CAChB,CAAC;AAOE,QAAA,mBAAmB,GAAG;IAC/B,iBAAiB,EAAE,mBAAmB;IACtC,WAAW,EAAE,aAAa;IAC1B,sBAAsB,EAAE,wBAAwB;IAChD,eAAe,EAAE,iBAAiB;IAClC,gBAAgB,EAAE,kBAAkB;IACpC,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,YAAY;IACxB,eAAe,EAAE,iBAAiB;CAC5B,CAAC;AAUE,QAAA,gCAAgC,GAAG;IAC5C,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;CACV,CAAC;AAIE,QAAA,0BAA0B,GAAG;IACtC,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;CAClB,CAAC;AAOE,QAAA,mCAAmC,GAAG;IAC/C,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;CACZ,CAAC;AAOE,QAAA,uBAAuB,GAAG;IACnC,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;IACV,OAAO,EAAE,SAAS;CACZ,CAAC;AAQE,QAAA,2CAA2C,GAAG;IACvD,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;CACZ,CAAC;AAOE,QAAA,kDAAkD,GAAG;IAC9D,GAAG,EAAE,KAAK;IACV,OAAO,EAAE,SAAS;CACZ,CAAC;AAOE,QAAA,8CAA8C,GAAG;IAC1D,IAAI,EAAE,MAAM;IACZ,gBAAgB,EAAE,kBAAkB;IACpC,YAAY,EAAE,cAAc;IAC5B,IAAI,EAAE,MAAM;IACZ,mBAAmB,EAAE,qBAAqB;IAC1C,iBAAiB,EAAE,mBAAmB;IACtC,gBAAgB,EAAE,kBAAkB;IACpC,yBAAyB,EAAE,2BAA2B;IACtD,cAAc,EAAE,gBAAgB;IAChC,yBAAyB,EAAE,2BAA2B;IACtD,4BAA4B,EAAE,8BAA8B;IAC5D,eAAe,EAAE,iBAAiB;IAClC,iBAAiB,EAAE,mBAAmB;IACtC,uBAAuB,EAAE,yBAAyB;IAClD,WAAW,EAAE,aAAa;CACpB,CAAC;AAIE,QAAA,6CAA6C,GAAG;IACzD,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;CACV,CAAC;AAOE,QAAA,8DAA8D,GAAG;IAC1E,oBAAoB,EAAE,yBAAyB;IAC/C,qBAAqB,EAAE,0BAA0B;CAC3C,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/s3/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -80,14 +80,14 @@ export declare const AutomationRuleWorkflowUpdateStatus: {
|
|
|
80
80
|
*
|
|
81
81
|
* + ``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.
|
|
82
82
|
* + ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
|
|
83
|
-
* + ``SUPPRESSED`` - Indicates that you reviewed the finding and
|
|
83
|
+
* + ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated.
|
|
84
84
|
*/
|
|
85
85
|
export type AutomationRuleWorkflowUpdateStatus = (typeof AutomationRuleWorkflowUpdateStatus)[keyof typeof AutomationRuleWorkflowUpdateStatus];
|
|
86
86
|
export declare const AutomationRulesActionType: {
|
|
87
87
|
readonly FindingFieldsUpdate: "FINDING_FIELDS_UPDATE";
|
|
88
88
|
};
|
|
89
89
|
/**
|
|
90
|
-
* Specifies
|
|
90
|
+
* Specifies the type of action that Security Hub takes when a finding matches the defined criteria of a rule.
|
|
91
91
|
*/
|
|
92
92
|
export type AutomationRulesActionType = (typeof AutomationRulesActionType)[keyof typeof AutomationRulesActionType];
|
|
93
93
|
export declare const AutomationRulesFindingFieldsUpdateVerificationState: {
|
package/types/input.d.ts
CHANGED
|
@@ -18902,7 +18902,6 @@ export declare namespace ec2 {
|
|
|
18902
18902
|
*
|
|
18903
18903
|
* - To include instance types with GPU hardware, specify `gpu` .
|
|
18904
18904
|
* - To include instance types with FPGA hardware, specify `fpga` .
|
|
18905
|
-
* - To include instance types with inference hardware, specify `inference` .
|
|
18906
18905
|
*
|
|
18907
18906
|
* Default: Any accelerator type
|
|
18908
18907
|
*/
|
|
@@ -21243,7 +21242,6 @@ export declare namespace ec2 {
|
|
|
21243
21242
|
*
|
|
21244
21243
|
* - To include instance types with GPU hardware, specify `gpu` .
|
|
21245
21244
|
* - To include instance types with FPGA hardware, specify `fpga` .
|
|
21246
|
-
* - To include instance types with inference hardware, specify `inference` .
|
|
21247
21245
|
*
|
|
21248
21246
|
* Default: Any accelerator type
|
|
21249
21247
|
*/
|
|
@@ -22080,15 +22078,61 @@ export declare namespace ec2 {
|
|
|
22080
22078
|
*/
|
|
22081
22079
|
userInfoEndpoint?: pulumi.Input<string>;
|
|
22082
22080
|
}
|
|
22081
|
+
interface VpnConnectionCloudwatchLogOptionsSpecificationArgs {
|
|
22082
|
+
logEnabled?: pulumi.Input<boolean>;
|
|
22083
|
+
logGroupArn?: pulumi.Input<string>;
|
|
22084
|
+
logOutputFormat?: pulumi.Input<enums.ec2.VpnConnectionCloudwatchLogOptionsSpecificationLogOutputFormat>;
|
|
22085
|
+
}
|
|
22086
|
+
interface VpnConnectionIkeVersionsRequestListValueArgs {
|
|
22087
|
+
value?: pulumi.Input<enums.ec2.VpnConnectionIkeVersionsRequestListValueValue>;
|
|
22088
|
+
}
|
|
22089
|
+
interface VpnConnectionPhase1EncryptionAlgorithmsRequestListValueArgs {
|
|
22090
|
+
value?: pulumi.Input<enums.ec2.VpnConnectionPhase1EncryptionAlgorithmsRequestListValueValue>;
|
|
22091
|
+
}
|
|
22092
|
+
interface VpnConnectionPhase1IntegrityAlgorithmsRequestListValueArgs {
|
|
22093
|
+
value?: pulumi.Input<enums.ec2.VpnConnectionPhase1IntegrityAlgorithmsRequestListValueValue>;
|
|
22094
|
+
}
|
|
22095
|
+
interface VpnConnectionPhase1dhGroupNumbersRequestListValueArgs {
|
|
22096
|
+
value?: pulumi.Input<number>;
|
|
22097
|
+
}
|
|
22098
|
+
interface VpnConnectionPhase2EncryptionAlgorithmsRequestListValueArgs {
|
|
22099
|
+
value?: pulumi.Input<enums.ec2.VpnConnectionPhase2EncryptionAlgorithmsRequestListValueValue>;
|
|
22100
|
+
}
|
|
22101
|
+
interface VpnConnectionPhase2IntegrityAlgorithmsRequestListValueArgs {
|
|
22102
|
+
value?: pulumi.Input<enums.ec2.VpnConnectionPhase2IntegrityAlgorithmsRequestListValueValue>;
|
|
22103
|
+
}
|
|
22104
|
+
interface VpnConnectionPhase2dhGroupNumbersRequestListValueArgs {
|
|
22105
|
+
value?: pulumi.Input<number>;
|
|
22106
|
+
}
|
|
22107
|
+
interface VpnConnectionVpnTunnelLogOptionsSpecificationArgs {
|
|
22108
|
+
cloudwatchLogOptions?: pulumi.Input<inputs.ec2.VpnConnectionCloudwatchLogOptionsSpecificationArgs>;
|
|
22109
|
+
}
|
|
22083
22110
|
/**
|
|
22084
22111
|
* The tunnel options for a single VPN tunnel.
|
|
22085
22112
|
*/
|
|
22086
22113
|
interface VpnConnectionVpnTunnelOptionsSpecificationArgs {
|
|
22114
|
+
dpdTimeoutAction?: pulumi.Input<enums.ec2.VpnConnectionVpnTunnelOptionsSpecificationDpdTimeoutAction>;
|
|
22115
|
+
dpdTimeoutSeconds?: pulumi.Input<number>;
|
|
22116
|
+
enableTunnelLifecycleControl?: pulumi.Input<boolean>;
|
|
22117
|
+
ikeVersions?: pulumi.Input<pulumi.Input<inputs.ec2.VpnConnectionIkeVersionsRequestListValueArgs>[]>;
|
|
22118
|
+
logOptions?: pulumi.Input<inputs.ec2.VpnConnectionVpnTunnelLogOptionsSpecificationArgs>;
|
|
22119
|
+
phase1EncryptionAlgorithms?: pulumi.Input<pulumi.Input<inputs.ec2.VpnConnectionPhase1EncryptionAlgorithmsRequestListValueArgs>[]>;
|
|
22120
|
+
phase1IntegrityAlgorithms?: pulumi.Input<pulumi.Input<inputs.ec2.VpnConnectionPhase1IntegrityAlgorithmsRequestListValueArgs>[]>;
|
|
22121
|
+
phase1LifetimeSeconds?: pulumi.Input<number>;
|
|
22122
|
+
phase1dhGroupNumbers?: pulumi.Input<pulumi.Input<inputs.ec2.VpnConnectionPhase1dhGroupNumbersRequestListValueArgs>[]>;
|
|
22123
|
+
phase2EncryptionAlgorithms?: pulumi.Input<pulumi.Input<inputs.ec2.VpnConnectionPhase2EncryptionAlgorithmsRequestListValueArgs>[]>;
|
|
22124
|
+
phase2IntegrityAlgorithms?: pulumi.Input<pulumi.Input<inputs.ec2.VpnConnectionPhase2IntegrityAlgorithmsRequestListValueArgs>[]>;
|
|
22125
|
+
phase2LifetimeSeconds?: pulumi.Input<number>;
|
|
22126
|
+
phase2dhGroupNumbers?: pulumi.Input<pulumi.Input<inputs.ec2.VpnConnectionPhase2dhGroupNumbersRequestListValueArgs>[]>;
|
|
22087
22127
|
/**
|
|
22088
22128
|
* The pre-shared key (PSK) to establish initial authentication between the virtual private gateway and customer gateway.
|
|
22089
22129
|
* Constraints: Allowed characters are alphanumeric characters, periods (.), and underscores (_). Must be between 8 and 64 characters in length and cannot start with zero (0).
|
|
22090
22130
|
*/
|
|
22091
22131
|
preSharedKey?: pulumi.Input<string>;
|
|
22132
|
+
rekeyFuzzPercentage?: pulumi.Input<number>;
|
|
22133
|
+
rekeyMarginTimeSeconds?: pulumi.Input<number>;
|
|
22134
|
+
replayWindowSize?: pulumi.Input<number>;
|
|
22135
|
+
startupAction?: pulumi.Input<enums.ec2.VpnConnectionVpnTunnelOptionsSpecificationStartupAction>;
|
|
22092
22136
|
/**
|
|
22093
22137
|
* The range of inside IP addresses for the tunnel. Any specified CIDR blocks must be unique across all VPN connections that use the same virtual private gateway.
|
|
22094
22138
|
* Constraints: A size /30 CIDR block from the ``169.254.0.0/16`` range. The following CIDR blocks are reserved and cannot be used:
|
|
@@ -22101,6 +22145,7 @@ export declare namespace ec2 {
|
|
|
22101
22145
|
* + ``169.254.169.252/30``
|
|
22102
22146
|
*/
|
|
22103
22147
|
tunnelInsideCidr?: pulumi.Input<string>;
|
|
22148
|
+
tunnelInsideIpv6Cidr?: pulumi.Input<string>;
|
|
22104
22149
|
}
|
|
22105
22150
|
}
|
|
22106
22151
|
export declare namespace ecr {
|
|
@@ -28241,9 +28286,12 @@ export declare namespace globalaccelerator {
|
|
|
28241
28286
|
}
|
|
28242
28287
|
}
|
|
28243
28288
|
export declare namespace glue {
|
|
28289
|
+
/**
|
|
28290
|
+
* Specifies an AWS Glue Data Catalog target.
|
|
28291
|
+
*/
|
|
28244
28292
|
interface CrawlerCatalogTargetArgs {
|
|
28245
28293
|
/**
|
|
28246
|
-
* The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a
|
|
28294
|
+
* The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a Catalog connection type paired with a NETWORK Connection type.
|
|
28247
28295
|
*/
|
|
28248
28296
|
connectionName?: pulumi.Input<string>;
|
|
28249
28297
|
/**
|
|
@@ -28251,11 +28299,11 @@ export declare namespace glue {
|
|
|
28251
28299
|
*/
|
|
28252
28300
|
databaseName?: pulumi.Input<string>;
|
|
28253
28301
|
/**
|
|
28254
|
-
* A valid Amazon dead-letter SQS ARN. For example,
|
|
28302
|
+
* A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
|
|
28255
28303
|
*/
|
|
28256
28304
|
dlqEventQueueArn?: pulumi.Input<string>;
|
|
28257
28305
|
/**
|
|
28258
|
-
* A valid Amazon SQS ARN. For example,
|
|
28306
|
+
* A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
|
|
28259
28307
|
*/
|
|
28260
28308
|
eventQueueArn?: pulumi.Input<string>;
|
|
28261
28309
|
/**
|
|
@@ -28263,6 +28311,9 @@ export declare namespace glue {
|
|
|
28263
28311
|
*/
|
|
28264
28312
|
tables?: pulumi.Input<pulumi.Input<string>[]>;
|
|
28265
28313
|
}
|
|
28314
|
+
/**
|
|
28315
|
+
* Specifies a Delta data store to crawl one or more Delta tables.
|
|
28316
|
+
*/
|
|
28266
28317
|
interface CrawlerDeltaTargetArgs {
|
|
28267
28318
|
/**
|
|
28268
28319
|
* The name of the connection to use to connect to the Delta table target.
|
|
@@ -28281,12 +28332,18 @@ export declare namespace glue {
|
|
|
28281
28332
|
*/
|
|
28282
28333
|
writeManifest?: pulumi.Input<boolean>;
|
|
28283
28334
|
}
|
|
28335
|
+
/**
|
|
28336
|
+
* Specifies an Amazon DynamoDB table to crawl.
|
|
28337
|
+
*/
|
|
28284
28338
|
interface CrawlerDynamoDbTargetArgs {
|
|
28285
28339
|
/**
|
|
28286
28340
|
* The name of the DynamoDB table to crawl.
|
|
28287
28341
|
*/
|
|
28288
28342
|
path?: pulumi.Input<string>;
|
|
28289
28343
|
}
|
|
28344
|
+
/**
|
|
28345
|
+
* Specifies Apache Iceberg data store targets.
|
|
28346
|
+
*/
|
|
28290
28347
|
interface CrawlerIcebergTargetArgs {
|
|
28291
28348
|
/**
|
|
28292
28349
|
* The name of the connection to use to connect to the Iceberg target.
|
|
@@ -28305,19 +28362,22 @@ export declare namespace glue {
|
|
|
28305
28362
|
*/
|
|
28306
28363
|
paths?: pulumi.Input<pulumi.Input<string>[]>;
|
|
28307
28364
|
}
|
|
28365
|
+
/**
|
|
28366
|
+
* Specifies a JDBC data store to crawl.
|
|
28367
|
+
*/
|
|
28308
28368
|
interface CrawlerJdbcTargetArgs {
|
|
28309
28369
|
/**
|
|
28310
28370
|
* The name of the connection to use to connect to the JDBC target.
|
|
28311
28371
|
*/
|
|
28312
28372
|
connectionName?: pulumi.Input<string>;
|
|
28313
28373
|
/**
|
|
28314
|
-
* Specify a value of
|
|
28374
|
+
* Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.
|
|
28315
28375
|
*
|
|
28316
28376
|
* If you do not need additional metadata, keep the field empty.
|
|
28317
28377
|
*/
|
|
28318
28378
|
enableAdditionalMetadata?: pulumi.Input<pulumi.Input<string>[]>;
|
|
28319
28379
|
/**
|
|
28320
|
-
* A list of glob patterns used to exclude from the crawl. For more information, see
|
|
28380
|
+
* A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
|
|
28321
28381
|
*/
|
|
28322
28382
|
exclusions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
28323
28383
|
/**
|
|
@@ -28325,6 +28385,9 @@ export declare namespace glue {
|
|
|
28325
28385
|
*/
|
|
28326
28386
|
path?: pulumi.Input<string>;
|
|
28327
28387
|
}
|
|
28388
|
+
/**
|
|
28389
|
+
* Specifies AWS Lake Formation configuration settings for the crawler
|
|
28390
|
+
*/
|
|
28328
28391
|
interface CrawlerLakeFormationConfigurationArgs {
|
|
28329
28392
|
/**
|
|
28330
28393
|
* Required for cross account crawls. For same account crawls as the target data, this can be left as null.
|
|
@@ -28335,6 +28398,9 @@ export declare namespace glue {
|
|
|
28335
28398
|
*/
|
|
28336
28399
|
useLakeFormationCredentials?: pulumi.Input<boolean>;
|
|
28337
28400
|
}
|
|
28401
|
+
/**
|
|
28402
|
+
* Specifies an Amazon DocumentDB or MongoDB data store to crawl.
|
|
28403
|
+
*/
|
|
28338
28404
|
interface CrawlerMongoDbTargetArgs {
|
|
28339
28405
|
/**
|
|
28340
28406
|
* The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.
|
|
@@ -28345,33 +28411,33 @@ export declare namespace glue {
|
|
|
28345
28411
|
*/
|
|
28346
28412
|
path?: pulumi.Input<string>;
|
|
28347
28413
|
}
|
|
28414
|
+
/**
|
|
28415
|
+
* When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in AWS Glue in the developer guide.
|
|
28416
|
+
*/
|
|
28348
28417
|
interface CrawlerRecrawlPolicyArgs {
|
|
28349
28418
|
/**
|
|
28350
|
-
* Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.
|
|
28351
|
-
*
|
|
28352
|
-
* A value of `CRAWL_EVERYTHING` specifies crawling the entire dataset again.
|
|
28353
|
-
*
|
|
28354
|
-
* A value of `CRAWL_NEW_FOLDERS_ONLY` specifies crawling only folders that were added since the last crawler run.
|
|
28355
|
-
*
|
|
28356
|
-
* A value of `CRAWL_EVENT_MODE` specifies crawling only the changes identified by Amazon S3 events.
|
|
28419
|
+
* Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. A value of CRAWL_EVERYTHING specifies crawling the entire dataset again. A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run. A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.
|
|
28357
28420
|
*/
|
|
28358
28421
|
recrawlBehavior?: pulumi.Input<string>;
|
|
28359
28422
|
}
|
|
28423
|
+
/**
|
|
28424
|
+
* Specifies a data store in Amazon Simple Storage Service (Amazon S3).
|
|
28425
|
+
*/
|
|
28360
28426
|
interface CrawlerS3TargetArgs {
|
|
28361
28427
|
/**
|
|
28362
28428
|
* The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).
|
|
28363
28429
|
*/
|
|
28364
28430
|
connectionName?: pulumi.Input<string>;
|
|
28365
28431
|
/**
|
|
28366
|
-
* A valid Amazon dead-letter SQS ARN. For example,
|
|
28432
|
+
* A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
|
|
28367
28433
|
*/
|
|
28368
28434
|
dlqEventQueueArn?: pulumi.Input<string>;
|
|
28369
28435
|
/**
|
|
28370
|
-
* A valid Amazon SQS ARN. For example,
|
|
28436
|
+
* A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
|
|
28371
28437
|
*/
|
|
28372
28438
|
eventQueueArn?: pulumi.Input<string>;
|
|
28373
28439
|
/**
|
|
28374
|
-
* A list of glob patterns used to exclude from the crawl.
|
|
28440
|
+
* A list of glob patterns used to exclude from the crawl.
|
|
28375
28441
|
*/
|
|
28376
28442
|
exclusions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
28377
28443
|
/**
|
|
@@ -28383,32 +28449,31 @@ export declare namespace glue {
|
|
|
28383
28449
|
*/
|
|
28384
28450
|
sampleSize?: pulumi.Input<number>;
|
|
28385
28451
|
}
|
|
28452
|
+
/**
|
|
28453
|
+
* A scheduling object using a cron statement to schedule an event.
|
|
28454
|
+
*/
|
|
28386
28455
|
interface CrawlerScheduleArgs {
|
|
28387
28456
|
/**
|
|
28388
|
-
* A
|
|
28457
|
+
* A cron expression used to specify the schedule. For more information, see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, specify cron(15 12 * * ? *).
|
|
28389
28458
|
*/
|
|
28390
28459
|
scheduleExpression?: pulumi.Input<string>;
|
|
28391
28460
|
}
|
|
28461
|
+
/**
|
|
28462
|
+
* The policy that specifies update and delete behaviors for the crawler. The policy tells the crawler what to do in the event that it detects a change in a table that already exists in the customer's database at the time of the crawl. The SchemaChangePolicy does not affect whether or how new tables and partitions are added. New tables and partitions are always created regardless of the SchemaChangePolicy on a crawler. The SchemaChangePolicy consists of two components, UpdateBehavior and DeleteBehavior.
|
|
28463
|
+
*/
|
|
28392
28464
|
interface CrawlerSchemaChangePolicyArgs {
|
|
28393
28465
|
/**
|
|
28394
|
-
* The deletion behavior when the crawler finds a deleted object.
|
|
28395
|
-
*
|
|
28396
|
-
* A value of `LOG` specifies that if a table or partition is found to no longer exist, do not delete it, only log that it was found to no longer exist.
|
|
28397
|
-
*
|
|
28398
|
-
* A value of `DELETE_FROM_DATABASE` specifies that if a table or partition is found to have been removed, delete it from the database.
|
|
28399
|
-
*
|
|
28400
|
-
* A value of `DEPRECATE_IN_DATABASE` specifies that if a table has been found to no longer exist, to add a property to the table that says "DEPRECATED" and includes a timestamp with the time of deprecation.
|
|
28466
|
+
* The deletion behavior when the crawler finds a deleted object. A value of LOG specifies that if a table or partition is found to no longer exist, do not delete it, only log that it was found to no longer exist. A value of DELETE_FROM_DATABASE specifies that if a table or partition is found to have been removed, delete it from the database. A value of DEPRECATE_IN_DATABASE specifies that if a table has been found to no longer exist, to add a property to the table that says 'DEPRECATED' and includes a timestamp with the time of deprecation.
|
|
28401
28467
|
*/
|
|
28402
28468
|
deleteBehavior?: pulumi.Input<string>;
|
|
28403
28469
|
/**
|
|
28404
|
-
* The update behavior when the crawler finds a changed schema.
|
|
28405
|
-
*
|
|
28406
|
-
* A value of `LOG` specifies that if a table or a partition already exists, and a change is detected, do not update it, only log that a change was detected. Add new tables and new partitions (including on existing tables).
|
|
28407
|
-
*
|
|
28408
|
-
* A value of `UPDATE_IN_DATABASE` specifies that if a table or partition already exists, and a change is detected, update it. Add new tables and partitions.
|
|
28470
|
+
* The update behavior when the crawler finds a changed schema. A value of LOG specifies that if a table or a partition already exists, and a change is detected, do not update it, only log that a change was detected. Add new tables and new partitions (including on existing tables). A value of UPDATE_IN_DATABASE specifies that if a table or partition already exists, and a change is detected, update it. Add new tables and partitions.
|
|
28409
28471
|
*/
|
|
28410
28472
|
updateBehavior?: pulumi.Input<string>;
|
|
28411
28473
|
}
|
|
28474
|
+
/**
|
|
28475
|
+
* Specifies data stores to crawl.
|
|
28476
|
+
*/
|
|
28412
28477
|
interface CrawlerTargetsArgs {
|
|
28413
28478
|
/**
|
|
28414
28479
|
* Specifies AWS Glue Data Catalog targets.
|
|
@@ -44074,6 +44139,7 @@ export declare namespace networkfirewall {
|
|
|
44074
44139
|
dimensions: pulumi.Input<pulumi.Input<inputs.networkfirewall.FirewallPolicyDimensionArgs>[]>;
|
|
44075
44140
|
}
|
|
44076
44141
|
interface FirewallPolicyStatefulEngineOptionsArgs {
|
|
44142
|
+
flowTimeouts?: pulumi.Input<inputs.networkfirewall.FirewallPolicyStatefulEngineOptionsFlowTimeoutsPropertiesArgs>;
|
|
44077
44143
|
/**
|
|
44078
44144
|
* Indicates how to manage the order of stateful rule evaluation for the policy. `DEFAULT_ACTION_ORDER` is the default behavior. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on certain settings. For more information, see [Evaluation order for stateful rules](https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html) in the *AWS Network Firewall Developer Guide* .
|
|
44079
44145
|
*/
|
|
@@ -44087,6 +44153,9 @@ export declare namespace networkfirewall {
|
|
|
44087
44153
|
*/
|
|
44088
44154
|
streamExceptionPolicy?: pulumi.Input<enums.networkfirewall.FirewallPolicyStreamExceptionPolicy>;
|
|
44089
44155
|
}
|
|
44156
|
+
interface FirewallPolicyStatefulEngineOptionsFlowTimeoutsPropertiesArgs {
|
|
44157
|
+
tcpIdleTimeoutSeconds?: pulumi.Input<number>;
|
|
44158
|
+
}
|
|
44090
44159
|
interface FirewallPolicyStatefulRuleGroupOverrideArgs {
|
|
44091
44160
|
/**
|
|
44092
44161
|
* The action that changes the rule group from `DROP` to `ALERT` . This only applies to managed rule groups.
|
|
@@ -73649,16 +73718,7 @@ export declare namespace redshift {
|
|
|
73649
73718
|
/**
|
|
73650
73719
|
* The prefix applied to the log file names.
|
|
73651
73720
|
*
|
|
73652
|
-
*
|
|
73653
|
-
*
|
|
73654
|
-
* - Cannot exceed 512 characters
|
|
73655
|
-
* - Cannot contain spaces( ), double quotes ("), single quotes ('), a backslash (\), or control characters. The hexadecimal codes for invalid characters are:
|
|
73656
|
-
*
|
|
73657
|
-
* - x00 to x20
|
|
73658
|
-
* - x22
|
|
73659
|
-
* - x27
|
|
73660
|
-
* - x5c
|
|
73661
|
-
* - x7f or larger
|
|
73721
|
+
* Valid characters are any letter from any language, any whitespace character, any numeric character, and the following characters: underscore ( `_` ), period ( `.` ), colon ( `:` ), slash ( `/` ), equal ( `=` ), plus ( `+` ), backslash ( `\` ), hyphen ( `-` ), at symbol ( `@` ).
|
|
73662
73722
|
*/
|
|
73663
73723
|
s3KeyPrefix?: pulumi.Input<string>;
|
|
73664
73724
|
}
|
|
@@ -74663,6 +74723,10 @@ export declare namespace route53resolver {
|
|
|
74663
74723
|
* The protocol that you want to use to forward DNS queries.
|
|
74664
74724
|
*/
|
|
74665
74725
|
protocol?: pulumi.Input<enums.route53resolver.ResolverRuleTargetAddressProtocol>;
|
|
74726
|
+
/**
|
|
74727
|
+
* The SNI of the target name servers for DoH/DoH-FIPS outbound endpoints
|
|
74728
|
+
*/
|
|
74729
|
+
serverNameIndication?: pulumi.Input<string>;
|
|
74666
74730
|
}
|
|
74667
74731
|
}
|
|
74668
74732
|
export declare namespace rum {
|
|
@@ -75159,14 +75223,6 @@ export declare namespace s3 {
|
|
|
75159
75223
|
* A lifecycle rule for individual objects in an Amazon S3 bucket.
|
|
75160
75224
|
*/
|
|
75161
75225
|
rules: pulumi.Input<pulumi.Input<inputs.s3.BucketRuleArgs>[]>;
|
|
75162
|
-
/**
|
|
75163
|
-
* Indicates which default minimum object size behavior is applied to the lifecycle configuration.
|
|
75164
|
-
*
|
|
75165
|
-
* - `all_storage_classes_128K` - Objects smaller than 128 KB will not transition to any storage class by default.
|
|
75166
|
-
* - `varies_by_storage_class` - Objects smaller than 128 KB will transition to Glacier Flexible Retrieval or Glacier Deep Archive storage classes. By default, all other storage classes will prevent transitions smaller than 128 KB.
|
|
75167
|
-
*
|
|
75168
|
-
* To customize the minimum object size for any transition you can add a filter that specifies a custom `ObjectSizeGreaterThan` or `ObjectSizeLessThan` in the body of your transition rule. Custom filters always take precedence over the default transition behavior.
|
|
75169
|
-
*/
|
|
75170
75226
|
transitionDefaultMinimumObjectSize?: pulumi.Input<enums.s3.BucketLifecycleConfigurationTransitionDefaultMinimumObjectSize>;
|
|
75171
75227
|
}
|
|
75172
75228
|
/**
|
|
@@ -75897,7 +75953,7 @@ export declare namespace s3 {
|
|
|
75897
75953
|
*/
|
|
75898
75954
|
advancedDataProtectionMetrics?: pulumi.Input<inputs.s3.StorageLensAdvancedDataProtectionMetricsArgs>;
|
|
75899
75955
|
/**
|
|
75900
|
-
* This property contains the details of the account-level bucket-level configurations for Amazon S3 Storage Lens.
|
|
75956
|
+
* This property contains the details of the account-level bucket-level configurations for Amazon S3 Storage Lens. To enable bucket-level configurations, make sure to also set the same metrics at the account level.
|
|
75901
75957
|
*/
|
|
75902
75958
|
bucketLevel: pulumi.Input<inputs.s3.StorageLensBucketLevelArgs>;
|
|
75903
75959
|
/**
|
|
@@ -80870,7 +80926,7 @@ export declare namespace securityhub {
|
|
|
80870
80926
|
label?: pulumi.Input<enums.securityhub.AutomationRuleSeverityUpdateLabel>;
|
|
80871
80927
|
/**
|
|
80872
80928
|
* The normalized severity for the finding. This attribute is to be deprecated in favor of ``Label``.
|
|
80873
|
-
* If you provide ``Normalized`` and
|
|
80929
|
+
* If you provide ``Normalized`` and don't provide ``Label``, ``Label`` is set automatically as follows.
|
|
80874
80930
|
* + 0 - ``INFORMATIONAL``
|
|
80875
80931
|
* + 1–39 - ``LOW``
|
|
80876
80932
|
* + 40–69 - ``MEDIUM``
|
|
@@ -80931,12 +80987,12 @@ export declare namespace securityhub {
|
|
|
80931
80987
|
*
|
|
80932
80988
|
* + ``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.
|
|
80933
80989
|
* + ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
|
|
80934
|
-
* + ``SUPPRESSED`` - Indicates that you reviewed the finding and
|
|
80990
|
+
* + ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated.
|
|
80935
80991
|
*/
|
|
80936
80992
|
status: pulumi.Input<enums.securityhub.AutomationRuleWorkflowUpdateStatus>;
|
|
80937
80993
|
}
|
|
80938
80994
|
/**
|
|
80939
|
-
* One or more actions
|
|
80995
|
+
* One or more actions that ASHlong takes when a finding matches the defined criteria of a rule.
|
|
80940
80996
|
*/
|
|
80941
80997
|
interface AutomationRulesActionArgs {
|
|
80942
80998
|
/**
|
|
@@ -80944,7 +81000,7 @@ export declare namespace securityhub {
|
|
|
80944
81000
|
*/
|
|
80945
81001
|
findingFieldsUpdate: pulumi.Input<inputs.securityhub.AutomationRulesFindingFieldsUpdateArgs>;
|
|
80946
81002
|
/**
|
|
80947
|
-
* Specifies
|
|
81003
|
+
* Specifies the type of action that Security Hub takes when a finding matches the defined criteria of a rule.
|
|
80948
81004
|
*/
|
|
80949
81005
|
type: pulumi.Input<enums.securityhub.AutomationRulesActionType>;
|
|
80950
81006
|
}
|