pulumi-aws-native 1.38.0a1761286050__py3-none-any.whl → 1.38.0a1761329030__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +14 -0
- pulumi_aws_native/_enums.py +4 -0
- pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
- pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
- pulumi_aws_native/aps/__init__.py +2 -0
- pulumi_aws_native/aps/_inputs.py +232 -0
- pulumi_aws_native/aps/anomaly_detector.py +318 -0
- pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
- pulumi_aws_native/aps/outputs.py +193 -0
- pulumi_aws_native/cloudfront/_inputs.py +14 -1
- pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
- pulumi_aws_native/cloudfront/outputs.py +11 -1
- pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
- pulumi_aws_native/connect/_enums.py +68 -0
- pulumi_aws_native/connect/_inputs.py +581 -1
- pulumi_aws_native/connect/email_address.py +31 -0
- pulumi_aws_native/connect/get_email_address.py +16 -1
- pulumi_aws_native/connect/outputs.py +473 -3
- pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +99 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +102 -0
- pulumi_aws_native/ec2/capacity_reservation.py +6 -6
- pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
- pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
- pulumi_aws_native/ec2/nat_gateway.py +11 -0
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository.py +3 -2
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository.py +12 -8
- pulumi_aws_native/ecs/_enums.py +1 -0
- pulumi_aws_native/ecs/service.py +4 -0
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +201 -22
- pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
- pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +179 -16
- pulumi_aws_native/events/__init__.py +2 -0
- pulumi_aws_native/events/_inputs.py +78 -0
- pulumi_aws_native/events/event_bus_policy.py +275 -0
- pulumi_aws_native/events/get_event_bus_policy.py +85 -0
- pulumi_aws_native/events/outputs.py +48 -0
- pulumi_aws_native/gameliftstreams/application.py +4 -4
- pulumi_aws_native/imagebuilder/_inputs.py +58 -0
- pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
- pulumi_aws_native/imagebuilder/outputs.py +55 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/mediapackagev2/_enums.py +15 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +96 -0
- pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
- pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
- pulumi_aws_native/mediapackagev2/outputs.py +84 -0
- pulumi_aws_native/neptune/db_instance.py +29 -0
- pulumi_aws_native/neptune/get_db_instance.py +15 -1
- pulumi_aws_native/observabilityadmin/_enums.py +9 -0
- pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
- pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
- pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
- pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
- pulumi_aws_native/observabilityadmin/outputs.py +150 -0
- pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
- pulumi_aws_native/organizations/_enums.py +13 -0
- pulumi_aws_native/organizations/account.py +10 -0
- pulumi_aws_native/organizations/get_account.py +15 -1
- pulumi_aws_native/osis/_inputs.py +24 -0
- pulumi_aws_native/osis/get_pipeline.py +26 -1
- pulumi_aws_native/osis/outputs.py +13 -0
- pulumi_aws_native/osis/pipeline.py +50 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +1 -1
- pulumi_aws_native/quicksight/_inputs.py +3 -3
- pulumi_aws_native/quicksight/outputs.py +2 -2
- pulumi_aws_native/rds/db_cluster.py +24 -40
- pulumi_aws_native/route53/_inputs.py +21 -3
- pulumi_aws_native/route53/outputs.py +14 -2
- pulumi_aws_native/rtbfabric/__init__.py +15 -0
- pulumi_aws_native/rtbfabric/_enums.py +45 -0
- pulumi_aws_native/rtbfabric/_inputs.py +60 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +202 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +225 -0
- pulumi_aws_native/rtbfabric/outputs.py +57 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +263 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +351 -0
- pulumi_aws_native/s3/access_grants_location.py +15 -13
- pulumi_aws_native/sagemaker/_enums.py +10 -0
- pulumi_aws_native/sagemaker/_inputs.py +64 -0
- pulumi_aws_native/sagemaker/cluster.py +21 -0
- pulumi_aws_native/sagemaker/get_cluster.py +15 -4
- pulumi_aws_native/sagemaker/outputs.py +56 -0
- pulumi_aws_native/ssm/_inputs.py +15 -3
- pulumi_aws_native/ssm/outputs.py +10 -2
- pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
- pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
- pulumi_aws_native/synthetics/_inputs.py +52 -12
- pulumi_aws_native/synthetics/outputs.py +35 -8
- pulumi_aws_native/transfer/_inputs.py +9 -3
- pulumi_aws_native/transfer/outputs.py +6 -2
- pulumi_aws_native/wisdom/_enums.py +4 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761329030.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761329030.dist-info}/RECORD +104 -92
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761329030.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761329030.dist-info}/top_level.txt +0 -0
|
@@ -7,6 +7,7 @@ import pulumi
|
|
|
7
7
|
from enum import Enum
|
|
8
8
|
|
|
9
9
|
__all__ = [
|
|
10
|
+
'CampaignAgentAction',
|
|
10
11
|
'CampaignCommunicationLimitTimeUnit',
|
|
11
12
|
'CampaignDayOfWeek',
|
|
12
13
|
'CampaignInstanceLimitsHandling',
|
|
@@ -14,6 +15,14 @@ __all__ = [
|
|
|
14
15
|
]
|
|
15
16
|
|
|
16
17
|
|
|
18
|
+
@pulumi.type_token("aws-native:connectcampaignsv2:CampaignAgentAction")
|
|
19
|
+
class CampaignAgentAction(_builtins.str, Enum):
|
|
20
|
+
"""
|
|
21
|
+
Actions that can performed on a contact by an agent
|
|
22
|
+
"""
|
|
23
|
+
DISCARD = "DISCARD"
|
|
24
|
+
|
|
25
|
+
|
|
17
26
|
@pulumi.type_token("aws-native:connectcampaignsv2:CampaignCommunicationLimitTimeUnit")
|
|
18
27
|
class CampaignCommunicationLimitTimeUnit(_builtins.str, Enum):
|
|
19
28
|
"""
|
|
@@ -46,6 +46,8 @@ __all__ = [
|
|
|
46
46
|
'CampaignOpenHoursArgsDict',
|
|
47
47
|
'CampaignPredictiveConfigArgs',
|
|
48
48
|
'CampaignPredictiveConfigArgsDict',
|
|
49
|
+
'CampaignPreviewConfigArgs',
|
|
50
|
+
'CampaignPreviewConfigArgsDict',
|
|
49
51
|
'CampaignProgressiveConfigArgs',
|
|
50
52
|
'CampaignProgressiveConfigArgsDict',
|
|
51
53
|
'CampaignRestrictedPeriodsArgs',
|
|
@@ -72,6 +74,8 @@ __all__ = [
|
|
|
72
74
|
'CampaignTimeRangeArgsDict',
|
|
73
75
|
'CampaignTimeWindowArgs',
|
|
74
76
|
'CampaignTimeWindowArgsDict',
|
|
77
|
+
'CampaignTimeoutConfigArgs',
|
|
78
|
+
'CampaignTimeoutConfigArgsDict',
|
|
75
79
|
]
|
|
76
80
|
|
|
77
81
|
MYPY = False
|
|
@@ -852,6 +856,59 @@ class CampaignPredictiveConfigArgs:
|
|
|
852
856
|
pulumi.set(self, "bandwidth_allocation", value)
|
|
853
857
|
|
|
854
858
|
|
|
859
|
+
if not MYPY:
|
|
860
|
+
class CampaignPreviewConfigArgsDict(TypedDict):
|
|
861
|
+
"""
|
|
862
|
+
Preview config
|
|
863
|
+
"""
|
|
864
|
+
bandwidth_allocation: pulumi.Input[_builtins.float]
|
|
865
|
+
timeout_config: pulumi.Input['CampaignTimeoutConfigArgsDict']
|
|
866
|
+
agent_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['CampaignAgentAction']]]]
|
|
867
|
+
elif False:
|
|
868
|
+
CampaignPreviewConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
869
|
+
|
|
870
|
+
@pulumi.input_type
|
|
871
|
+
class CampaignPreviewConfigArgs:
|
|
872
|
+
def __init__(__self__, *,
|
|
873
|
+
bandwidth_allocation: pulumi.Input[_builtins.float],
|
|
874
|
+
timeout_config: pulumi.Input['CampaignTimeoutConfigArgs'],
|
|
875
|
+
agent_actions: Optional[pulumi.Input[Sequence[pulumi.Input['CampaignAgentAction']]]] = None):
|
|
876
|
+
"""
|
|
877
|
+
Preview config
|
|
878
|
+
"""
|
|
879
|
+
pulumi.set(__self__, "bandwidth_allocation", bandwidth_allocation)
|
|
880
|
+
pulumi.set(__self__, "timeout_config", timeout_config)
|
|
881
|
+
if agent_actions is not None:
|
|
882
|
+
pulumi.set(__self__, "agent_actions", agent_actions)
|
|
883
|
+
|
|
884
|
+
@_builtins.property
|
|
885
|
+
@pulumi.getter(name="bandwidthAllocation")
|
|
886
|
+
def bandwidth_allocation(self) -> pulumi.Input[_builtins.float]:
|
|
887
|
+
return pulumi.get(self, "bandwidth_allocation")
|
|
888
|
+
|
|
889
|
+
@bandwidth_allocation.setter
|
|
890
|
+
def bandwidth_allocation(self, value: pulumi.Input[_builtins.float]):
|
|
891
|
+
pulumi.set(self, "bandwidth_allocation", value)
|
|
892
|
+
|
|
893
|
+
@_builtins.property
|
|
894
|
+
@pulumi.getter(name="timeoutConfig")
|
|
895
|
+
def timeout_config(self) -> pulumi.Input['CampaignTimeoutConfigArgs']:
|
|
896
|
+
return pulumi.get(self, "timeout_config")
|
|
897
|
+
|
|
898
|
+
@timeout_config.setter
|
|
899
|
+
def timeout_config(self, value: pulumi.Input['CampaignTimeoutConfigArgs']):
|
|
900
|
+
pulumi.set(self, "timeout_config", value)
|
|
901
|
+
|
|
902
|
+
@_builtins.property
|
|
903
|
+
@pulumi.getter(name="agentActions")
|
|
904
|
+
def agent_actions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CampaignAgentAction']]]]:
|
|
905
|
+
return pulumi.get(self, "agent_actions")
|
|
906
|
+
|
|
907
|
+
@agent_actions.setter
|
|
908
|
+
def agent_actions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CampaignAgentAction']]]]):
|
|
909
|
+
pulumi.set(self, "agent_actions", value)
|
|
910
|
+
|
|
911
|
+
|
|
855
912
|
if not MYPY:
|
|
856
913
|
class CampaignProgressiveConfigArgsDict(TypedDict):
|
|
857
914
|
"""
|
|
@@ -1459,6 +1516,7 @@ if not MYPY:
|
|
|
1459
1516
|
"""
|
|
1460
1517
|
Contains predictive outbound mode configuration.
|
|
1461
1518
|
"""
|
|
1519
|
+
preview_config: NotRequired[pulumi.Input['CampaignPreviewConfigArgsDict']]
|
|
1462
1520
|
progressive_config: NotRequired[pulumi.Input['CampaignProgressiveConfigArgsDict']]
|
|
1463
1521
|
"""
|
|
1464
1522
|
Contains progressive telephony outbound mode configuration.
|
|
@@ -1471,6 +1529,7 @@ class CampaignTelephonyOutboundModeArgs:
|
|
|
1471
1529
|
def __init__(__self__, *,
|
|
1472
1530
|
agentless_config: Optional[pulumi.Input['CampaignAgentlessConfigArgs']] = None,
|
|
1473
1531
|
predictive_config: Optional[pulumi.Input['CampaignPredictiveConfigArgs']] = None,
|
|
1532
|
+
preview_config: Optional[pulumi.Input['CampaignPreviewConfigArgs']] = None,
|
|
1474
1533
|
progressive_config: Optional[pulumi.Input['CampaignProgressiveConfigArgs']] = None):
|
|
1475
1534
|
"""
|
|
1476
1535
|
Telephony Outbound Mode
|
|
@@ -1482,6 +1541,8 @@ class CampaignTelephonyOutboundModeArgs:
|
|
|
1482
1541
|
pulumi.set(__self__, "agentless_config", agentless_config)
|
|
1483
1542
|
if predictive_config is not None:
|
|
1484
1543
|
pulumi.set(__self__, "predictive_config", predictive_config)
|
|
1544
|
+
if preview_config is not None:
|
|
1545
|
+
pulumi.set(__self__, "preview_config", preview_config)
|
|
1485
1546
|
if progressive_config is not None:
|
|
1486
1547
|
pulumi.set(__self__, "progressive_config", progressive_config)
|
|
1487
1548
|
|
|
@@ -1509,6 +1570,15 @@ class CampaignTelephonyOutboundModeArgs:
|
|
|
1509
1570
|
def predictive_config(self, value: Optional[pulumi.Input['CampaignPredictiveConfigArgs']]):
|
|
1510
1571
|
pulumi.set(self, "predictive_config", value)
|
|
1511
1572
|
|
|
1573
|
+
@_builtins.property
|
|
1574
|
+
@pulumi.getter(name="previewConfig")
|
|
1575
|
+
def preview_config(self) -> Optional[pulumi.Input['CampaignPreviewConfigArgs']]:
|
|
1576
|
+
return pulumi.get(self, "preview_config")
|
|
1577
|
+
|
|
1578
|
+
@preview_config.setter
|
|
1579
|
+
def preview_config(self, value: Optional[pulumi.Input['CampaignPreviewConfigArgs']]):
|
|
1580
|
+
pulumi.set(self, "preview_config", value)
|
|
1581
|
+
|
|
1512
1582
|
@_builtins.property
|
|
1513
1583
|
@pulumi.getter(name="progressiveConfig")
|
|
1514
1584
|
def progressive_config(self) -> Optional[pulumi.Input['CampaignProgressiveConfigArgs']]:
|
|
@@ -1617,3 +1687,32 @@ class CampaignTimeWindowArgs:
|
|
|
1617
1687
|
pulumi.set(self, "restricted_periods", value)
|
|
1618
1688
|
|
|
1619
1689
|
|
|
1690
|
+
if not MYPY:
|
|
1691
|
+
class CampaignTimeoutConfigArgsDict(TypedDict):
|
|
1692
|
+
"""
|
|
1693
|
+
Timeout Config for preview contacts
|
|
1694
|
+
"""
|
|
1695
|
+
duration_in_seconds: NotRequired[pulumi.Input[_builtins.int]]
|
|
1696
|
+
elif False:
|
|
1697
|
+
CampaignTimeoutConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
1698
|
+
|
|
1699
|
+
@pulumi.input_type
|
|
1700
|
+
class CampaignTimeoutConfigArgs:
|
|
1701
|
+
def __init__(__self__, *,
|
|
1702
|
+
duration_in_seconds: Optional[pulumi.Input[_builtins.int]] = None):
|
|
1703
|
+
"""
|
|
1704
|
+
Timeout Config for preview contacts
|
|
1705
|
+
"""
|
|
1706
|
+
if duration_in_seconds is not None:
|
|
1707
|
+
pulumi.set(__self__, "duration_in_seconds", duration_in_seconds)
|
|
1708
|
+
|
|
1709
|
+
@_builtins.property
|
|
1710
|
+
@pulumi.getter(name="durationInSeconds")
|
|
1711
|
+
def duration_in_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1712
|
+
return pulumi.get(self, "duration_in_seconds")
|
|
1713
|
+
|
|
1714
|
+
@duration_in_seconds.setter
|
|
1715
|
+
def duration_in_seconds(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1716
|
+
pulumi.set(self, "duration_in_seconds", value)
|
|
1717
|
+
|
|
1718
|
+
|
|
@@ -32,6 +32,7 @@ __all__ = [
|
|
|
32
32
|
'CampaignLocalTimeZoneConfig',
|
|
33
33
|
'CampaignOpenHours',
|
|
34
34
|
'CampaignPredictiveConfig',
|
|
35
|
+
'CampaignPreviewConfig',
|
|
35
36
|
'CampaignProgressiveConfig',
|
|
36
37
|
'CampaignRestrictedPeriod',
|
|
37
38
|
'CampaignRestrictedPeriods',
|
|
@@ -45,6 +46,7 @@ __all__ = [
|
|
|
45
46
|
'CampaignTelephonyOutboundMode',
|
|
46
47
|
'CampaignTimeRange',
|
|
47
48
|
'CampaignTimeWindow',
|
|
49
|
+
'CampaignTimeoutConfig',
|
|
48
50
|
]
|
|
49
51
|
|
|
50
52
|
@pulumi.output_type
|
|
@@ -746,6 +748,60 @@ class CampaignPredictiveConfig(dict):
|
|
|
746
748
|
return pulumi.get(self, "bandwidth_allocation")
|
|
747
749
|
|
|
748
750
|
|
|
751
|
+
@pulumi.output_type
|
|
752
|
+
class CampaignPreviewConfig(dict):
|
|
753
|
+
"""
|
|
754
|
+
Preview config
|
|
755
|
+
"""
|
|
756
|
+
@staticmethod
|
|
757
|
+
def __key_warning(key: str):
|
|
758
|
+
suggest = None
|
|
759
|
+
if key == "bandwidthAllocation":
|
|
760
|
+
suggest = "bandwidth_allocation"
|
|
761
|
+
elif key == "timeoutConfig":
|
|
762
|
+
suggest = "timeout_config"
|
|
763
|
+
elif key == "agentActions":
|
|
764
|
+
suggest = "agent_actions"
|
|
765
|
+
|
|
766
|
+
if suggest:
|
|
767
|
+
pulumi.log.warn(f"Key '{key}' not found in CampaignPreviewConfig. Access the value via the '{suggest}' property getter instead.")
|
|
768
|
+
|
|
769
|
+
def __getitem__(self, key: str) -> Any:
|
|
770
|
+
CampaignPreviewConfig.__key_warning(key)
|
|
771
|
+
return super().__getitem__(key)
|
|
772
|
+
|
|
773
|
+
def get(self, key: str, default = None) -> Any:
|
|
774
|
+
CampaignPreviewConfig.__key_warning(key)
|
|
775
|
+
return super().get(key, default)
|
|
776
|
+
|
|
777
|
+
def __init__(__self__, *,
|
|
778
|
+
bandwidth_allocation: _builtins.float,
|
|
779
|
+
timeout_config: 'outputs.CampaignTimeoutConfig',
|
|
780
|
+
agent_actions: Optional[Sequence['CampaignAgentAction']] = None):
|
|
781
|
+
"""
|
|
782
|
+
Preview config
|
|
783
|
+
"""
|
|
784
|
+
pulumi.set(__self__, "bandwidth_allocation", bandwidth_allocation)
|
|
785
|
+
pulumi.set(__self__, "timeout_config", timeout_config)
|
|
786
|
+
if agent_actions is not None:
|
|
787
|
+
pulumi.set(__self__, "agent_actions", agent_actions)
|
|
788
|
+
|
|
789
|
+
@_builtins.property
|
|
790
|
+
@pulumi.getter(name="bandwidthAllocation")
|
|
791
|
+
def bandwidth_allocation(self) -> _builtins.float:
|
|
792
|
+
return pulumi.get(self, "bandwidth_allocation")
|
|
793
|
+
|
|
794
|
+
@_builtins.property
|
|
795
|
+
@pulumi.getter(name="timeoutConfig")
|
|
796
|
+
def timeout_config(self) -> 'outputs.CampaignTimeoutConfig':
|
|
797
|
+
return pulumi.get(self, "timeout_config")
|
|
798
|
+
|
|
799
|
+
@_builtins.property
|
|
800
|
+
@pulumi.getter(name="agentActions")
|
|
801
|
+
def agent_actions(self) -> Optional[Sequence['CampaignAgentAction']]:
|
|
802
|
+
return pulumi.get(self, "agent_actions")
|
|
803
|
+
|
|
804
|
+
|
|
749
805
|
@pulumi.output_type
|
|
750
806
|
class CampaignProgressiveConfig(dict):
|
|
751
807
|
"""
|
|
@@ -1314,6 +1370,8 @@ class CampaignTelephonyOutboundMode(dict):
|
|
|
1314
1370
|
suggest = "agentless_config"
|
|
1315
1371
|
elif key == "predictiveConfig":
|
|
1316
1372
|
suggest = "predictive_config"
|
|
1373
|
+
elif key == "previewConfig":
|
|
1374
|
+
suggest = "preview_config"
|
|
1317
1375
|
elif key == "progressiveConfig":
|
|
1318
1376
|
suggest = "progressive_config"
|
|
1319
1377
|
|
|
@@ -1331,6 +1389,7 @@ class CampaignTelephonyOutboundMode(dict):
|
|
|
1331
1389
|
def __init__(__self__, *,
|
|
1332
1390
|
agentless_config: Optional['outputs.CampaignAgentlessConfig'] = None,
|
|
1333
1391
|
predictive_config: Optional['outputs.CampaignPredictiveConfig'] = None,
|
|
1392
|
+
preview_config: Optional['outputs.CampaignPreviewConfig'] = None,
|
|
1334
1393
|
progressive_config: Optional['outputs.CampaignProgressiveConfig'] = None):
|
|
1335
1394
|
"""
|
|
1336
1395
|
Telephony Outbound Mode
|
|
@@ -1342,6 +1401,8 @@ class CampaignTelephonyOutboundMode(dict):
|
|
|
1342
1401
|
pulumi.set(__self__, "agentless_config", agentless_config)
|
|
1343
1402
|
if predictive_config is not None:
|
|
1344
1403
|
pulumi.set(__self__, "predictive_config", predictive_config)
|
|
1404
|
+
if preview_config is not None:
|
|
1405
|
+
pulumi.set(__self__, "preview_config", preview_config)
|
|
1345
1406
|
if progressive_config is not None:
|
|
1346
1407
|
pulumi.set(__self__, "progressive_config", progressive_config)
|
|
1347
1408
|
|
|
@@ -1361,6 +1422,11 @@ class CampaignTelephonyOutboundMode(dict):
|
|
|
1361
1422
|
"""
|
|
1362
1423
|
return pulumi.get(self, "predictive_config")
|
|
1363
1424
|
|
|
1425
|
+
@_builtins.property
|
|
1426
|
+
@pulumi.getter(name="previewConfig")
|
|
1427
|
+
def preview_config(self) -> Optional['outputs.CampaignPreviewConfig']:
|
|
1428
|
+
return pulumi.get(self, "preview_config")
|
|
1429
|
+
|
|
1364
1430
|
@_builtins.property
|
|
1365
1431
|
@pulumi.getter(name="progressiveConfig")
|
|
1366
1432
|
def progressive_config(self) -> Optional['outputs.CampaignProgressiveConfig']:
|
|
@@ -1467,3 +1533,39 @@ class CampaignTimeWindow(dict):
|
|
|
1467
1533
|
return pulumi.get(self, "restricted_periods")
|
|
1468
1534
|
|
|
1469
1535
|
|
|
1536
|
+
@pulumi.output_type
|
|
1537
|
+
class CampaignTimeoutConfig(dict):
|
|
1538
|
+
"""
|
|
1539
|
+
Timeout Config for preview contacts
|
|
1540
|
+
"""
|
|
1541
|
+
@staticmethod
|
|
1542
|
+
def __key_warning(key: str):
|
|
1543
|
+
suggest = None
|
|
1544
|
+
if key == "durationInSeconds":
|
|
1545
|
+
suggest = "duration_in_seconds"
|
|
1546
|
+
|
|
1547
|
+
if suggest:
|
|
1548
|
+
pulumi.log.warn(f"Key '{key}' not found in CampaignTimeoutConfig. Access the value via the '{suggest}' property getter instead.")
|
|
1549
|
+
|
|
1550
|
+
def __getitem__(self, key: str) -> Any:
|
|
1551
|
+
CampaignTimeoutConfig.__key_warning(key)
|
|
1552
|
+
return super().__getitem__(key)
|
|
1553
|
+
|
|
1554
|
+
def get(self, key: str, default = None) -> Any:
|
|
1555
|
+
CampaignTimeoutConfig.__key_warning(key)
|
|
1556
|
+
return super().get(key, default)
|
|
1557
|
+
|
|
1558
|
+
def __init__(__self__, *,
|
|
1559
|
+
duration_in_seconds: Optional[_builtins.int] = None):
|
|
1560
|
+
"""
|
|
1561
|
+
Timeout Config for preview contacts
|
|
1562
|
+
"""
|
|
1563
|
+
if duration_in_seconds is not None:
|
|
1564
|
+
pulumi.set(__self__, "duration_in_seconds", duration_in_seconds)
|
|
1565
|
+
|
|
1566
|
+
@_builtins.property
|
|
1567
|
+
@pulumi.getter(name="durationInSeconds")
|
|
1568
|
+
def duration_in_seconds(self) -> Optional[_builtins.int]:
|
|
1569
|
+
return pulumi.get(self, "duration_in_seconds")
|
|
1570
|
+
|
|
1571
|
+
|
|
@@ -50,7 +50,7 @@ class CapacityReservationArgs:
|
|
|
50
50
|
|
|
51
51
|
For more information, see [Instance types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html) in the *Amazon EC2 User Guide* .
|
|
52
52
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone in which to create the Capacity Reservation.
|
|
53
|
-
:param pulumi.Input[_builtins.str] availability_zone_id: The Availability Zone
|
|
53
|
+
:param pulumi.Input[_builtins.str] availability_zone_id: The ID of the Availability Zone in which the capacity is reserved.
|
|
54
54
|
:param pulumi.Input[_builtins.bool] ebs_optimized: Indicates whether the Capacity Reservation supports EBS-optimized instances. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS- optimized instance.
|
|
55
55
|
:param pulumi.Input[_builtins.str] end_date: The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation's state changes to `expired` when it reaches its end date and time.
|
|
56
56
|
|
|
@@ -175,7 +175,7 @@ class CapacityReservationArgs:
|
|
|
175
175
|
@pulumi.getter(name="availabilityZoneId")
|
|
176
176
|
def availability_zone_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
177
177
|
"""
|
|
178
|
-
The Availability Zone
|
|
178
|
+
The ID of the Availability Zone in which the capacity is reserved.
|
|
179
179
|
"""
|
|
180
180
|
return pulumi.get(self, "availability_zone_id")
|
|
181
181
|
|
|
@@ -357,7 +357,7 @@ class CapacityReservation(pulumi.CustomResource):
|
|
|
357
357
|
:param str resource_name: The name of the resource.
|
|
358
358
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
359
359
|
:param pulumi.Input[_builtins.str] availability_zone: The Availability Zone in which to create the Capacity Reservation.
|
|
360
|
-
:param pulumi.Input[_builtins.str] availability_zone_id: The Availability Zone
|
|
360
|
+
:param pulumi.Input[_builtins.str] availability_zone_id: The ID of the Availability Zone in which the capacity is reserved.
|
|
361
361
|
:param pulumi.Input[_builtins.bool] ebs_optimized: Indicates whether the Capacity Reservation supports EBS-optimized instances. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS- optimized instance.
|
|
362
362
|
:param pulumi.Input[_builtins.str] end_date: The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation's state changes to `expired` when it reaches its end date and time.
|
|
363
363
|
|
|
@@ -553,7 +553,7 @@ class CapacityReservation(pulumi.CustomResource):
|
|
|
553
553
|
@pulumi.getter(name="availabilityZoneId")
|
|
554
554
|
def availability_zone_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
555
555
|
"""
|
|
556
|
-
The Availability Zone
|
|
556
|
+
The ID of the Availability Zone in which the capacity is reserved.
|
|
557
557
|
"""
|
|
558
558
|
return pulumi.get(self, "availability_zone_id")
|
|
559
559
|
|
|
@@ -603,7 +603,7 @@ class CapacityReservation(pulumi.CustomResource):
|
|
|
603
603
|
@pulumi.getter(name="createDate")
|
|
604
604
|
def create_date(self) -> pulumi.Output[_builtins.str]:
|
|
605
605
|
"""
|
|
606
|
-
The date and time
|
|
606
|
+
The date and time the Capacity Reservation was created.
|
|
607
607
|
"""
|
|
608
608
|
return pulumi.get(self, "create_date")
|
|
609
609
|
|
|
@@ -743,7 +743,7 @@ class CapacityReservation(pulumi.CustomResource):
|
|
|
743
743
|
@pulumi.getter(name="startDate")
|
|
744
744
|
def start_date(self) -> pulumi.Output[_builtins.str]:
|
|
745
745
|
"""
|
|
746
|
-
The date and time
|
|
746
|
+
The date and time the Capacity Reservation was started.
|
|
747
747
|
"""
|
|
748
748
|
return pulumi.get(self, "start_date")
|
|
749
749
|
|
|
@@ -115,7 +115,7 @@ class GetCapacityReservationResult:
|
|
|
115
115
|
@pulumi.getter(name="createDate")
|
|
116
116
|
def create_date(self) -> Optional[_builtins.str]:
|
|
117
117
|
"""
|
|
118
|
-
The date and time
|
|
118
|
+
The date and time the Capacity Reservation was created.
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "create_date")
|
|
121
121
|
|
|
@@ -207,7 +207,7 @@ class GetCapacityReservationResult:
|
|
|
207
207
|
@pulumi.getter(name="startDate")
|
|
208
208
|
def start_date(self) -> Optional[_builtins.str]:
|
|
209
209
|
"""
|
|
210
|
-
The date and time
|
|
210
|
+
The date and time the Capacity Reservation was started.
|
|
211
211
|
"""
|
|
212
212
|
return pulumi.get(self, "start_date")
|
|
213
213
|
|
|
@@ -44,6 +44,7 @@ class NatGatewayArgs:
|
|
|
44
44
|
``SecondaryPrivateIpAddressCount`` and ``SecondaryPrivateIpAddresses`` cannot be set at the same time.
|
|
45
45
|
:param pulumi.Input[_builtins.str] subnet_id: The ID of the subnet in which the NAT gateway is located.
|
|
46
46
|
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: The tags for the NAT gateway.
|
|
47
|
+
:param pulumi.Input[_builtins.str] vpc_id: The ID of the VPC in which the NAT gateway is located.
|
|
47
48
|
"""
|
|
48
49
|
if allocation_id is not None:
|
|
49
50
|
pulumi.set(__self__, "allocation_id", allocation_id)
|
|
@@ -179,6 +180,9 @@ class NatGatewayArgs:
|
|
|
179
180
|
@_builtins.property
|
|
180
181
|
@pulumi.getter(name="vpcId")
|
|
181
182
|
def vpc_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
183
|
+
"""
|
|
184
|
+
The ID of the VPC in which the NAT gateway is located.
|
|
185
|
+
"""
|
|
182
186
|
return pulumi.get(self, "vpc_id")
|
|
183
187
|
|
|
184
188
|
@vpc_id.setter
|
|
@@ -222,6 +226,7 @@ class NatGateway(pulumi.CustomResource):
|
|
|
222
226
|
``SecondaryPrivateIpAddressCount`` and ``SecondaryPrivateIpAddresses`` cannot be set at the same time.
|
|
223
227
|
:param pulumi.Input[_builtins.str] subnet_id: The ID of the subnet in which the NAT gateway is located.
|
|
224
228
|
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: The tags for the NAT gateway.
|
|
229
|
+
:param pulumi.Input[_builtins.str] vpc_id: The ID of the VPC in which the NAT gateway is located.
|
|
225
230
|
"""
|
|
226
231
|
...
|
|
227
232
|
@overload
|
|
@@ -338,6 +343,9 @@ class NatGateway(pulumi.CustomResource):
|
|
|
338
343
|
@_builtins.property
|
|
339
344
|
@pulumi.getter(name="eniId")
|
|
340
345
|
def eni_id(self) -> pulumi.Output[_builtins.str]:
|
|
346
|
+
"""
|
|
347
|
+
The ID of the network interface.
|
|
348
|
+
"""
|
|
341
349
|
return pulumi.get(self, "eni_id")
|
|
342
350
|
|
|
343
351
|
@_builtins.property
|
|
@@ -409,5 +417,8 @@ class NatGateway(pulumi.CustomResource):
|
|
|
409
417
|
@_builtins.property
|
|
410
418
|
@pulumi.getter(name="vpcId")
|
|
411
419
|
def vpc_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
420
|
+
"""
|
|
421
|
+
The ID of the VPC in which the NAT gateway is located.
|
|
422
|
+
"""
|
|
412
423
|
return pulumi.get(self, "vpc_id")
|
|
413
424
|
|
pulumi_aws_native/ecr/_inputs.py
CHANGED
|
@@ -639,7 +639,7 @@ class RepositoryImageScanningConfigurationArgs:
|
|
|
639
639
|
if not MYPY:
|
|
640
640
|
class RepositoryImageTagMutabilityExclusionFilterArgsDict(TypedDict):
|
|
641
641
|
"""
|
|
642
|
-
|
|
642
|
+
A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
|
|
643
643
|
"""
|
|
644
644
|
image_tag_mutability_exclusion_filter_type: pulumi.Input['RepositoryImageTagMutabilityExclusionFilterType']
|
|
645
645
|
image_tag_mutability_exclusion_filter_value: pulumi.Input[_builtins.str]
|
|
@@ -652,7 +652,7 @@ class RepositoryImageTagMutabilityExclusionFilterArgs:
|
|
|
652
652
|
image_tag_mutability_exclusion_filter_type: pulumi.Input['RepositoryImageTagMutabilityExclusionFilterType'],
|
|
653
653
|
image_tag_mutability_exclusion_filter_value: pulumi.Input[_builtins.str]):
|
|
654
654
|
"""
|
|
655
|
-
|
|
655
|
+
A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
|
|
656
656
|
"""
|
|
657
657
|
pulumi.set(__self__, "image_tag_mutability_exclusion_filter_type", image_tag_mutability_exclusion_filter_type)
|
|
658
658
|
pulumi.set(__self__, "image_tag_mutability_exclusion_filter_value", image_tag_mutability_exclusion_filter_value)
|
|
@@ -64,7 +64,8 @@ class GetRepositoryResult:
|
|
|
64
64
|
@pulumi.getter(name="imageScanningConfiguration")
|
|
65
65
|
def image_scanning_configuration(self) -> Optional['outputs.RepositoryImageScanningConfiguration']:
|
|
66
66
|
"""
|
|
67
|
-
The
|
|
67
|
+
The ``imageScanningConfiguration`` parameter is being deprecated, in favor of specifying the image scanning configuration at the registry level. For more information, see ``PutRegistryScanningConfiguration``.
|
|
68
|
+
The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
|
|
68
69
|
"""
|
|
69
70
|
return pulumi.get(self, "image_scanning_configuration")
|
|
70
71
|
|
|
@@ -80,7 +81,7 @@ class GetRepositoryResult:
|
|
|
80
81
|
@pulumi.getter(name="imageTagMutabilityExclusionFilters")
|
|
81
82
|
def image_tag_mutability_exclusion_filters(self) -> Optional[Sequence['outputs.RepositoryImageTagMutabilityExclusionFilter']]:
|
|
82
83
|
"""
|
|
83
|
-
|
|
84
|
+
A list of filters that specify which image tags are excluded from the repository's image tag mutability setting.
|
|
84
85
|
"""
|
|
85
86
|
return pulumi.get(self, "image_tag_mutability_exclusion_filters")
|
|
86
87
|
|
pulumi_aws_native/ecr/outputs.py
CHANGED
|
@@ -565,7 +565,7 @@ class RepositoryImageScanningConfiguration(dict):
|
|
|
565
565
|
@pulumi.output_type
|
|
566
566
|
class RepositoryImageTagMutabilityExclusionFilter(dict):
|
|
567
567
|
"""
|
|
568
|
-
|
|
568
|
+
A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
|
|
569
569
|
"""
|
|
570
570
|
@staticmethod
|
|
571
571
|
def __key_warning(key: str):
|
|
@@ -590,7 +590,7 @@ class RepositoryImageTagMutabilityExclusionFilter(dict):
|
|
|
590
590
|
image_tag_mutability_exclusion_filter_type: 'RepositoryImageTagMutabilityExclusionFilterType',
|
|
591
591
|
image_tag_mutability_exclusion_filter_value: _builtins.str):
|
|
592
592
|
"""
|
|
593
|
-
|
|
593
|
+
A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
|
|
594
594
|
"""
|
|
595
595
|
pulumi.set(__self__, "image_tag_mutability_exclusion_filter_type", image_tag_mutability_exclusion_filter_type)
|
|
596
596
|
pulumi.set(__self__, "image_tag_mutability_exclusion_filter_value", image_tag_mutability_exclusion_filter_value)
|
|
@@ -37,9 +37,10 @@ class RepositoryArgs:
|
|
|
37
37
|
The set of arguments for constructing a Repository resource.
|
|
38
38
|
:param pulumi.Input[_builtins.bool] empty_on_delete: If true, deleting the repository force deletes the contents of the repository. If false, the repository must be empty before attempting to delete it.
|
|
39
39
|
:param pulumi.Input['RepositoryEncryptionConfigurationArgs'] encryption_configuration: The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
|
40
|
-
:param pulumi.Input['RepositoryImageScanningConfigurationArgs'] image_scanning_configuration: The
|
|
40
|
+
:param pulumi.Input['RepositoryImageScanningConfigurationArgs'] image_scanning_configuration: The ``imageScanningConfiguration`` parameter is being deprecated, in favor of specifying the image scanning configuration at the registry level. For more information, see ``PutRegistryScanningConfiguration``.
|
|
41
|
+
The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
|
|
41
42
|
:param pulumi.Input['RepositoryImageTagMutability'] image_tag_mutability: The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
|
|
42
|
-
:param pulumi.Input[Sequence[pulumi.Input['RepositoryImageTagMutabilityExclusionFilterArgs']]] image_tag_mutability_exclusion_filters:
|
|
43
|
+
:param pulumi.Input[Sequence[pulumi.Input['RepositoryImageTagMutabilityExclusionFilterArgs']]] image_tag_mutability_exclusion_filters: A list of filters that specify which image tags are excluded from the repository's image tag mutability setting.
|
|
43
44
|
:param pulumi.Input['RepositoryLifecyclePolicyArgs'] lifecycle_policy: Creates or updates a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html).
|
|
44
45
|
:param pulumi.Input[_builtins.str] repository_name: The name to use for the repository. The repository name may be specified on its own (such as ``nginx-web-app``) or it can be prepended with a namespace to group the repository into a category (such as ``project-a/nginx-web-app``). If you don't specify a name, CFNlong generates a unique physical ID and uses that ID for the repository name. For more information, see [Name type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
|
|
45
46
|
The repository name must start with a letter and can only contain lowercase letters, numbers, hyphens, underscores, and forward slashes.
|
|
@@ -96,7 +97,8 @@ class RepositoryArgs:
|
|
|
96
97
|
@pulumi.getter(name="imageScanningConfiguration")
|
|
97
98
|
def image_scanning_configuration(self) -> Optional[pulumi.Input['RepositoryImageScanningConfigurationArgs']]:
|
|
98
99
|
"""
|
|
99
|
-
The
|
|
100
|
+
The ``imageScanningConfiguration`` parameter is being deprecated, in favor of specifying the image scanning configuration at the registry level. For more information, see ``PutRegistryScanningConfiguration``.
|
|
101
|
+
The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
|
|
100
102
|
"""
|
|
101
103
|
return pulumi.get(self, "image_scanning_configuration")
|
|
102
104
|
|
|
@@ -120,7 +122,7 @@ class RepositoryArgs:
|
|
|
120
122
|
@pulumi.getter(name="imageTagMutabilityExclusionFilters")
|
|
121
123
|
def image_tag_mutability_exclusion_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RepositoryImageTagMutabilityExclusionFilterArgs']]]]:
|
|
122
124
|
"""
|
|
123
|
-
|
|
125
|
+
A list of filters that specify which image tags are excluded from the repository's image tag mutability setting.
|
|
124
126
|
"""
|
|
125
127
|
return pulumi.get(self, "image_tag_mutability_exclusion_filters")
|
|
126
128
|
|
|
@@ -244,9 +246,10 @@ class Repository(pulumi.CustomResource):
|
|
|
244
246
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
245
247
|
:param pulumi.Input[_builtins.bool] empty_on_delete: If true, deleting the repository force deletes the contents of the repository. If false, the repository must be empty before attempting to delete it.
|
|
246
248
|
:param pulumi.Input[Union['RepositoryEncryptionConfigurationArgs', 'RepositoryEncryptionConfigurationArgsDict']] encryption_configuration: The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
|
247
|
-
:param pulumi.Input[Union['RepositoryImageScanningConfigurationArgs', 'RepositoryImageScanningConfigurationArgsDict']] image_scanning_configuration: The
|
|
249
|
+
:param pulumi.Input[Union['RepositoryImageScanningConfigurationArgs', 'RepositoryImageScanningConfigurationArgsDict']] image_scanning_configuration: The ``imageScanningConfiguration`` parameter is being deprecated, in favor of specifying the image scanning configuration at the registry level. For more information, see ``PutRegistryScanningConfiguration``.
|
|
250
|
+
The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
|
|
248
251
|
:param pulumi.Input['RepositoryImageTagMutability'] image_tag_mutability: The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
|
|
249
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['RepositoryImageTagMutabilityExclusionFilterArgs', 'RepositoryImageTagMutabilityExclusionFilterArgsDict']]]] image_tag_mutability_exclusion_filters:
|
|
252
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['RepositoryImageTagMutabilityExclusionFilterArgs', 'RepositoryImageTagMutabilityExclusionFilterArgsDict']]]] image_tag_mutability_exclusion_filters: A list of filters that specify which image tags are excluded from the repository's image tag mutability setting.
|
|
250
253
|
:param pulumi.Input[Union['RepositoryLifecyclePolicyArgs', 'RepositoryLifecyclePolicyArgsDict']] lifecycle_policy: Creates or updates a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html).
|
|
251
254
|
:param pulumi.Input[_builtins.str] repository_name: The name to use for the repository. The repository name may be specified on its own (such as ``nginx-web-app``) or it can be prepended with a namespace to group the repository into a category (such as ``project-a/nginx-web-app``). If you don't specify a name, CFNlong generates a unique physical ID and uses that ID for the repository name. For more information, see [Name type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
|
|
252
255
|
The repository name must start with a letter and can only contain lowercase letters, numbers, hyphens, underscores, and forward slashes.
|
|
@@ -414,7 +417,8 @@ class Repository(pulumi.CustomResource):
|
|
|
414
417
|
@pulumi.getter(name="imageScanningConfiguration")
|
|
415
418
|
def image_scanning_configuration(self) -> pulumi.Output[Optional['outputs.RepositoryImageScanningConfiguration']]:
|
|
416
419
|
"""
|
|
417
|
-
The
|
|
420
|
+
The ``imageScanningConfiguration`` parameter is being deprecated, in favor of specifying the image scanning configuration at the registry level. For more information, see ``PutRegistryScanningConfiguration``.
|
|
421
|
+
The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
|
|
418
422
|
"""
|
|
419
423
|
return pulumi.get(self, "image_scanning_configuration")
|
|
420
424
|
|
|
@@ -430,7 +434,7 @@ class Repository(pulumi.CustomResource):
|
|
|
430
434
|
@pulumi.getter(name="imageTagMutabilityExclusionFilters")
|
|
431
435
|
def image_tag_mutability_exclusion_filters(self) -> pulumi.Output[Optional[Sequence['outputs.RepositoryImageTagMutabilityExclusionFilter']]]:
|
|
432
436
|
"""
|
|
433
|
-
|
|
437
|
+
A list of filters that specify which image tags are excluded from the repository's image tag mutability setting.
|
|
434
438
|
"""
|
|
435
439
|
return pulumi.get(self, "image_tag_mutability_exclusion_filters")
|
|
436
440
|
|
pulumi_aws_native/ecs/_enums.py
CHANGED
|
@@ -299,6 +299,7 @@ class ServiceEbsTagSpecificationPropagateTags(_builtins.str, Enum):
|
|
|
299
299
|
class ServiceLaunchType(_builtins.str, Enum):
|
|
300
300
|
"""
|
|
301
301
|
The launch type on which to run your service. For more information, see [Amazon ECS Launch Types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
302
|
+
If you want to use Managed Instances, you must use the ``capacityProviderStrategy`` request parameter
|
|
302
303
|
"""
|
|
303
304
|
EC2 = "EC2"
|
|
304
305
|
FARGATE = "FARGATE"
|
pulumi_aws_native/ecs/service.py
CHANGED
|
@@ -74,6 +74,7 @@ class ServiceArgs:
|
|
|
74
74
|
:param pulumi.Input[_builtins.int] health_check_grace_period_seconds: The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you do not specify a health check grace period value, the default value of 0 is used. If you do not use any of the health checks, then ``healthCheckGracePeriodSeconds`` is unused.
|
|
75
75
|
If your service has more running tasks than desired, unhealthy tasks in the grace period might be stopped to reach the desired count.
|
|
76
76
|
:param pulumi.Input['ServiceLaunchType'] launch_type: The launch type on which to run your service. For more information, see [Amazon ECS Launch Types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
77
|
+
If you want to use Managed Instances, you must use the ``capacityProviderStrategy`` request parameter
|
|
77
78
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceLoadBalancerArgs']]] load_balancers: A list of load balancer objects to associate with the service. If you specify the ``Role`` property, ``LoadBalancers`` must be specified as well. For information about the number of load balancers that you can specify per service, see [Service Load Balancing](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
78
79
|
To remove this property from your service resource, specify an empty ``LoadBalancer`` array.
|
|
79
80
|
:param pulumi.Input['ServiceNetworkConfigurationArgs'] network_configuration: The network configuration for the service. This parameter is required for task definitions that use the ``awsvpc`` network mode to receive their own elastic network interface, and it is not supported for other network modes. For more information, see [Task Networking](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
@@ -305,6 +306,7 @@ class ServiceArgs:
|
|
|
305
306
|
def launch_type(self) -> Optional[pulumi.Input['ServiceLaunchType']]:
|
|
306
307
|
"""
|
|
307
308
|
The launch type on which to run your service. For more information, see [Amazon ECS Launch Types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
309
|
+
If you want to use Managed Instances, you must use the ``capacityProviderStrategy`` request parameter
|
|
308
310
|
"""
|
|
309
311
|
return pulumi.get(self, "launch_type")
|
|
310
312
|
|
|
@@ -603,6 +605,7 @@ class Service(pulumi.CustomResource):
|
|
|
603
605
|
:param pulumi.Input[_builtins.int] health_check_grace_period_seconds: The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you do not specify a health check grace period value, the default value of 0 is used. If you do not use any of the health checks, then ``healthCheckGracePeriodSeconds`` is unused.
|
|
604
606
|
If your service has more running tasks than desired, unhealthy tasks in the grace period might be stopped to reach the desired count.
|
|
605
607
|
:param pulumi.Input['ServiceLaunchType'] launch_type: The launch type on which to run your service. For more information, see [Amazon ECS Launch Types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
608
|
+
If you want to use Managed Instances, you must use the ``capacityProviderStrategy`` request parameter
|
|
606
609
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ServiceLoadBalancerArgs', 'ServiceLoadBalancerArgsDict']]]] load_balancers: A list of load balancer objects to associate with the service. If you specify the ``Role`` property, ``LoadBalancers`` must be specified as well. For information about the number of load balancers that you can specify per service, see [Service Load Balancing](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
607
610
|
To remove this property from your service resource, specify an empty ``LoadBalancer`` array.
|
|
608
611
|
:param pulumi.Input[Union['ServiceNetworkConfigurationArgs', 'ServiceNetworkConfigurationArgsDict']] network_configuration: The network configuration for the service. This parameter is required for task definitions that use the ``awsvpc`` network mode to receive their own elastic network interface, and it is not supported for other network modes. For more information, see [Task Networking](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
@@ -906,6 +909,7 @@ class Service(pulumi.CustomResource):
|
|
|
906
909
|
def launch_type(self) -> pulumi.Output[Optional['ServiceLaunchType']]:
|
|
907
910
|
"""
|
|
908
911
|
The launch type on which to run your service. For more information, see [Amazon ECS Launch Types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
912
|
+
If you want to use Managed Instances, you must use the ``capacityProviderStrategy`` request parameter
|
|
909
913
|
"""
|
|
910
914
|
return pulumi.get(self, "launch_type")
|
|
911
915
|
|