pulumi-aws-native 1.39.0a1762385303__py3-none-any.whl → 1.39.0a1762580459__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.
- pulumi_aws_native/__init__.py +2 -0
- pulumi_aws_native/backup/get_logically_air_gapped_backup_vault.py +12 -1
- pulumi_aws_native/backup/logically_air_gapped_backup_vault.py +21 -0
- pulumi_aws_native/cassandra/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/_enums.py +98 -0
- pulumi_aws_native/cleanrooms/_inputs.py +138 -12
- pulumi_aws_native/cleanrooms/collaboration.py +30 -1
- pulumi_aws_native/cleanrooms/get_privacy_budget_template.py +1 -0
- pulumi_aws_native/cleanrooms/outputs.py +106 -9
- pulumi_aws_native/cloudfront/_inputs.py +7 -0
- pulumi_aws_native/cloudfront/get_vpc_origin.py +3 -0
- pulumi_aws_native/cloudfront/outputs.py +4 -0
- pulumi_aws_native/cloudfront/vpc_origin.py +3 -0
- pulumi_aws_native/connect/_enums.py +9 -0
- pulumi_aws_native/connect/_inputs.py +168 -0
- pulumi_aws_native/connect/get_security_profile.py +13 -1
- pulumi_aws_native/connect/outputs.py +172 -0
- pulumi_aws_native/connect/security_profile.py +22 -0
- pulumi_aws_native/datazone/_enums.py +10 -0
- pulumi_aws_native/datazone/_inputs.py +99 -4
- pulumi_aws_native/datazone/connection.py +37 -8
- pulumi_aws_native/datazone/outputs.py +101 -6
- pulumi_aws_native/dynamodb/_inputs.py +6 -5
- pulumi_aws_native/dynamodb/outputs.py +4 -3
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository_creation_template.py +1 -1
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository_creation_template.py +4 -4
- pulumi_aws_native/ecs/_inputs.py +6 -6
- pulumi_aws_native/ecs/outputs.py +4 -4
- pulumi_aws_native/ecs/task_definition.py +8 -8
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +23 -3
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +16 -2
- pulumi_aws_native/gamelift/_enums.py +1 -0
- pulumi_aws_native/kinesis/get_stream.py +15 -1
- pulumi_aws_native/kinesis/stream.py +29 -0
- pulumi_aws_native/kms/_enums.py +1 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/location/_inputs.py +86 -0
- pulumi_aws_native/location/outputs.py +88 -0
- pulumi_aws_native/opensearchserverless/collection.py +11 -1
- pulumi_aws_native/opensearchserverless/get_collection.py +11 -12
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +62 -0
- pulumi_aws_native/quicksight/_inputs.py +2571 -260
- pulumi_aws_native/quicksight/data_set.py +42 -24
- pulumi_aws_native/quicksight/get_data_set.py +23 -10
- pulumi_aws_native/quicksight/outputs.py +2247 -94
- pulumi_aws_native/servicecatalog/__init__.py +2 -0
- pulumi_aws_native/servicecatalog/_enums.py +28 -0
- pulumi_aws_native/servicecatalog/_inputs.py +364 -0
- pulumi_aws_native/servicecatalog/cloud_formation_product.py +519 -0
- pulumi_aws_native/servicecatalog/get_cloud_formation_product.py +276 -0
- pulumi_aws_native/servicecatalog/outputs.py +311 -0
- pulumi_aws_native/ses/__init__.py +2 -0
- pulumi_aws_native/ses/_inputs.py +54 -0
- pulumi_aws_native/ses/get_multi_region_endpoint.py +78 -0
- pulumi_aws_native/ses/multi_region_endpoint.py +190 -0
- pulumi_aws_native/ses/outputs.py +49 -0
- pulumi_aws_native/wafv2/_inputs.py +7 -0
- pulumi_aws_native/wafv2/outputs.py +4 -0
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/RECORD +65 -61
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/top_level.txt +0 -0
|
@@ -17,6 +17,7 @@ from . import outputs
|
|
|
17
17
|
from ._enums import *
|
|
18
18
|
|
|
19
19
|
__all__ = [
|
|
20
|
+
'ConnectionAmazonQPropertiesInput',
|
|
20
21
|
'ConnectionAthenaPropertiesInput',
|
|
21
22
|
'ConnectionAuthenticationConfigurationInput',
|
|
22
23
|
'ConnectionAuthorizationCodeProperties',
|
|
@@ -39,6 +40,7 @@ __all__ = [
|
|
|
39
40
|
'ConnectionPropertiesInput5Properties',
|
|
40
41
|
'ConnectionPropertiesInput6Properties',
|
|
41
42
|
'ConnectionPropertiesInput7Properties',
|
|
43
|
+
'ConnectionPropertiesInput8Properties',
|
|
42
44
|
'ConnectionRedshiftCredentials0Properties',
|
|
43
45
|
'ConnectionRedshiftCredentials1Properties',
|
|
44
46
|
'ConnectionRedshiftLineageSyncConfigurationInput',
|
|
@@ -129,6 +131,70 @@ __all__ = [
|
|
|
129
131
|
'UserProfileSsoUserProfileDetails',
|
|
130
132
|
]
|
|
131
133
|
|
|
134
|
+
@pulumi.output_type
|
|
135
|
+
class ConnectionAmazonQPropertiesInput(dict):
|
|
136
|
+
"""
|
|
137
|
+
Amazon Q properties of the connection.
|
|
138
|
+
"""
|
|
139
|
+
@staticmethod
|
|
140
|
+
def __key_warning(key: str):
|
|
141
|
+
suggest = None
|
|
142
|
+
if key == "authMode":
|
|
143
|
+
suggest = "auth_mode"
|
|
144
|
+
elif key == "isEnabled":
|
|
145
|
+
suggest = "is_enabled"
|
|
146
|
+
elif key == "profileArn":
|
|
147
|
+
suggest = "profile_arn"
|
|
148
|
+
|
|
149
|
+
if suggest:
|
|
150
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionAmazonQPropertiesInput. Access the value via the '{suggest}' property getter instead.")
|
|
151
|
+
|
|
152
|
+
def __getitem__(self, key: str) -> Any:
|
|
153
|
+
ConnectionAmazonQPropertiesInput.__key_warning(key)
|
|
154
|
+
return super().__getitem__(key)
|
|
155
|
+
|
|
156
|
+
def get(self, key: str, default = None) -> Any:
|
|
157
|
+
ConnectionAmazonQPropertiesInput.__key_warning(key)
|
|
158
|
+
return super().get(key, default)
|
|
159
|
+
|
|
160
|
+
def __init__(__self__, *,
|
|
161
|
+
auth_mode: Optional[_builtins.str] = None,
|
|
162
|
+
is_enabled: Optional[_builtins.bool] = None,
|
|
163
|
+
profile_arn: Optional[_builtins.str] = None):
|
|
164
|
+
"""
|
|
165
|
+
Amazon Q properties of the connection.
|
|
166
|
+
:param _builtins.str auth_mode: The authentication mode of the connection's AmazonQ properties
|
|
167
|
+
:param _builtins.bool is_enabled: Specifies whether Amazon Q is enabled for the connection
|
|
168
|
+
"""
|
|
169
|
+
if auth_mode is not None:
|
|
170
|
+
pulumi.set(__self__, "auth_mode", auth_mode)
|
|
171
|
+
if is_enabled is not None:
|
|
172
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
|
173
|
+
if profile_arn is not None:
|
|
174
|
+
pulumi.set(__self__, "profile_arn", profile_arn)
|
|
175
|
+
|
|
176
|
+
@_builtins.property
|
|
177
|
+
@pulumi.getter(name="authMode")
|
|
178
|
+
def auth_mode(self) -> Optional[_builtins.str]:
|
|
179
|
+
"""
|
|
180
|
+
The authentication mode of the connection's AmazonQ properties
|
|
181
|
+
"""
|
|
182
|
+
return pulumi.get(self, "auth_mode")
|
|
183
|
+
|
|
184
|
+
@_builtins.property
|
|
185
|
+
@pulumi.getter(name="isEnabled")
|
|
186
|
+
def is_enabled(self) -> Optional[_builtins.bool]:
|
|
187
|
+
"""
|
|
188
|
+
Specifies whether Amazon Q is enabled for the connection
|
|
189
|
+
"""
|
|
190
|
+
return pulumi.get(self, "is_enabled")
|
|
191
|
+
|
|
192
|
+
@_builtins.property
|
|
193
|
+
@pulumi.getter(name="profileArn")
|
|
194
|
+
def profile_arn(self) -> Optional[_builtins.str]:
|
|
195
|
+
return pulumi.get(self, "profile_arn")
|
|
196
|
+
|
|
197
|
+
|
|
132
198
|
@pulumi.output_type
|
|
133
199
|
class ConnectionAthenaPropertiesInput(dict):
|
|
134
200
|
"""
|
|
@@ -1133,8 +1199,8 @@ class ConnectionPropertiesInput6Properties(dict):
|
|
|
1133
1199
|
@staticmethod
|
|
1134
1200
|
def __key_warning(key: str):
|
|
1135
1201
|
suggest = None
|
|
1136
|
-
if key == "
|
|
1137
|
-
suggest = "
|
|
1202
|
+
if key == "amazonQProperties":
|
|
1203
|
+
suggest = "amazon_q_properties"
|
|
1138
1204
|
|
|
1139
1205
|
if suggest:
|
|
1140
1206
|
pulumi.log.warn(f"Key '{key}' not found in ConnectionPropertiesInput6Properties. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -1147,6 +1213,35 @@ class ConnectionPropertiesInput6Properties(dict):
|
|
|
1147
1213
|
ConnectionPropertiesInput6Properties.__key_warning(key)
|
|
1148
1214
|
return super().get(key, default)
|
|
1149
1215
|
|
|
1216
|
+
def __init__(__self__, *,
|
|
1217
|
+
amazon_q_properties: 'outputs.ConnectionAmazonQPropertiesInput'):
|
|
1218
|
+
pulumi.set(__self__, "amazon_q_properties", amazon_q_properties)
|
|
1219
|
+
|
|
1220
|
+
@_builtins.property
|
|
1221
|
+
@pulumi.getter(name="amazonQProperties")
|
|
1222
|
+
def amazon_q_properties(self) -> 'outputs.ConnectionAmazonQPropertiesInput':
|
|
1223
|
+
return pulumi.get(self, "amazon_q_properties")
|
|
1224
|
+
|
|
1225
|
+
|
|
1226
|
+
@pulumi.output_type
|
|
1227
|
+
class ConnectionPropertiesInput7Properties(dict):
|
|
1228
|
+
@staticmethod
|
|
1229
|
+
def __key_warning(key: str):
|
|
1230
|
+
suggest = None
|
|
1231
|
+
if key == "sparkGlueProperties":
|
|
1232
|
+
suggest = "spark_glue_properties"
|
|
1233
|
+
|
|
1234
|
+
if suggest:
|
|
1235
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionPropertiesInput7Properties. Access the value via the '{suggest}' property getter instead.")
|
|
1236
|
+
|
|
1237
|
+
def __getitem__(self, key: str) -> Any:
|
|
1238
|
+
ConnectionPropertiesInput7Properties.__key_warning(key)
|
|
1239
|
+
return super().__getitem__(key)
|
|
1240
|
+
|
|
1241
|
+
def get(self, key: str, default = None) -> Any:
|
|
1242
|
+
ConnectionPropertiesInput7Properties.__key_warning(key)
|
|
1243
|
+
return super().get(key, default)
|
|
1244
|
+
|
|
1150
1245
|
def __init__(__self__, *,
|
|
1151
1246
|
spark_glue_properties: 'outputs.ConnectionSparkGluePropertiesInput'):
|
|
1152
1247
|
pulumi.set(__self__, "spark_glue_properties", spark_glue_properties)
|
|
@@ -1158,7 +1253,7 @@ class ConnectionPropertiesInput6Properties(dict):
|
|
|
1158
1253
|
|
|
1159
1254
|
|
|
1160
1255
|
@pulumi.output_type
|
|
1161
|
-
class
|
|
1256
|
+
class ConnectionPropertiesInput8Properties(dict):
|
|
1162
1257
|
@staticmethod
|
|
1163
1258
|
def __key_warning(key: str):
|
|
1164
1259
|
suggest = None
|
|
@@ -1166,14 +1261,14 @@ class ConnectionPropertiesInput7Properties(dict):
|
|
|
1166
1261
|
suggest = "s3_properties"
|
|
1167
1262
|
|
|
1168
1263
|
if suggest:
|
|
1169
|
-
pulumi.log.warn(f"Key '{key}' not found in
|
|
1264
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionPropertiesInput8Properties. Access the value via the '{suggest}' property getter instead.")
|
|
1170
1265
|
|
|
1171
1266
|
def __getitem__(self, key: str) -> Any:
|
|
1172
|
-
|
|
1267
|
+
ConnectionPropertiesInput8Properties.__key_warning(key)
|
|
1173
1268
|
return super().__getitem__(key)
|
|
1174
1269
|
|
|
1175
1270
|
def get(self, key: str, default = None) -> Any:
|
|
1176
|
-
|
|
1271
|
+
ConnectionPropertiesInput8Properties.__key_warning(key)
|
|
1177
1272
|
return super().get(key, default)
|
|
1178
1273
|
|
|
1179
1274
|
def __init__(__self__, *,
|
|
@@ -1303,7 +1303,7 @@ class GlobalTableReplicaSseSpecificationArgs:
|
|
|
1303
1303
|
|
|
1304
1304
|
if not MYPY:
|
|
1305
1305
|
class GlobalTableReplicaStreamSpecificationArgsDict(TypedDict):
|
|
1306
|
-
resource_policy: pulumi.Input['GlobalTableResourcePolicyArgsDict']
|
|
1306
|
+
resource_policy: NotRequired[pulumi.Input['GlobalTableResourcePolicyArgsDict']]
|
|
1307
1307
|
"""
|
|
1308
1308
|
A resource-based policy document that contains the permissions for the specified stream of a DynamoDB global table replica. Resource-based policies let you define access permissions by specifying who has access to each resource, and the actions they are allowed to perform on each resource.
|
|
1309
1309
|
|
|
@@ -1317,7 +1317,7 @@ elif False:
|
|
|
1317
1317
|
@pulumi.input_type
|
|
1318
1318
|
class GlobalTableReplicaStreamSpecificationArgs:
|
|
1319
1319
|
def __init__(__self__, *,
|
|
1320
|
-
resource_policy: pulumi.Input['GlobalTableResourcePolicyArgs']):
|
|
1320
|
+
resource_policy: Optional[pulumi.Input['GlobalTableResourcePolicyArgs']] = None):
|
|
1321
1321
|
"""
|
|
1322
1322
|
:param pulumi.Input['GlobalTableResourcePolicyArgs'] resource_policy: A resource-based policy document that contains the permissions for the specified stream of a DynamoDB global table replica. Resource-based policies let you define access permissions by specifying who has access to each resource, and the actions they are allowed to perform on each resource.
|
|
1323
1323
|
|
|
@@ -1325,11 +1325,12 @@ class GlobalTableReplicaStreamSpecificationArgs:
|
|
|
1325
1325
|
|
|
1326
1326
|
You can update the `ResourcePolicy` property if you've specified more than one table using the [AWS ::DynamoDB::GlobalTable](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html) resource.
|
|
1327
1327
|
"""
|
|
1328
|
-
|
|
1328
|
+
if resource_policy is not None:
|
|
1329
|
+
pulumi.set(__self__, "resource_policy", resource_policy)
|
|
1329
1330
|
|
|
1330
1331
|
@_builtins.property
|
|
1331
1332
|
@pulumi.getter(name="resourcePolicy")
|
|
1332
|
-
def resource_policy(self) -> pulumi.Input['GlobalTableResourcePolicyArgs']:
|
|
1333
|
+
def resource_policy(self) -> Optional[pulumi.Input['GlobalTableResourcePolicyArgs']]:
|
|
1333
1334
|
"""
|
|
1334
1335
|
A resource-based policy document that contains the permissions for the specified stream of a DynamoDB global table replica. Resource-based policies let you define access permissions by specifying who has access to each resource, and the actions they are allowed to perform on each resource.
|
|
1335
1336
|
|
|
@@ -1340,7 +1341,7 @@ class GlobalTableReplicaStreamSpecificationArgs:
|
|
|
1340
1341
|
return pulumi.get(self, "resource_policy")
|
|
1341
1342
|
|
|
1342
1343
|
@resource_policy.setter
|
|
1343
|
-
def resource_policy(self, value: pulumi.Input['GlobalTableResourcePolicyArgs']):
|
|
1344
|
+
def resource_policy(self, value: Optional[pulumi.Input['GlobalTableResourcePolicyArgs']]):
|
|
1344
1345
|
pulumi.set(self, "resource_policy", value)
|
|
1345
1346
|
|
|
1346
1347
|
|
|
@@ -1072,7 +1072,7 @@ class GlobalTableReplicaStreamSpecification(dict):
|
|
|
1072
1072
|
return super().get(key, default)
|
|
1073
1073
|
|
|
1074
1074
|
def __init__(__self__, *,
|
|
1075
|
-
resource_policy: 'outputs.GlobalTableResourcePolicy'):
|
|
1075
|
+
resource_policy: Optional['outputs.GlobalTableResourcePolicy'] = None):
|
|
1076
1076
|
"""
|
|
1077
1077
|
:param 'GlobalTableResourcePolicy' resource_policy: A resource-based policy document that contains the permissions for the specified stream of a DynamoDB global table replica. Resource-based policies let you define access permissions by specifying who has access to each resource, and the actions they are allowed to perform on each resource.
|
|
1078
1078
|
|
|
@@ -1080,11 +1080,12 @@ class GlobalTableReplicaStreamSpecification(dict):
|
|
|
1080
1080
|
|
|
1081
1081
|
You can update the `ResourcePolicy` property if you've specified more than one table using the [AWS ::DynamoDB::GlobalTable](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html) resource.
|
|
1082
1082
|
"""
|
|
1083
|
-
|
|
1083
|
+
if resource_policy is not None:
|
|
1084
|
+
pulumi.set(__self__, "resource_policy", resource_policy)
|
|
1084
1085
|
|
|
1085
1086
|
@_builtins.property
|
|
1086
1087
|
@pulumi.getter(name="resourcePolicy")
|
|
1087
|
-
def resource_policy(self) -> 'outputs.GlobalTableResourcePolicy':
|
|
1088
|
+
def resource_policy(self) -> Optional['outputs.GlobalTableResourcePolicy']:
|
|
1088
1089
|
"""
|
|
1089
1090
|
A resource-based policy document that contains the permissions for the specified stream of a DynamoDB global table replica. Resource-based policies let you define access permissions by specifying who has access to each resource, and the actions they are allowed to perform on each resource.
|
|
1090
1091
|
|
pulumi_aws_native/ecr/_inputs.py
CHANGED
|
@@ -426,7 +426,7 @@ class RepositoryCreationTemplateEncryptionConfigurationArgs:
|
|
|
426
426
|
if not MYPY:
|
|
427
427
|
class RepositoryCreationTemplateImageTagMutabilityExclusionFilterArgsDict(TypedDict):
|
|
428
428
|
"""
|
|
429
|
-
|
|
429
|
+
A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
|
|
430
430
|
"""
|
|
431
431
|
image_tag_mutability_exclusion_filter_type: pulumi.Input['RepositoryCreationTemplateImageTagMutabilityExclusionFilterImageTagMutabilityExclusionFilterType']
|
|
432
432
|
image_tag_mutability_exclusion_filter_value: pulumi.Input[_builtins.str]
|
|
@@ -439,7 +439,7 @@ class RepositoryCreationTemplateImageTagMutabilityExclusionFilterArgs:
|
|
|
439
439
|
image_tag_mutability_exclusion_filter_type: pulumi.Input['RepositoryCreationTemplateImageTagMutabilityExclusionFilterImageTagMutabilityExclusionFilterType'],
|
|
440
440
|
image_tag_mutability_exclusion_filter_value: pulumi.Input[_builtins.str]):
|
|
441
441
|
"""
|
|
442
|
-
|
|
442
|
+
A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
|
|
443
443
|
"""
|
|
444
444
|
pulumi.set(__self__, "image_tag_mutability_exclusion_filter_type", image_tag_mutability_exclusion_filter_type)
|
|
445
445
|
pulumi.set(__self__, "image_tag_mutability_exclusion_filter_value", image_tag_mutability_exclusion_filter_value)
|
|
@@ -112,7 +112,7 @@ class GetRepositoryCreationTemplateResult:
|
|
|
112
112
|
@pulumi.getter(name="imageTagMutabilityExclusionFilters")
|
|
113
113
|
def image_tag_mutability_exclusion_filters(self) -> Optional[Sequence['outputs.RepositoryCreationTemplateImageTagMutabilityExclusionFilter']]:
|
|
114
114
|
"""
|
|
115
|
-
|
|
115
|
+
A list of filters that specify which image tags are excluded from the repository creation template's image tag mutability setting.
|
|
116
116
|
"""
|
|
117
117
|
return pulumi.get(self, "image_tag_mutability_exclusion_filters")
|
|
118
118
|
|
pulumi_aws_native/ecr/outputs.py
CHANGED
|
@@ -375,7 +375,7 @@ class RepositoryCreationTemplateEncryptionConfiguration(dict):
|
|
|
375
375
|
@pulumi.output_type
|
|
376
376
|
class RepositoryCreationTemplateImageTagMutabilityExclusionFilter(dict):
|
|
377
377
|
"""
|
|
378
|
-
|
|
378
|
+
A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
|
|
379
379
|
"""
|
|
380
380
|
@staticmethod
|
|
381
381
|
def __key_warning(key: str):
|
|
@@ -400,7 +400,7 @@ class RepositoryCreationTemplateImageTagMutabilityExclusionFilter(dict):
|
|
|
400
400
|
image_tag_mutability_exclusion_filter_type: 'RepositoryCreationTemplateImageTagMutabilityExclusionFilterImageTagMutabilityExclusionFilterType',
|
|
401
401
|
image_tag_mutability_exclusion_filter_value: _builtins.str):
|
|
402
402
|
"""
|
|
403
|
-
|
|
403
|
+
A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
|
|
404
404
|
"""
|
|
405
405
|
pulumi.set(__self__, "image_tag_mutability_exclusion_filter_type", image_tag_mutability_exclusion_filter_type)
|
|
406
406
|
pulumi.set(__self__, "image_tag_mutability_exclusion_filter_value", image_tag_mutability_exclusion_filter_value)
|
|
@@ -40,7 +40,7 @@ class RepositoryCreationTemplateArgs:
|
|
|
40
40
|
:param pulumi.Input[_builtins.str] description: The description associated with the repository creation template.
|
|
41
41
|
:param pulumi.Input['RepositoryCreationTemplateEncryptionConfigurationArgs'] encryption_configuration: The encryption configuration associated with the repository creation template.
|
|
42
42
|
:param pulumi.Input['RepositoryCreationTemplateImageTagMutability'] 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.
|
|
43
|
-
:param pulumi.Input[Sequence[pulumi.Input['RepositoryCreationTemplateImageTagMutabilityExclusionFilterArgs']]] image_tag_mutability_exclusion_filters:
|
|
43
|
+
:param pulumi.Input[Sequence[pulumi.Input['RepositoryCreationTemplateImageTagMutabilityExclusionFilterArgs']]] image_tag_mutability_exclusion_filters: A list of filters that specify which image tags are excluded from the repository creation template's image tag mutability setting.
|
|
44
44
|
:param pulumi.Input[_builtins.str] lifecycle_policy: The lifecycle policy to use for repositories created using the template.
|
|
45
45
|
:param pulumi.Input[_builtins.str] repository_policy: The repository policy to apply to repositories created using the template. A repository policy is a permissions policy associated with a repository to control access permissions.
|
|
46
46
|
:param pulumi.Input[Sequence[pulumi.Input['RepositoryCreationTemplateTagArgs']]] resource_tags: The metadata to apply to the repository to help you categorize and organize. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
|
|
@@ -140,7 +140,7 @@ class RepositoryCreationTemplateArgs:
|
|
|
140
140
|
@pulumi.getter(name="imageTagMutabilityExclusionFilters")
|
|
141
141
|
def image_tag_mutability_exclusion_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RepositoryCreationTemplateImageTagMutabilityExclusionFilterArgs']]]]:
|
|
142
142
|
"""
|
|
143
|
-
|
|
143
|
+
A list of filters that specify which image tags are excluded from the repository creation template's image tag mutability setting.
|
|
144
144
|
"""
|
|
145
145
|
return pulumi.get(self, "image_tag_mutability_exclusion_filters")
|
|
146
146
|
|
|
@@ -212,7 +212,7 @@ class RepositoryCreationTemplate(pulumi.CustomResource):
|
|
|
212
212
|
:param pulumi.Input[_builtins.str] description: The description associated with the repository creation template.
|
|
213
213
|
:param pulumi.Input[Union['RepositoryCreationTemplateEncryptionConfigurationArgs', 'RepositoryCreationTemplateEncryptionConfigurationArgsDict']] encryption_configuration: The encryption configuration associated with the repository creation template.
|
|
214
214
|
:param pulumi.Input['RepositoryCreationTemplateImageTagMutability'] 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.
|
|
215
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['RepositoryCreationTemplateImageTagMutabilityExclusionFilterArgs', 'RepositoryCreationTemplateImageTagMutabilityExclusionFilterArgsDict']]]] image_tag_mutability_exclusion_filters:
|
|
215
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['RepositoryCreationTemplateImageTagMutabilityExclusionFilterArgs', 'RepositoryCreationTemplateImageTagMutabilityExclusionFilterArgsDict']]]] image_tag_mutability_exclusion_filters: A list of filters that specify which image tags are excluded from the repository creation template's image tag mutability setting.
|
|
216
216
|
:param pulumi.Input[_builtins.str] lifecycle_policy: The lifecycle policy to use for repositories created using the template.
|
|
217
217
|
:param pulumi.Input[_builtins.str] prefix: The repository namespace prefix associated with the repository creation template.
|
|
218
218
|
:param pulumi.Input[_builtins.str] repository_policy: The repository policy to apply to repositories created using the template. A repository policy is a permissions policy associated with a repository to control access permissions.
|
|
@@ -367,7 +367,7 @@ class RepositoryCreationTemplate(pulumi.CustomResource):
|
|
|
367
367
|
@pulumi.getter(name="imageTagMutabilityExclusionFilters")
|
|
368
368
|
def image_tag_mutability_exclusion_filters(self) -> pulumi.Output[Optional[Sequence['outputs.RepositoryCreationTemplateImageTagMutabilityExclusionFilter']]]:
|
|
369
369
|
"""
|
|
370
|
-
|
|
370
|
+
A list of filters that specify which image tags are excluded from the repository creation template's image tag mutability setting.
|
|
371
371
|
"""
|
|
372
372
|
return pulumi.get(self, "image_tag_mutability_exclusion_filters")
|
|
373
373
|
|
pulumi_aws_native/ecs/_inputs.py
CHANGED
|
@@ -5541,7 +5541,7 @@ if not MYPY:
|
|
|
5541
5541
|
"""
|
|
5542
5542
|
cpu: NotRequired[pulumi.Input[_builtins.int]]
|
|
5543
5543
|
"""
|
|
5544
|
-
The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create
|
|
5544
|
+
The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create command and the ``--cpu-shares`` option to docker run.
|
|
5545
5545
|
This field is optional for tasks using the Fargate launch type, and the only requirement is that the total amount of CPU reserved for all containers within a task be lower than the task-level ``cpu`` value.
|
|
5546
5546
|
You can determine the number of CPU units that are available per EC2 instance type by multiplying the vCPUs listed for that instance type on the [Amazon EC2 Instances](https://docs.aws.amazon.com/ec2/instance-types/) detail page by 1,024.
|
|
5547
5547
|
Linux containers share unallocated CPU units with other containers on the container instance with the same ratio as their allocated amount. For example, if you run a single-container task on a single-core instance type with 512 CPU units specified for that container, and that's the only task running on the container instance, that container could use the full 1,024 CPU unit share at any given time. However, if you launched another copy of the same task on that container instance, each task is guaranteed a minimum of 512 CPU units when needed. Moreover, each container could float to higher CPU usage if the other container was not using it. If both tasks were 100% active all of the time, they would be limited to 512 CPU units.
|
|
@@ -5835,7 +5835,7 @@ class TaskDefinitionContainerDefinitionArgs:
|
|
|
5835
5835
|
+ Images in other online repositories are qualified further by a domain name (for example, ``quay.io/assemblyline/ubuntu``).
|
|
5836
5836
|
:param pulumi.Input[_builtins.str] name: The name of a container. If you're linking multiple containers together in a task definition, the ``name`` of one container can be entered in the ``links`` of another container to connect the containers. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This parameter maps to ``name`` in the docker container create command and the ``--name`` option to docker run.
|
|
5837
5837
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] command: The command that's passed to the container. This parameter maps to ``Cmd`` in the docker container create command and the ``COMMAND`` parameter to docker run. If there are multiple arguments, each argument is a separated string in the array.
|
|
5838
|
-
:param pulumi.Input[_builtins.int] cpu: The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create
|
|
5838
|
+
:param pulumi.Input[_builtins.int] cpu: The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create command and the ``--cpu-shares`` option to docker run.
|
|
5839
5839
|
This field is optional for tasks using the Fargate launch type, and the only requirement is that the total amount of CPU reserved for all containers within a task be lower than the task-level ``cpu`` value.
|
|
5840
5840
|
You can determine the number of CPU units that are available per EC2 instance type by multiplying the vCPUs listed for that instance type on the [Amazon EC2 Instances](https://docs.aws.amazon.com/ec2/instance-types/) detail page by 1,024.
|
|
5841
5841
|
Linux containers share unallocated CPU units with other containers on the container instance with the same ratio as their allocated amount. For example, if you run a single-container task on a single-core instance type with 512 CPU units specified for that container, and that's the only task running on the container instance, that container could use the full 1,024 CPU unit share at any given time. However, if you launched another copy of the same task on that container instance, each task is guaranteed a minimum of 512 CPU units when needed. Moreover, each container could float to higher CPU usage if the other container was not using it. If both tasks were 100% active all of the time, they would be limited to 512 CPU units.
|
|
@@ -6085,7 +6085,7 @@ class TaskDefinitionContainerDefinitionArgs:
|
|
|
6085
6085
|
@pulumi.getter
|
|
6086
6086
|
def cpu(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
6087
6087
|
"""
|
|
6088
|
-
The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create
|
|
6088
|
+
The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create command and the ``--cpu-shares`` option to docker run.
|
|
6089
6089
|
This field is optional for tasks using the Fargate launch type, and the only requirement is that the total amount of CPU reserved for all containers within a task be lower than the task-level ``cpu`` value.
|
|
6090
6090
|
You can determine the number of CPU units that are available per EC2 instance type by multiplying the vCPUs listed for that instance type on the [Amazon EC2 Instances](https://docs.aws.amazon.com/ec2/instance-types/) detail page by 1,024.
|
|
6091
6091
|
Linux containers share unallocated CPU units with other containers on the container instance with the same ratio as their allocated amount. For example, if you run a single-container task on a single-core instance type with 512 CPU units specified for that container, and that's the only task running on the container instance, that container could use the full 1,024 CPU unit share at any given time. However, if you launched another copy of the same task on that container instance, each task is guaranteed a minimum of 512 CPU units when needed. Moreover, each container could float to higher CPU usage if the other container was not using it. If both tasks were 100% active all of the time, they would be limited to 512 CPU units.
|
|
@@ -8702,7 +8702,7 @@ if not MYPY:
|
|
|
8702
8702
|
cpu_architecture: NotRequired[pulumi.Input[_builtins.str]]
|
|
8703
8703
|
"""
|
|
8704
8704
|
The CPU architecture.
|
|
8705
|
-
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance or Linux containers on Fargate.
|
|
8705
|
+
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance, Amazon ECS Managed Instances, or Linux containers on Fargate.
|
|
8706
8706
|
"""
|
|
8707
8707
|
operating_system_family: NotRequired[pulumi.Input[_builtins.str]]
|
|
8708
8708
|
"""
|
|
@@ -8720,7 +8720,7 @@ class TaskDefinitionRuntimePlatformArgs:
|
|
|
8720
8720
|
Information about the platform for the Amazon ECS service or task.
|
|
8721
8721
|
For more information about ``RuntimePlatform``, see [RuntimePlatform](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#runtime-platform) in the *Amazon Elastic Container Service Developer Guide*.
|
|
8722
8722
|
:param pulumi.Input[_builtins.str] cpu_architecture: The CPU architecture.
|
|
8723
|
-
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance or Linux containers on Fargate.
|
|
8723
|
+
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance, Amazon ECS Managed Instances, or Linux containers on Fargate.
|
|
8724
8724
|
:param pulumi.Input[_builtins.str] operating_system_family: The operating system.
|
|
8725
8725
|
"""
|
|
8726
8726
|
if cpu_architecture is not None:
|
|
@@ -8733,7 +8733,7 @@ class TaskDefinitionRuntimePlatformArgs:
|
|
|
8733
8733
|
def cpu_architecture(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
8734
8734
|
"""
|
|
8735
8735
|
The CPU architecture.
|
|
8736
|
-
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance or Linux containers on Fargate.
|
|
8736
|
+
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance, Amazon ECS Managed Instances, or Linux containers on Fargate.
|
|
8737
8737
|
"""
|
|
8738
8738
|
return pulumi.get(self, "cpu_architecture")
|
|
8739
8739
|
|
pulumi_aws_native/ecs/outputs.py
CHANGED
|
@@ -4373,7 +4373,7 @@ class TaskDefinitionContainerDefinition(dict):
|
|
|
4373
4373
|
+ Images in other online repositories are qualified further by a domain name (for example, ``quay.io/assemblyline/ubuntu``).
|
|
4374
4374
|
:param _builtins.str name: The name of a container. If you're linking multiple containers together in a task definition, the ``name`` of one container can be entered in the ``links`` of another container to connect the containers. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This parameter maps to ``name`` in the docker container create command and the ``--name`` option to docker run.
|
|
4375
4375
|
:param Sequence[_builtins.str] command: The command that's passed to the container. This parameter maps to ``Cmd`` in the docker container create command and the ``COMMAND`` parameter to docker run. If there are multiple arguments, each argument is a separated string in the array.
|
|
4376
|
-
:param _builtins.int cpu: The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create
|
|
4376
|
+
:param _builtins.int cpu: The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create command and the ``--cpu-shares`` option to docker run.
|
|
4377
4377
|
This field is optional for tasks using the Fargate launch type, and the only requirement is that the total amount of CPU reserved for all containers within a task be lower than the task-level ``cpu`` value.
|
|
4378
4378
|
You can determine the number of CPU units that are available per EC2 instance type by multiplying the vCPUs listed for that instance type on the [Amazon EC2 Instances](https://docs.aws.amazon.com/ec2/instance-types/) detail page by 1,024.
|
|
4379
4379
|
Linux containers share unallocated CPU units with other containers on the container instance with the same ratio as their allocated amount. For example, if you run a single-container task on a single-core instance type with 512 CPU units specified for that container, and that's the only task running on the container instance, that container could use the full 1,024 CPU unit share at any given time. However, if you launched another copy of the same task on that container instance, each task is guaranteed a minimum of 512 CPU units when needed. Moreover, each container could float to higher CPU usage if the other container was not using it. If both tasks were 100% active all of the time, they would be limited to 512 CPU units.
|
|
@@ -4611,7 +4611,7 @@ class TaskDefinitionContainerDefinition(dict):
|
|
|
4611
4611
|
@pulumi.getter
|
|
4612
4612
|
def cpu(self) -> Optional[_builtins.int]:
|
|
4613
4613
|
"""
|
|
4614
|
-
The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create
|
|
4614
|
+
The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create command and the ``--cpu-shares`` option to docker run.
|
|
4615
4615
|
This field is optional for tasks using the Fargate launch type, and the only requirement is that the total amount of CPU reserved for all containers within a task be lower than the task-level ``cpu`` value.
|
|
4616
4616
|
You can determine the number of CPU units that are available per EC2 instance type by multiplying the vCPUs listed for that instance type on the [Amazon EC2 Instances](https://docs.aws.amazon.com/ec2/instance-types/) detail page by 1,024.
|
|
4617
4617
|
Linux containers share unallocated CPU units with other containers on the container instance with the same ratio as their allocated amount. For example, if you run a single-container task on a single-core instance type with 512 CPU units specified for that container, and that's the only task running on the container instance, that container could use the full 1,024 CPU unit share at any given time. However, if you launched another copy of the same task on that container instance, each task is guaranteed a minimum of 512 CPU units when needed. Moreover, each container could float to higher CPU usage if the other container was not using it. If both tasks were 100% active all of the time, they would be limited to 512 CPU units.
|
|
@@ -6684,7 +6684,7 @@ class TaskDefinitionRuntimePlatform(dict):
|
|
|
6684
6684
|
Information about the platform for the Amazon ECS service or task.
|
|
6685
6685
|
For more information about ``RuntimePlatform``, see [RuntimePlatform](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#runtime-platform) in the *Amazon Elastic Container Service Developer Guide*.
|
|
6686
6686
|
:param _builtins.str cpu_architecture: The CPU architecture.
|
|
6687
|
-
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance or Linux containers on Fargate.
|
|
6687
|
+
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance, Amazon ECS Managed Instances, or Linux containers on Fargate.
|
|
6688
6688
|
:param _builtins.str operating_system_family: The operating system.
|
|
6689
6689
|
"""
|
|
6690
6690
|
if cpu_architecture is not None:
|
|
@@ -6697,7 +6697,7 @@ class TaskDefinitionRuntimePlatform(dict):
|
|
|
6697
6697
|
def cpu_architecture(self) -> Optional[_builtins.str]:
|
|
6698
6698
|
"""
|
|
6699
6699
|
The CPU architecture.
|
|
6700
|
-
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance or Linux containers on Fargate.
|
|
6700
|
+
You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance, Amazon ECS Managed Instances, or Linux containers on Fargate.
|
|
6701
6701
|
"""
|
|
6702
6702
|
return pulumi.get(self, "cpu_architecture")
|
|
6703
6703
|
|
|
@@ -82,7 +82,7 @@ class TaskDefinitionArgs:
|
|
|
82
82
|
:param pulumi.Input[_builtins.str] pid_mode: The process namespace to use for the containers in the task. The valid values are ``host`` or ``task``. On Fargate for Linux containers, the only valid value is ``task``. For example, monitoring sidecars might need ``pidMode`` to access information about other containers running in the same task.
|
|
83
83
|
If ``host`` is specified, all containers within the tasks that specified the ``host`` PID mode on the same container instance share the same process namespace with the host Amazon EC2 instance.
|
|
84
84
|
If ``task`` is specified, all containers within the specified task share the same process namespace.
|
|
85
|
-
If no value is specified, the default is a private namespace for each container.
|
|
85
|
+
If no value is specified, the The default is a private namespace for each container.
|
|
86
86
|
If the ``host`` PID mode is used, there's a heightened risk of undesired process namespace exposure.
|
|
87
87
|
This parameter is not supported for Windows containers.
|
|
88
88
|
This parameter is only supported for tasks that are hosted on FARGATElong if the tasks are using platform version ``1.4.0`` or later (Linux). This isn't supported for Windows containers on Fargate.
|
|
@@ -91,7 +91,7 @@ class TaskDefinitionArgs:
|
|
|
91
91
|
:param pulumi.Input['TaskDefinitionProxyConfigurationArgs'] proxy_configuration: The configuration details for the App Mesh proxy.
|
|
92
92
|
Your Amazon ECS container instances require at least version 1.26.0 of the container agent and at least version 1.26.0-1 of the ``ecs-init`` package to use a proxy configuration. If your container instances are launched from the Amazon ECS optimized AMI version ``20190301`` or later, they contain the required versions of the container agent and ``ecs-init``. For more information, see [Amazon ECS-optimized Linux AMI](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
93
93
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: The task launch types the task definition was validated against. The valid values are ``MANAGED_INSTANCES``, ``EC2``, ``FARGATE``, and ``EXTERNAL``. 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*.
|
|
94
|
-
:param pulumi.Input['TaskDefinitionRuntimePlatformArgs'] runtime_platform: The operating system that your tasks definitions run on.
|
|
94
|
+
:param pulumi.Input['TaskDefinitionRuntimePlatformArgs'] runtime_platform: The operating system that your tasks definitions run on.
|
|
95
95
|
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: The metadata that you apply to the task definition to help you categorize and organize them. Each tag consists of a key and an optional value. You define both of them.
|
|
96
96
|
The following basic restrictions apply to tags:
|
|
97
97
|
+ Maximum number of tags per resource - 50
|
|
@@ -294,7 +294,7 @@ class TaskDefinitionArgs:
|
|
|
294
294
|
The process namespace to use for the containers in the task. The valid values are ``host`` or ``task``. On Fargate for Linux containers, the only valid value is ``task``. For example, monitoring sidecars might need ``pidMode`` to access information about other containers running in the same task.
|
|
295
295
|
If ``host`` is specified, all containers within the tasks that specified the ``host`` PID mode on the same container instance share the same process namespace with the host Amazon EC2 instance.
|
|
296
296
|
If ``task`` is specified, all containers within the specified task share the same process namespace.
|
|
297
|
-
If no value is specified, the default is a private namespace for each container.
|
|
297
|
+
If no value is specified, the The default is a private namespace for each container.
|
|
298
298
|
If the ``host`` PID mode is used, there's a heightened risk of undesired process namespace exposure.
|
|
299
299
|
This parameter is not supported for Windows containers.
|
|
300
300
|
This parameter is only supported for tasks that are hosted on FARGATElong if the tasks are using platform version ``1.4.0`` or later (Linux). This isn't supported for Windows containers on Fargate.
|
|
@@ -347,7 +347,7 @@ class TaskDefinitionArgs:
|
|
|
347
347
|
@pulumi.getter(name="runtimePlatform")
|
|
348
348
|
def runtime_platform(self) -> Optional[pulumi.Input['TaskDefinitionRuntimePlatformArgs']]:
|
|
349
349
|
"""
|
|
350
|
-
The operating system that your tasks definitions run on.
|
|
350
|
+
The operating system that your tasks definitions run on.
|
|
351
351
|
"""
|
|
352
352
|
return pulumi.get(self, "runtime_platform")
|
|
353
353
|
|
|
@@ -649,7 +649,7 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
649
649
|
:param pulumi.Input[_builtins.str] pid_mode: The process namespace to use for the containers in the task. The valid values are ``host`` or ``task``. On Fargate for Linux containers, the only valid value is ``task``. For example, monitoring sidecars might need ``pidMode`` to access information about other containers running in the same task.
|
|
650
650
|
If ``host`` is specified, all containers within the tasks that specified the ``host`` PID mode on the same container instance share the same process namespace with the host Amazon EC2 instance.
|
|
651
651
|
If ``task`` is specified, all containers within the specified task share the same process namespace.
|
|
652
|
-
If no value is specified, the default is a private namespace for each container.
|
|
652
|
+
If no value is specified, the The default is a private namespace for each container.
|
|
653
653
|
If the ``host`` PID mode is used, there's a heightened risk of undesired process namespace exposure.
|
|
654
654
|
This parameter is not supported for Windows containers.
|
|
655
655
|
This parameter is only supported for tasks that are hosted on FARGATElong if the tasks are using platform version ``1.4.0`` or later (Linux). This isn't supported for Windows containers on Fargate.
|
|
@@ -658,7 +658,7 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
658
658
|
:param pulumi.Input[Union['TaskDefinitionProxyConfigurationArgs', 'TaskDefinitionProxyConfigurationArgsDict']] proxy_configuration: The configuration details for the App Mesh proxy.
|
|
659
659
|
Your Amazon ECS container instances require at least version 1.26.0 of the container agent and at least version 1.26.0-1 of the ``ecs-init`` package to use a proxy configuration. If your container instances are launched from the Amazon ECS optimized AMI version ``20190301`` or later, they contain the required versions of the container agent and ``ecs-init``. For more information, see [Amazon ECS-optimized Linux AMI](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
660
660
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: The task launch types the task definition was validated against. The valid values are ``MANAGED_INSTANCES``, ``EC2``, ``FARGATE``, and ``EXTERNAL``. 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*.
|
|
661
|
-
:param pulumi.Input[Union['TaskDefinitionRuntimePlatformArgs', 'TaskDefinitionRuntimePlatformArgsDict']] runtime_platform: The operating system that your tasks definitions run on.
|
|
661
|
+
:param pulumi.Input[Union['TaskDefinitionRuntimePlatformArgs', 'TaskDefinitionRuntimePlatformArgsDict']] runtime_platform: The operating system that your tasks definitions run on.
|
|
662
662
|
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: The metadata that you apply to the task definition to help you categorize and organize them. Each tag consists of a key and an optional value. You define both of them.
|
|
663
663
|
The following basic restrictions apply to tags:
|
|
664
664
|
+ Maximum number of tags per resource - 50
|
|
@@ -1077,7 +1077,7 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
1077
1077
|
The process namespace to use for the containers in the task. The valid values are ``host`` or ``task``. On Fargate for Linux containers, the only valid value is ``task``. For example, monitoring sidecars might need ``pidMode`` to access information about other containers running in the same task.
|
|
1078
1078
|
If ``host`` is specified, all containers within the tasks that specified the ``host`` PID mode on the same container instance share the same process namespace with the host Amazon EC2 instance.
|
|
1079
1079
|
If ``task`` is specified, all containers within the specified task share the same process namespace.
|
|
1080
|
-
If no value is specified, the default is a private namespace for each container.
|
|
1080
|
+
If no value is specified, the The default is a private namespace for each container.
|
|
1081
1081
|
If the ``host`` PID mode is used, there's a heightened risk of undesired process namespace exposure.
|
|
1082
1082
|
This parameter is not supported for Windows containers.
|
|
1083
1083
|
This parameter is only supported for tasks that are hosted on FARGATElong if the tasks are using platform version ``1.4.0`` or later (Linux). This isn't supported for Windows containers on Fargate.
|
|
@@ -1114,7 +1114,7 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
1114
1114
|
@pulumi.getter(name="runtimePlatform")
|
|
1115
1115
|
def runtime_platform(self) -> pulumi.Output[Optional['outputs.TaskDefinitionRuntimePlatform']]:
|
|
1116
1116
|
"""
|
|
1117
|
-
The operating system that your tasks definitions run on.
|
|
1117
|
+
The operating system that your tasks definitions run on.
|
|
1118
1118
|
"""
|
|
1119
1119
|
return pulumi.get(self, "runtime_platform")
|
|
1120
1120
|
|
|
@@ -2523,8 +2523,17 @@ class ListenerRuleRewriteConfigObjectArgs:
|
|
|
2523
2523
|
|
|
2524
2524
|
if not MYPY:
|
|
2525
2525
|
class ListenerRuleRewriteConfigArgsDict(TypedDict):
|
|
2526
|
+
"""
|
|
2527
|
+
Information about a rewrite transform. This transform matches a pattern and replaces it with the specified string.
|
|
2528
|
+
"""
|
|
2526
2529
|
regex: pulumi.Input[_builtins.str]
|
|
2530
|
+
"""
|
|
2531
|
+
The regular expression to match in the input string. The maximum length of the string is 1,024 characters.
|
|
2532
|
+
"""
|
|
2527
2533
|
replace: pulumi.Input[_builtins.str]
|
|
2534
|
+
"""
|
|
2535
|
+
The replacement string to use when rewriting the matched input. The maximum length of the string is 1,024 characters. You can specify capture groups in the regular expression (for example, $1 and $2).
|
|
2536
|
+
"""
|
|
2528
2537
|
elif False:
|
|
2529
2538
|
ListenerRuleRewriteConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
2530
2539
|
|
|
@@ -2533,12 +2542,20 @@ class ListenerRuleRewriteConfigArgs:
|
|
|
2533
2542
|
def __init__(__self__, *,
|
|
2534
2543
|
regex: pulumi.Input[_builtins.str],
|
|
2535
2544
|
replace: pulumi.Input[_builtins.str]):
|
|
2545
|
+
"""
|
|
2546
|
+
Information about a rewrite transform. This transform matches a pattern and replaces it with the specified string.
|
|
2547
|
+
:param pulumi.Input[_builtins.str] regex: The regular expression to match in the input string. The maximum length of the string is 1,024 characters.
|
|
2548
|
+
:param pulumi.Input[_builtins.str] replace: The replacement string to use when rewriting the matched input. The maximum length of the string is 1,024 characters. You can specify capture groups in the regular expression (for example, $1 and $2).
|
|
2549
|
+
"""
|
|
2536
2550
|
pulumi.set(__self__, "regex", regex)
|
|
2537
2551
|
pulumi.set(__self__, "replace", replace)
|
|
2538
2552
|
|
|
2539
2553
|
@_builtins.property
|
|
2540
2554
|
@pulumi.getter
|
|
2541
2555
|
def regex(self) -> pulumi.Input[_builtins.str]:
|
|
2556
|
+
"""
|
|
2557
|
+
The regular expression to match in the input string. The maximum length of the string is 1,024 characters.
|
|
2558
|
+
"""
|
|
2542
2559
|
return pulumi.get(self, "regex")
|
|
2543
2560
|
|
|
2544
2561
|
@regex.setter
|
|
@@ -2548,6 +2565,9 @@ class ListenerRuleRewriteConfigArgs:
|
|
|
2548
2565
|
@_builtins.property
|
|
2549
2566
|
@pulumi.getter
|
|
2550
2567
|
def replace(self) -> pulumi.Input[_builtins.str]:
|
|
2568
|
+
"""
|
|
2569
|
+
The replacement string to use when rewriting the matched input. The maximum length of the string is 1,024 characters. You can specify capture groups in the regular expression (for example, $1 and $2).
|
|
2570
|
+
"""
|
|
2551
2571
|
return pulumi.get(self, "replace")
|
|
2552
2572
|
|
|
2553
2573
|
@replace.setter
|
|
@@ -2592,7 +2612,7 @@ if not MYPY:
|
|
|
2592
2612
|
"""
|
|
2593
2613
|
regex_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
2594
2614
|
"""
|
|
2595
|
-
The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when
|
|
2615
|
+
The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when ``Field`` is ``http-header``, ``host-header``, or ``path-pattern``.
|
|
2596
2616
|
"""
|
|
2597
2617
|
source_ip_config: NotRequired[pulumi.Input['ListenerRuleSourceIpConfigArgsDict']]
|
|
2598
2618
|
"""
|
|
@@ -2643,7 +2663,7 @@ class ListenerRuleRuleConditionArgs:
|
|
|
2643
2663
|
:param pulumi.Input['ListenerRuleHttpRequestMethodConfigArgs'] http_request_method_config: Information for an HTTP method condition. Specify only when ``Field`` is ``http-request-method``.
|
|
2644
2664
|
:param pulumi.Input['ListenerRulePathPatternConfigArgs'] path_pattern_config: Information for a path pattern condition. Specify only when ``Field`` is ``path-pattern``.
|
|
2645
2665
|
:param pulumi.Input['ListenerRuleQueryStringConfigArgs'] query_string_config: Information for a query string condition. Specify only when ``Field`` is ``query-string``.
|
|
2646
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] regex_values: The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when
|
|
2666
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] regex_values: The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when ``Field`` is ``http-header``, ``host-header``, or ``path-pattern``.
|
|
2647
2667
|
:param pulumi.Input['ListenerRuleSourceIpConfigArgs'] source_ip_config: Information for a source IP condition. Specify only when ``Field`` is ``source-ip``.
|
|
2648
2668
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The condition value. Specify only when ``Field`` is ``host-header`` or ``path-pattern``. Alternatively, to specify multiple host names or multiple path patterns, use ``HostHeaderConfig`` or ``PathPatternConfig``.
|
|
2649
2669
|
If ``Field`` is ``host-header`` and you're not using ``HostHeaderConfig``, you can specify a single host name (for example, my.example.com). A host name is case insensitive, can be up to 128 characters in length, and can contain any of the following characters.
|
|
@@ -2760,7 +2780,7 @@ class ListenerRuleRuleConditionArgs:
|
|
|
2760
2780
|
@pulumi.getter(name="regexValues")
|
|
2761
2781
|
def regex_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
2762
2782
|
"""
|
|
2763
|
-
The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when
|
|
2783
|
+
The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when ``Field`` is ``http-header``, ``host-header``, or ``path-pattern``.
|
|
2764
2784
|
"""
|
|
2765
2785
|
return pulumi.get(self, "regex_values")
|
|
2766
2786
|
|