pulumi-aws 7.15.0__py3-none-any.whl → 7.16.0__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/__init__.py +80 -0
- pulumi_aws/alb/listener.py +7 -7
- pulumi_aws/alb/target_group.py +7 -7
- pulumi_aws/alb/target_group_attachment.py +83 -0
- pulumi_aws/apigateway/domain_name.py +86 -7
- pulumi_aws/apigateway/get_domain_name.py +15 -1
- pulumi_aws/apigateway/integration.py +48 -8
- pulumi_aws/athena/_inputs.py +412 -5
- pulumi_aws/athena/outputs.py +342 -2
- pulumi_aws/backup/global_settings.py +15 -7
- pulumi_aws/bedrock/agentcore_memory_strategy.py +8 -0
- pulumi_aws/cleanrooms/collaboration.py +26 -6
- pulumi_aws/cloudfront/__init__.py +6 -0
- pulumi_aws/cloudfront/_inputs.py +3601 -478
- pulumi_aws/cloudfront/connection_function.py +658 -0
- pulumi_aws/cloudfront/connection_group.py +649 -0
- pulumi_aws/cloudfront/distribution.py +142 -0
- pulumi_aws/cloudfront/distribution_tenant.py +857 -0
- pulumi_aws/cloudfront/get_connection_group.py +249 -0
- pulumi_aws/cloudfront/get_distribution_tenant.py +279 -0
- pulumi_aws/cloudfront/multitenant_distribution.py +1181 -0
- pulumi_aws/cloudfront/outputs.py +3034 -376
- pulumi_aws/cloudwatch/log_subscription_filter.py +136 -42
- pulumi_aws/directconnect/gateway.py +78 -3
- pulumi_aws/directconnect/get_gateway.py +24 -4
- pulumi_aws/dlm/_inputs.py +3 -3
- pulumi_aws/dlm/outputs.py +2 -2
- pulumi_aws/dynamodb/__init__.py +1 -0
- pulumi_aws/dynamodb/_inputs.py +370 -0
- pulumi_aws/dynamodb/global_secondary_index.py +666 -0
- pulumi_aws/dynamodb/outputs.py +315 -0
- pulumi_aws/dynamodb/table.py +9 -1
- pulumi_aws/ec2/_inputs.py +44 -4
- pulumi_aws/ec2/get_vpc_endpoint.py +24 -4
- pulumi_aws/ec2/outputs.py +54 -4
- pulumi_aws/ecr/__init__.py +1 -0
- pulumi_aws/ecr/_inputs.py +58 -22
- pulumi_aws/ecr/get_repository_creation_template.py +1 -1
- pulumi_aws/ecr/lifecycle_policy.py +152 -64
- pulumi_aws/ecr/outputs.py +37 -15
- pulumi_aws/ecr/pull_time_update_exclusion.py +363 -0
- pulumi_aws/ecr/repository_creation_template.py +7 -7
- pulumi_aws/ecs/_inputs.py +20 -0
- pulumi_aws/ecs/outputs.py +14 -0
- pulumi_aws/ecs/task_definition.py +28 -28
- pulumi_aws/elasticache/replication_group.py +7 -7
- pulumi_aws/fsx/ontap_file_system.py +14 -0
- pulumi_aws/glue/resource_policy.py +4 -4
- pulumi_aws/guardduty/_inputs.py +41 -1
- pulumi_aws/guardduty/outputs.py +27 -1
- pulumi_aws/iam/get_saml_provider.py +15 -1
- pulumi_aws/iam/outbound_web_identity_federation.py +0 -4
- pulumi_aws/iam/policy.py +47 -0
- pulumi_aws/iam/saml_provider.py +28 -0
- pulumi_aws/iam/virtual_mfa_device.py +66 -38
- pulumi_aws/imagebuilder/_inputs.py +87 -0
- pulumi_aws/imagebuilder/image.py +47 -0
- pulumi_aws/imagebuilder/image_pipeline.py +47 -0
- pulumi_aws/imagebuilder/outputs.py +87 -0
- pulumi_aws/kms/grant.py +18 -18
- pulumi_aws/lambda_/_inputs.py +24 -4
- pulumi_aws/lambda_/event_source_mapping.py +2 -0
- pulumi_aws/lambda_/function.py +28 -0
- pulumi_aws/lambda_/function_url.py +4 -0
- pulumi_aws/lambda_/get_function.py +15 -1
- pulumi_aws/lambda_/outputs.py +17 -3
- pulumi_aws/lambda_/permission.py +47 -0
- pulumi_aws/lb/listener.py +7 -7
- pulumi_aws/lb/target_group.py +7 -7
- pulumi_aws/lb/target_group_attachment.py +83 -0
- pulumi_aws/networkfirewall/_inputs.py +3 -3
- pulumi_aws/networkfirewall/outputs.py +2 -2
- pulumi_aws/networkfirewall/vpc_endpoint_association.py +2 -2
- pulumi_aws/networkmanager/vpc_attachment.py +7 -7
- pulumi_aws/opensearchingest/pipeline.py +47 -0
- pulumi_aws/organizations/__init__.py +1 -0
- pulumi_aws/organizations/tag.py +292 -0
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/rds/cluster.py +21 -21
- pulumi_aws/rds/get_proxy.py +29 -1
- pulumi_aws/rds/proxy.py +94 -0
- pulumi_aws/rds/proxy_default_target_group.py +0 -76
- pulumi_aws/rds/proxy_target.py +0 -80
- pulumi_aws/redshift/__init__.py +1 -0
- pulumi_aws/redshift/_inputs.py +329 -0
- pulumi_aws/redshift/idc_application.py +687 -0
- pulumi_aws/redshift/outputs.py +265 -0
- pulumi_aws/route53/get_resolver_firewall_rules.py +9 -0
- pulumi_aws/route53/get_resolver_rule.py +19 -4
- pulumi_aws/route53/outputs.py +108 -1
- pulumi_aws/route53/resolver_firewall_rule.py +199 -32
- pulumi_aws/secretsmanager/__init__.py +1 -0
- pulumi_aws/secretsmanager/tag.py +333 -0
- pulumi_aws/sesv2/__init__.py +1 -0
- pulumi_aws/sesv2/tenant.py +418 -0
- pulumi_aws/sfn/activity.py +0 -4
- pulumi_aws/sfn/alias.py +0 -4
- pulumi_aws/transfer/_inputs.py +126 -0
- pulumi_aws/transfer/outputs.py +97 -0
- pulumi_aws/transfer/web_app.py +54 -7
- pulumi_aws/vpclattice/service_network_resource_association.py +47 -0
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/RECORD +105 -93
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/top_level.txt +0 -0
pulumi_aws/ecs/outputs.py
CHANGED
|
@@ -428,6 +428,8 @@ class CapacityProviderManagedInstancesProviderInstanceLaunchTemplate(dict):
|
|
|
428
428
|
suggest = "ec2_instance_profile_arn"
|
|
429
429
|
elif key == "networkConfiguration":
|
|
430
430
|
suggest = "network_configuration"
|
|
431
|
+
elif key == "capacityOptionType":
|
|
432
|
+
suggest = "capacity_option_type"
|
|
431
433
|
elif key == "instanceRequirements":
|
|
432
434
|
suggest = "instance_requirements"
|
|
433
435
|
elif key == "storageConfiguration":
|
|
@@ -447,18 +449,22 @@ class CapacityProviderManagedInstancesProviderInstanceLaunchTemplate(dict):
|
|
|
447
449
|
def __init__(__self__, *,
|
|
448
450
|
ec2_instance_profile_arn: _builtins.str,
|
|
449
451
|
network_configuration: 'outputs.CapacityProviderManagedInstancesProviderInstanceLaunchTemplateNetworkConfiguration',
|
|
452
|
+
capacity_option_type: Optional[_builtins.str] = None,
|
|
450
453
|
instance_requirements: Optional['outputs.CapacityProviderManagedInstancesProviderInstanceLaunchTemplateInstanceRequirements'] = None,
|
|
451
454
|
monitoring: Optional[_builtins.str] = None,
|
|
452
455
|
storage_configuration: Optional['outputs.CapacityProviderManagedInstancesProviderInstanceLaunchTemplateStorageConfiguration'] = None):
|
|
453
456
|
"""
|
|
454
457
|
:param _builtins.str ec2_instance_profile_arn: The Amazon Resource Name (ARN) of the instance profile that Amazon ECS applies to Amazon ECS Managed Instances. This instance profile must include the necessary permissions for your tasks to access AWS services and resources. For more information, see [Amazon ECS instance profile for Managed Instances](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/instance_IAM_role.html) in the Amazon ECS Developer Guide.
|
|
455
458
|
:param 'CapacityProviderManagedInstancesProviderInstanceLaunchTemplateNetworkConfigurationArgs' network_configuration: The network configuration for Amazon ECS Managed Instances. This specifies the subnets and security groups that instances use for network connectivity. Detailed below.
|
|
459
|
+
:param _builtins.str capacity_option_type: The purchasing option for the EC2 instances used in the capacity provider. Determines whether to use On-Demand or Spot instances. Valid values are `ON_DEMAND` and `SPOT`. Defaults to `ON_DEMAND` when not specified. Changing this value will trigger replacement of the capacity provider. For more information, see [Amazon EC2 billing and purchasing options](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-purchasing-options.html) in the Amazon EC2 User Guide.
|
|
456
460
|
:param 'CapacityProviderManagedInstancesProviderInstanceLaunchTemplateInstanceRequirementsArgs' instance_requirements: The instance requirements. You can specify the instance types and instance requirements such as vCPU count, memory, network performance, and accelerator specifications. Amazon ECS automatically selects the instances that match the specified criteria. Detailed below.
|
|
457
461
|
:param _builtins.str monitoring: CloudWatch provides two categories of monitoring: basic monitoring and detailed monitoring. By default, your managed instance is configured for basic monitoring. You can optionally enable detailed monitoring to help you more quickly identify and act on operational issues. You can enable or turn off detailed monitoring at launch or when the managed instance is running or stopped. For more information, see [Detailed monitoring for Amazon ECS Managed Instances](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-metrics.html) in the Amazon ECS Developer Guide. Valid values are `BASIC` and `DETAILED`.
|
|
458
462
|
:param 'CapacityProviderManagedInstancesProviderInstanceLaunchTemplateStorageConfigurationArgs' storage_configuration: The storage configuration for Amazon ECS Managed Instances. This defines the root volume size and type for the instances. Detailed below.
|
|
459
463
|
"""
|
|
460
464
|
pulumi.set(__self__, "ec2_instance_profile_arn", ec2_instance_profile_arn)
|
|
461
465
|
pulumi.set(__self__, "network_configuration", network_configuration)
|
|
466
|
+
if capacity_option_type is not None:
|
|
467
|
+
pulumi.set(__self__, "capacity_option_type", capacity_option_type)
|
|
462
468
|
if instance_requirements is not None:
|
|
463
469
|
pulumi.set(__self__, "instance_requirements", instance_requirements)
|
|
464
470
|
if monitoring is not None:
|
|
@@ -482,6 +488,14 @@ class CapacityProviderManagedInstancesProviderInstanceLaunchTemplate(dict):
|
|
|
482
488
|
"""
|
|
483
489
|
return pulumi.get(self, "network_configuration")
|
|
484
490
|
|
|
491
|
+
@_builtins.property
|
|
492
|
+
@pulumi.getter(name="capacityOptionType")
|
|
493
|
+
def capacity_option_type(self) -> Optional[_builtins.str]:
|
|
494
|
+
"""
|
|
495
|
+
The purchasing option for the EC2 instances used in the capacity provider. Determines whether to use On-Demand or Spot instances. Valid values are `ON_DEMAND` and `SPOT`. Defaults to `ON_DEMAND` when not specified. Changing this value will trigger replacement of the capacity provider. For more information, see [Amazon EC2 billing and purchasing options](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-purchasing-options.html) in the Amazon EC2 User Guide.
|
|
496
|
+
"""
|
|
497
|
+
return pulumi.get(self, "capacity_option_type")
|
|
498
|
+
|
|
485
499
|
@_builtins.property
|
|
486
500
|
@pulumi.getter(name="instanceRequirements")
|
|
487
501
|
def instance_requirements(self) -> Optional['outputs.CapacityProviderManagedInstancesProviderInstanceLaunchTemplateInstanceRequirements']:
|
|
@@ -51,14 +51,14 @@ class TaskDefinitionArgs:
|
|
|
51
51
|
:param pulumi.Input[_builtins.bool] enable_fault_injection: Enables fault injection and allows for fault injection requests to be accepted from the task's containers. Default is `false`.
|
|
52
52
|
:param pulumi.Input['TaskDefinitionEphemeralStorageArgs'] ephemeral_storage: The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on AWS Fargate. See Ephemeral Storage.
|
|
53
53
|
:param pulumi.Input[_builtins.str] execution_role_arn: ARN of the task execution role that the Amazon ECS container agent and the Docker daemon can assume.
|
|
54
|
-
:param pulumi.Input[_builtins.str] ipc_mode: IPC resource namespace to be used for the containers in the task
|
|
54
|
+
:param pulumi.Input[_builtins.str] ipc_mode: IPC resource namespace to be used for the containers in the task. Valid values: `host`, `task`, `none`.
|
|
55
55
|
:param pulumi.Input[_builtins.str] memory: Amount (in MiB) of memory used by the task. If the `requires_compatibilities` is `FARGATE` this field is required.
|
|
56
|
-
:param pulumi.Input[_builtins.str] network_mode: Docker networking mode to use for the containers in the task. Valid values
|
|
57
|
-
:param pulumi.Input[_builtins.str] pid_mode: Process namespace to use for the containers in the task.
|
|
56
|
+
:param pulumi.Input[_builtins.str] network_mode: Docker networking mode to use for the containers in the task. Valid values: `awsvpc`, `bridge`, `host`, and `none`.
|
|
57
|
+
:param pulumi.Input[_builtins.str] pid_mode: Process namespace to use for the containers in the task. Valid values: host`, `task`.
|
|
58
58
|
:param pulumi.Input[Sequence[pulumi.Input['TaskDefinitionPlacementConstraintArgs']]] placement_constraints: Configuration block for rules that are taken into consideration during task placement. Maximum number of `placement_constraints` is `10`. Detailed below.
|
|
59
59
|
:param pulumi.Input['TaskDefinitionProxyConfigurationArgs'] proxy_configuration: Configuration block for the App Mesh proxy. Detailed below.
|
|
60
60
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
61
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: Set of launch types required by the task.
|
|
61
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: Set of launch types required by the task. Valid values: `EC2`, `EXTERNAL`, `FARGATE`, `MANAGED_INSTANCES`.
|
|
62
62
|
:param pulumi.Input['TaskDefinitionRuntimePlatformArgs'] runtime_platform: Configuration block for runtime_platform that containers in your task may use.
|
|
63
63
|
:param pulumi.Input[_builtins.bool] skip_destroy: Whether to retain the old revision when the resource is destroyed or replacement is necessary. Default is `false`.
|
|
64
64
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
@@ -187,7 +187,7 @@ class TaskDefinitionArgs:
|
|
|
187
187
|
@pulumi.getter(name="ipcMode")
|
|
188
188
|
def ipc_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
189
189
|
"""
|
|
190
|
-
IPC resource namespace to be used for the containers in the task
|
|
190
|
+
IPC resource namespace to be used for the containers in the task. Valid values: `host`, `task`, `none`.
|
|
191
191
|
"""
|
|
192
192
|
return pulumi.get(self, "ipc_mode")
|
|
193
193
|
|
|
@@ -211,7 +211,7 @@ class TaskDefinitionArgs:
|
|
|
211
211
|
@pulumi.getter(name="networkMode")
|
|
212
212
|
def network_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
213
213
|
"""
|
|
214
|
-
Docker networking mode to use for the containers in the task. Valid values
|
|
214
|
+
Docker networking mode to use for the containers in the task. Valid values: `awsvpc`, `bridge`, `host`, and `none`.
|
|
215
215
|
"""
|
|
216
216
|
return pulumi.get(self, "network_mode")
|
|
217
217
|
|
|
@@ -223,7 +223,7 @@ class TaskDefinitionArgs:
|
|
|
223
223
|
@pulumi.getter(name="pidMode")
|
|
224
224
|
def pid_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
225
225
|
"""
|
|
226
|
-
Process namespace to use for the containers in the task.
|
|
226
|
+
Process namespace to use for the containers in the task. Valid values: host`, `task`.
|
|
227
227
|
"""
|
|
228
228
|
return pulumi.get(self, "pid_mode")
|
|
229
229
|
|
|
@@ -271,7 +271,7 @@ class TaskDefinitionArgs:
|
|
|
271
271
|
@pulumi.getter(name="requiresCompatibilities")
|
|
272
272
|
def requires_compatibilities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
273
273
|
"""
|
|
274
|
-
Set of launch types required by the task.
|
|
274
|
+
Set of launch types required by the task. Valid values: `EC2`, `EXTERNAL`, `FARGATE`, `MANAGED_INSTANCES`.
|
|
275
275
|
"""
|
|
276
276
|
return pulumi.get(self, "requires_compatibilities")
|
|
277
277
|
|
|
@@ -395,14 +395,14 @@ class _TaskDefinitionState:
|
|
|
395
395
|
:param pulumi.Input[_builtins.str] family: A unique name for your task definition.
|
|
396
396
|
|
|
397
397
|
The following arguments are optional:
|
|
398
|
-
:param pulumi.Input[_builtins.str] ipc_mode: IPC resource namespace to be used for the containers in the task
|
|
398
|
+
:param pulumi.Input[_builtins.str] ipc_mode: IPC resource namespace to be used for the containers in the task. Valid values: `host`, `task`, `none`.
|
|
399
399
|
:param pulumi.Input[_builtins.str] memory: Amount (in MiB) of memory used by the task. If the `requires_compatibilities` is `FARGATE` this field is required.
|
|
400
|
-
:param pulumi.Input[_builtins.str] network_mode: Docker networking mode to use for the containers in the task. Valid values
|
|
401
|
-
:param pulumi.Input[_builtins.str] pid_mode: Process namespace to use for the containers in the task.
|
|
400
|
+
:param pulumi.Input[_builtins.str] network_mode: Docker networking mode to use for the containers in the task. Valid values: `awsvpc`, `bridge`, `host`, and `none`.
|
|
401
|
+
:param pulumi.Input[_builtins.str] pid_mode: Process namespace to use for the containers in the task. Valid values: host`, `task`.
|
|
402
402
|
:param pulumi.Input[Sequence[pulumi.Input['TaskDefinitionPlacementConstraintArgs']]] placement_constraints: Configuration block for rules that are taken into consideration during task placement. Maximum number of `placement_constraints` is `10`. Detailed below.
|
|
403
403
|
:param pulumi.Input['TaskDefinitionProxyConfigurationArgs'] proxy_configuration: Configuration block for the App Mesh proxy. Detailed below.
|
|
404
404
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
405
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: Set of launch types required by the task.
|
|
405
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: Set of launch types required by the task. Valid values: `EC2`, `EXTERNAL`, `FARGATE`, `MANAGED_INSTANCES`.
|
|
406
406
|
:param pulumi.Input[_builtins.int] revision: Revision of the task in a particular family.
|
|
407
407
|
:param pulumi.Input['TaskDefinitionRuntimePlatformArgs'] runtime_platform: Configuration block for runtime_platform that containers in your task may use.
|
|
408
408
|
:param pulumi.Input[_builtins.bool] skip_destroy: Whether to retain the old revision when the resource is destroyed or replacement is necessary. Default is `false`.
|
|
@@ -567,7 +567,7 @@ class _TaskDefinitionState:
|
|
|
567
567
|
@pulumi.getter(name="ipcMode")
|
|
568
568
|
def ipc_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
569
569
|
"""
|
|
570
|
-
IPC resource namespace to be used for the containers in the task
|
|
570
|
+
IPC resource namespace to be used for the containers in the task. Valid values: `host`, `task`, `none`.
|
|
571
571
|
"""
|
|
572
572
|
return pulumi.get(self, "ipc_mode")
|
|
573
573
|
|
|
@@ -591,7 +591,7 @@ class _TaskDefinitionState:
|
|
|
591
591
|
@pulumi.getter(name="networkMode")
|
|
592
592
|
def network_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
593
593
|
"""
|
|
594
|
-
Docker networking mode to use for the containers in the task. Valid values
|
|
594
|
+
Docker networking mode to use for the containers in the task. Valid values: `awsvpc`, `bridge`, `host`, and `none`.
|
|
595
595
|
"""
|
|
596
596
|
return pulumi.get(self, "network_mode")
|
|
597
597
|
|
|
@@ -603,7 +603,7 @@ class _TaskDefinitionState:
|
|
|
603
603
|
@pulumi.getter(name="pidMode")
|
|
604
604
|
def pid_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
605
605
|
"""
|
|
606
|
-
Process namespace to use for the containers in the task.
|
|
606
|
+
Process namespace to use for the containers in the task. Valid values: host`, `task`.
|
|
607
607
|
"""
|
|
608
608
|
return pulumi.get(self, "pid_mode")
|
|
609
609
|
|
|
@@ -651,7 +651,7 @@ class _TaskDefinitionState:
|
|
|
651
651
|
@pulumi.getter(name="requiresCompatibilities")
|
|
652
652
|
def requires_compatibilities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
653
653
|
"""
|
|
654
|
-
Set of launch types required by the task.
|
|
654
|
+
Set of launch types required by the task. Valid values: `EC2`, `EXTERNAL`, `FARGATE`, `MANAGED_INSTANCES`.
|
|
655
655
|
"""
|
|
656
656
|
return pulumi.get(self, "requires_compatibilities")
|
|
657
657
|
|
|
@@ -1015,14 +1015,14 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
1015
1015
|
:param pulumi.Input[_builtins.str] family: A unique name for your task definition.
|
|
1016
1016
|
|
|
1017
1017
|
The following arguments are optional:
|
|
1018
|
-
:param pulumi.Input[_builtins.str] ipc_mode: IPC resource namespace to be used for the containers in the task
|
|
1018
|
+
:param pulumi.Input[_builtins.str] ipc_mode: IPC resource namespace to be used for the containers in the task. Valid values: `host`, `task`, `none`.
|
|
1019
1019
|
:param pulumi.Input[_builtins.str] memory: Amount (in MiB) of memory used by the task. If the `requires_compatibilities` is `FARGATE` this field is required.
|
|
1020
|
-
:param pulumi.Input[_builtins.str] network_mode: Docker networking mode to use for the containers in the task. Valid values
|
|
1021
|
-
:param pulumi.Input[_builtins.str] pid_mode: Process namespace to use for the containers in the task.
|
|
1020
|
+
:param pulumi.Input[_builtins.str] network_mode: Docker networking mode to use for the containers in the task. Valid values: `awsvpc`, `bridge`, `host`, and `none`.
|
|
1021
|
+
:param pulumi.Input[_builtins.str] pid_mode: Process namespace to use for the containers in the task. Valid values: host`, `task`.
|
|
1022
1022
|
:param pulumi.Input[Sequence[pulumi.Input[Union['TaskDefinitionPlacementConstraintArgs', 'TaskDefinitionPlacementConstraintArgsDict']]]] placement_constraints: Configuration block for rules that are taken into consideration during task placement. Maximum number of `placement_constraints` is `10`. Detailed below.
|
|
1023
1023
|
:param pulumi.Input[Union['TaskDefinitionProxyConfigurationArgs', 'TaskDefinitionProxyConfigurationArgsDict']] proxy_configuration: Configuration block for the App Mesh proxy. Detailed below.
|
|
1024
1024
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
1025
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: Set of launch types required by the task.
|
|
1025
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: Set of launch types required by the task. Valid values: `EC2`, `EXTERNAL`, `FARGATE`, `MANAGED_INSTANCES`.
|
|
1026
1026
|
:param pulumi.Input[Union['TaskDefinitionRuntimePlatformArgs', 'TaskDefinitionRuntimePlatformArgsDict']] runtime_platform: Configuration block for runtime_platform that containers in your task may use.
|
|
1027
1027
|
:param pulumi.Input[_builtins.bool] skip_destroy: Whether to retain the old revision when the resource is destroyed or replacement is necessary. Default is `false`.
|
|
1028
1028
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
@@ -1381,14 +1381,14 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
1381
1381
|
:param pulumi.Input[_builtins.str] family: A unique name for your task definition.
|
|
1382
1382
|
|
|
1383
1383
|
The following arguments are optional:
|
|
1384
|
-
:param pulumi.Input[_builtins.str] ipc_mode: IPC resource namespace to be used for the containers in the task
|
|
1384
|
+
:param pulumi.Input[_builtins.str] ipc_mode: IPC resource namespace to be used for the containers in the task. Valid values: `host`, `task`, `none`.
|
|
1385
1385
|
:param pulumi.Input[_builtins.str] memory: Amount (in MiB) of memory used by the task. If the `requires_compatibilities` is `FARGATE` this field is required.
|
|
1386
|
-
:param pulumi.Input[_builtins.str] network_mode: Docker networking mode to use for the containers in the task. Valid values
|
|
1387
|
-
:param pulumi.Input[_builtins.str] pid_mode: Process namespace to use for the containers in the task.
|
|
1386
|
+
:param pulumi.Input[_builtins.str] network_mode: Docker networking mode to use for the containers in the task. Valid values: `awsvpc`, `bridge`, `host`, and `none`.
|
|
1387
|
+
:param pulumi.Input[_builtins.str] pid_mode: Process namespace to use for the containers in the task. Valid values: host`, `task`.
|
|
1388
1388
|
:param pulumi.Input[Sequence[pulumi.Input[Union['TaskDefinitionPlacementConstraintArgs', 'TaskDefinitionPlacementConstraintArgsDict']]]] placement_constraints: Configuration block for rules that are taken into consideration during task placement. Maximum number of `placement_constraints` is `10`. Detailed below.
|
|
1389
1389
|
:param pulumi.Input[Union['TaskDefinitionProxyConfigurationArgs', 'TaskDefinitionProxyConfigurationArgsDict']] proxy_configuration: Configuration block for the App Mesh proxy. Detailed below.
|
|
1390
1390
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
1391
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: Set of launch types required by the task.
|
|
1391
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] requires_compatibilities: Set of launch types required by the task. Valid values: `EC2`, `EXTERNAL`, `FARGATE`, `MANAGED_INSTANCES`.
|
|
1392
1392
|
:param pulumi.Input[_builtins.int] revision: Revision of the task in a particular family.
|
|
1393
1393
|
:param pulumi.Input[Union['TaskDefinitionRuntimePlatformArgs', 'TaskDefinitionRuntimePlatformArgsDict']] runtime_platform: Configuration block for runtime_platform that containers in your task may use.
|
|
1394
1394
|
:param pulumi.Input[_builtins.bool] skip_destroy: Whether to retain the old revision when the resource is destroyed or replacement is necessary. Default is `false`.
|
|
@@ -1502,7 +1502,7 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
1502
1502
|
@pulumi.getter(name="ipcMode")
|
|
1503
1503
|
def ipc_mode(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1504
1504
|
"""
|
|
1505
|
-
IPC resource namespace to be used for the containers in the task
|
|
1505
|
+
IPC resource namespace to be used for the containers in the task. Valid values: `host`, `task`, `none`.
|
|
1506
1506
|
"""
|
|
1507
1507
|
return pulumi.get(self, "ipc_mode")
|
|
1508
1508
|
|
|
@@ -1518,7 +1518,7 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
1518
1518
|
@pulumi.getter(name="networkMode")
|
|
1519
1519
|
def network_mode(self) -> pulumi.Output[_builtins.str]:
|
|
1520
1520
|
"""
|
|
1521
|
-
Docker networking mode to use for the containers in the task. Valid values
|
|
1521
|
+
Docker networking mode to use for the containers in the task. Valid values: `awsvpc`, `bridge`, `host`, and `none`.
|
|
1522
1522
|
"""
|
|
1523
1523
|
return pulumi.get(self, "network_mode")
|
|
1524
1524
|
|
|
@@ -1526,7 +1526,7 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
1526
1526
|
@pulumi.getter(name="pidMode")
|
|
1527
1527
|
def pid_mode(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1528
1528
|
"""
|
|
1529
|
-
Process namespace to use for the containers in the task.
|
|
1529
|
+
Process namespace to use for the containers in the task. Valid values: host`, `task`.
|
|
1530
1530
|
"""
|
|
1531
1531
|
return pulumi.get(self, "pid_mode")
|
|
1532
1532
|
|
|
@@ -1558,7 +1558,7 @@ class TaskDefinition(pulumi.CustomResource):
|
|
|
1558
1558
|
@pulumi.getter(name="requiresCompatibilities")
|
|
1559
1559
|
def requires_compatibilities(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
|
1560
1560
|
"""
|
|
1561
|
-
Set of launch types required by the task.
|
|
1561
|
+
Set of launch types required by the task. Valid values: `EC2`, `EXTERNAL`, `FARGATE`, `MANAGED_INSTANCES`.
|
|
1562
1562
|
"""
|
|
1563
1563
|
return pulumi.get(self, "requires_compatibilities")
|
|
1564
1564
|
|
|
@@ -70,7 +70,7 @@ class ReplicationGroupArgs:
|
|
|
70
70
|
When `engine` is `redis`, default is `false`.
|
|
71
71
|
When `engine` is `valkey`, default is `true`.
|
|
72
72
|
:param pulumi.Input[_builtins.str] auth_token: Password used to access a password protected server. Can be specified only if `transit_encryption_enabled = true`.
|
|
73
|
-
:param pulumi.Input[_builtins.str] auth_token_update_strategy: Strategy
|
|
73
|
+
:param pulumi.Input[_builtins.str] auth_token_update_strategy: Strategy used when modifying `auth_token` on an existing replication group. Not used during initial create. Valid values are `SET`, `ROTATE`, and `DELETE`. If omitted during an auth token change, AWS defaults to `ROTATE`.
|
|
74
74
|
:param pulumi.Input[_builtins.bool] auto_minor_version_upgrade: Specifies whether minor version engine upgrades will be applied automatically to the underlying Cache Cluster instances during the maintenance window.
|
|
75
75
|
Only supported for engine types `"redis"` and `"valkey"` and if the engine version is 6 or higher.
|
|
76
76
|
Defaults to `true`.
|
|
@@ -275,7 +275,7 @@ class ReplicationGroupArgs:
|
|
|
275
275
|
@pulumi.getter(name="authTokenUpdateStrategy")
|
|
276
276
|
def auth_token_update_strategy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
277
277
|
"""
|
|
278
|
-
Strategy
|
|
278
|
+
Strategy used when modifying `auth_token` on an existing replication group. Not used during initial create. Valid values are `SET`, `ROTATE`, and `DELETE`. If omitted during an auth token change, AWS defaults to `ROTATE`.
|
|
279
279
|
"""
|
|
280
280
|
return pulumi.get(self, "auth_token_update_strategy")
|
|
281
281
|
|
|
@@ -807,7 +807,7 @@ class _ReplicationGroupState:
|
|
|
807
807
|
When `engine` is `redis`, default is `false`.
|
|
808
808
|
When `engine` is `valkey`, default is `true`.
|
|
809
809
|
:param pulumi.Input[_builtins.str] auth_token: Password used to access a password protected server. Can be specified only if `transit_encryption_enabled = true`.
|
|
810
|
-
:param pulumi.Input[_builtins.str] auth_token_update_strategy: Strategy
|
|
810
|
+
:param pulumi.Input[_builtins.str] auth_token_update_strategy: Strategy used when modifying `auth_token` on an existing replication group. Not used during initial create. Valid values are `SET`, `ROTATE`, and `DELETE`. If omitted during an auth token change, AWS defaults to `ROTATE`.
|
|
811
811
|
:param pulumi.Input[_builtins.bool] auto_minor_version_upgrade: Specifies whether minor version engine upgrades will be applied automatically to the underlying Cache Cluster instances during the maintenance window.
|
|
812
812
|
Only supported for engine types `"redis"` and `"valkey"` and if the engine version is 6 or higher.
|
|
813
813
|
Defaults to `true`.
|
|
@@ -1037,7 +1037,7 @@ class _ReplicationGroupState:
|
|
|
1037
1037
|
@pulumi.getter(name="authTokenUpdateStrategy")
|
|
1038
1038
|
def auth_token_update_strategy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1039
1039
|
"""
|
|
1040
|
-
Strategy
|
|
1040
|
+
Strategy used when modifying `auth_token` on an existing replication group. Not used during initial create. Valid values are `SET`, `ROTATE`, and `DELETE`. If omitted during an auth token change, AWS defaults to `ROTATE`.
|
|
1041
1041
|
"""
|
|
1042
1042
|
return pulumi.get(self, "auth_token_update_strategy")
|
|
1043
1043
|
|
|
@@ -1880,7 +1880,7 @@ class ReplicationGroup(pulumi.CustomResource):
|
|
|
1880
1880
|
When `engine` is `redis`, default is `false`.
|
|
1881
1881
|
When `engine` is `valkey`, default is `true`.
|
|
1882
1882
|
:param pulumi.Input[_builtins.str] auth_token: Password used to access a password protected server. Can be specified only if `transit_encryption_enabled = true`.
|
|
1883
|
-
:param pulumi.Input[_builtins.str] auth_token_update_strategy: Strategy
|
|
1883
|
+
:param pulumi.Input[_builtins.str] auth_token_update_strategy: Strategy used when modifying `auth_token` on an existing replication group. Not used during initial create. Valid values are `SET`, `ROTATE`, and `DELETE`. If omitted during an auth token change, AWS defaults to `ROTATE`.
|
|
1884
1884
|
:param pulumi.Input[_builtins.bool] auto_minor_version_upgrade: Specifies whether minor version engine upgrades will be applied automatically to the underlying Cache Cluster instances during the maintenance window.
|
|
1885
1885
|
Only supported for engine types `"redis"` and `"valkey"` and if the engine version is 6 or higher.
|
|
1886
1886
|
Defaults to `true`.
|
|
@@ -2366,7 +2366,7 @@ class ReplicationGroup(pulumi.CustomResource):
|
|
|
2366
2366
|
When `engine` is `redis`, default is `false`.
|
|
2367
2367
|
When `engine` is `valkey`, default is `true`.
|
|
2368
2368
|
:param pulumi.Input[_builtins.str] auth_token: Password used to access a password protected server. Can be specified only if `transit_encryption_enabled = true`.
|
|
2369
|
-
:param pulumi.Input[_builtins.str] auth_token_update_strategy: Strategy
|
|
2369
|
+
:param pulumi.Input[_builtins.str] auth_token_update_strategy: Strategy used when modifying `auth_token` on an existing replication group. Not used during initial create. Valid values are `SET`, `ROTATE`, and `DELETE`. If omitted during an auth token change, AWS defaults to `ROTATE`.
|
|
2370
2370
|
:param pulumi.Input[_builtins.bool] auto_minor_version_upgrade: Specifies whether minor version engine upgrades will be applied automatically to the underlying Cache Cluster instances during the maintenance window.
|
|
2371
2371
|
Only supported for engine types `"redis"` and `"valkey"` and if the engine version is 6 or higher.
|
|
2372
2372
|
Defaults to `true`.
|
|
@@ -2536,7 +2536,7 @@ class ReplicationGroup(pulumi.CustomResource):
|
|
|
2536
2536
|
@pulumi.getter(name="authTokenUpdateStrategy")
|
|
2537
2537
|
def auth_token_update_strategy(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
2538
2538
|
"""
|
|
2539
|
-
Strategy
|
|
2539
|
+
Strategy used when modifying `auth_token` on an existing replication group. Not used during initial create. Valid values are `SET`, `ROTATE`, and `DELETE`. If omitted during an auth token change, AWS defaults to `ROTATE`.
|
|
2540
2540
|
"""
|
|
2541
2541
|
return pulumi.get(self, "auth_token_update_strategy")
|
|
2542
2542
|
|
|
@@ -50,6 +50,8 @@ class OntapFileSystemArgs:
|
|
|
50
50
|
:param pulumi.Input[_builtins.str] daily_automatic_backup_start_time: A recurring daily time, in the format HH:MM. HH is the zero-padded hour of the day (0-23), and MM is the zero-padded minute of the hour. For example, 05:00 specifies 5 AM daily. Requires `automatic_backup_retention_days` to be set.
|
|
51
51
|
:param pulumi.Input['OntapFileSystemDiskIopsConfigurationArgs'] disk_iops_configuration: The SSD IOPS configuration for the Amazon FSx for NetApp ONTAP file system. See Disk Iops Configuration below.
|
|
52
52
|
:param pulumi.Input[_builtins.str] endpoint_ip_address_range: Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range.
|
|
53
|
+
|
|
54
|
+
> **Note:** The 198.19.* range is also used by AWS services such as WorkSpaces and AppStream 2.0 for their [management network interfaces](https://docs.aws.amazon.com/appstream2/latest/developerguide/management_ports.html).
|
|
53
55
|
:param pulumi.Input[_builtins.str] fsx_admin_password: The ONTAP administrative password for the fsxadmin user that you can use to administer your file system using the ONTAP CLI and REST API.
|
|
54
56
|
:param pulumi.Input[_builtins.int] ha_pairs: The number of ha_pairs to deploy for the file system. Valid value is 1 for `SINGLE_AZ_1` or `MULTI_AZ_1` and `MULTI_AZ_2`. Valid values are 1 through 12 for `SINGLE_AZ_2`.
|
|
55
57
|
:param pulumi.Input[_builtins.str] kms_key_id: ARN for the KMS Key to encrypt the file system at rest, Defaults to an AWS managed KMS Key.
|
|
@@ -186,6 +188,8 @@ class OntapFileSystemArgs:
|
|
|
186
188
|
def endpoint_ip_address_range(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
187
189
|
"""
|
|
188
190
|
Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range.
|
|
191
|
+
|
|
192
|
+
> **Note:** The 198.19.* range is also used by AWS services such as WorkSpaces and AppStream 2.0 for their [management network interfaces](https://docs.aws.amazon.com/appstream2/latest/developerguide/management_ports.html).
|
|
189
193
|
"""
|
|
190
194
|
return pulumi.get(self, "endpoint_ip_address_range")
|
|
191
195
|
|
|
@@ -364,6 +368,8 @@ class _OntapFileSystemState:
|
|
|
364
368
|
:param pulumi.Input['OntapFileSystemDiskIopsConfigurationArgs'] disk_iops_configuration: The SSD IOPS configuration for the Amazon FSx for NetApp ONTAP file system. See Disk Iops Configuration below.
|
|
365
369
|
:param pulumi.Input[_builtins.str] dns_name: The Domain Name Service (DNS) name for the file system. You can mount your file system using its DNS name.
|
|
366
370
|
:param pulumi.Input[_builtins.str] endpoint_ip_address_range: Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range.
|
|
371
|
+
|
|
372
|
+
> **Note:** The 198.19.* range is also used by AWS services such as WorkSpaces and AppStream 2.0 for their [management network interfaces](https://docs.aws.amazon.com/appstream2/latest/developerguide/management_ports.html).
|
|
367
373
|
:param pulumi.Input[Sequence[pulumi.Input['OntapFileSystemEndpointArgs']]] endpoints: The endpoints that are used to access data or to manage the file system using the NetApp ONTAP CLI, REST API, or NetApp SnapMirror. See Endpoints below.
|
|
368
374
|
:param pulumi.Input[_builtins.str] fsx_admin_password: The ONTAP administrative password for the fsxadmin user that you can use to administer your file system using the ONTAP CLI and REST API.
|
|
369
375
|
:param pulumi.Input[_builtins.int] ha_pairs: The number of ha_pairs to deploy for the file system. Valid value is 1 for `SINGLE_AZ_1` or `MULTI_AZ_1` and `MULTI_AZ_2`. Valid values are 1 through 12 for `SINGLE_AZ_2`.
|
|
@@ -514,6 +520,8 @@ class _OntapFileSystemState:
|
|
|
514
520
|
def endpoint_ip_address_range(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
515
521
|
"""
|
|
516
522
|
Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range.
|
|
523
|
+
|
|
524
|
+
> **Note:** The 198.19.* range is also used by AWS services such as WorkSpaces and AppStream 2.0 for their [management network interfaces](https://docs.aws.amazon.com/appstream2/latest/developerguide/management_ports.html).
|
|
517
525
|
"""
|
|
518
526
|
return pulumi.get(self, "endpoint_ip_address_range")
|
|
519
527
|
|
|
@@ -855,6 +863,8 @@ class OntapFileSystem(pulumi.CustomResource):
|
|
|
855
863
|
:param pulumi.Input[_builtins.str] deployment_type: The filesystem deployment type. Supports `MULTI_AZ_1`, `MULTI_AZ_2`, `SINGLE_AZ_1`, and `SINGLE_AZ_2`.
|
|
856
864
|
:param pulumi.Input[Union['OntapFileSystemDiskIopsConfigurationArgs', 'OntapFileSystemDiskIopsConfigurationArgsDict']] disk_iops_configuration: The SSD IOPS configuration for the Amazon FSx for NetApp ONTAP file system. See Disk Iops Configuration below.
|
|
857
865
|
:param pulumi.Input[_builtins.str] endpoint_ip_address_range: Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range.
|
|
866
|
+
|
|
867
|
+
> **Note:** The 198.19.* range is also used by AWS services such as WorkSpaces and AppStream 2.0 for their [management network interfaces](https://docs.aws.amazon.com/appstream2/latest/developerguide/management_ports.html).
|
|
858
868
|
:param pulumi.Input[_builtins.str] fsx_admin_password: The ONTAP administrative password for the fsxadmin user that you can use to administer your file system using the ONTAP CLI and REST API.
|
|
859
869
|
:param pulumi.Input[_builtins.int] ha_pairs: The number of ha_pairs to deploy for the file system. Valid value is 1 for `SINGLE_AZ_1` or `MULTI_AZ_1` and `MULTI_AZ_2`. Valid values are 1 through 12 for `SINGLE_AZ_2`.
|
|
860
870
|
:param pulumi.Input[_builtins.str] kms_key_id: ARN for the KMS Key to encrypt the file system at rest, Defaults to an AWS managed KMS Key.
|
|
@@ -1077,6 +1087,8 @@ class OntapFileSystem(pulumi.CustomResource):
|
|
|
1077
1087
|
:param pulumi.Input[Union['OntapFileSystemDiskIopsConfigurationArgs', 'OntapFileSystemDiskIopsConfigurationArgsDict']] disk_iops_configuration: The SSD IOPS configuration for the Amazon FSx for NetApp ONTAP file system. See Disk Iops Configuration below.
|
|
1078
1088
|
:param pulumi.Input[_builtins.str] dns_name: The Domain Name Service (DNS) name for the file system. You can mount your file system using its DNS name.
|
|
1079
1089
|
:param pulumi.Input[_builtins.str] endpoint_ip_address_range: Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range.
|
|
1090
|
+
|
|
1091
|
+
> **Note:** The 198.19.* range is also used by AWS services such as WorkSpaces and AppStream 2.0 for their [management network interfaces](https://docs.aws.amazon.com/appstream2/latest/developerguide/management_ports.html).
|
|
1080
1092
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OntapFileSystemEndpointArgs', 'OntapFileSystemEndpointArgsDict']]]] endpoints: The endpoints that are used to access data or to manage the file system using the NetApp ONTAP CLI, REST API, or NetApp SnapMirror. See Endpoints below.
|
|
1081
1093
|
:param pulumi.Input[_builtins.str] fsx_admin_password: The ONTAP administrative password for the fsxadmin user that you can use to administer your file system using the ONTAP CLI and REST API.
|
|
1082
1094
|
:param pulumi.Input[_builtins.int] ha_pairs: The number of ha_pairs to deploy for the file system. Valid value is 1 for `SINGLE_AZ_1` or `MULTI_AZ_1` and `MULTI_AZ_2`. Valid values are 1 through 12 for `SINGLE_AZ_2`.
|
|
@@ -1182,6 +1194,8 @@ class OntapFileSystem(pulumi.CustomResource):
|
|
|
1182
1194
|
def endpoint_ip_address_range(self) -> pulumi.Output[_builtins.str]:
|
|
1183
1195
|
"""
|
|
1184
1196
|
Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range.
|
|
1197
|
+
|
|
1198
|
+
> **Note:** The 198.19.* range is also used by AWS services such as WorkSpaces and AppStream 2.0 for their [management network interfaces](https://docs.aws.amazon.com/appstream2/latest/developerguide/management_ports.html).
|
|
1185
1199
|
"""
|
|
1186
1200
|
return pulumi.get(self, "endpoint_ip_address_range")
|
|
1187
1201
|
|
|
@@ -162,10 +162,10 @@ class ResourcePolicy(pulumi.CustomResource):
|
|
|
162
162
|
|
|
163
163
|
## Import
|
|
164
164
|
|
|
165
|
-
Using `pulumi import`, import Glue Resource Policy using the
|
|
165
|
+
Using `pulumi import`, import Glue Resource Policy using the region where the resource resides. For example:
|
|
166
166
|
|
|
167
167
|
```sh
|
|
168
|
-
$ pulumi import aws:glue/resourcePolicy:ResourcePolicy Test
|
|
168
|
+
$ pulumi import aws:glue/resourcePolicy:ResourcePolicy Test us-east-1
|
|
169
169
|
```
|
|
170
170
|
|
|
171
171
|
:param str resource_name: The name of the resource.
|
|
@@ -205,10 +205,10 @@ class ResourcePolicy(pulumi.CustomResource):
|
|
|
205
205
|
|
|
206
206
|
## Import
|
|
207
207
|
|
|
208
|
-
Using `pulumi import`, import Glue Resource Policy using the
|
|
208
|
+
Using `pulumi import`, import Glue Resource Policy using the region where the resource resides. For example:
|
|
209
209
|
|
|
210
210
|
```sh
|
|
211
|
-
$ pulumi import aws:glue/resourcePolicy:ResourcePolicy Test
|
|
211
|
+
$ pulumi import aws:glue/resourcePolicy:ResourcePolicy Test us-east-1
|
|
212
212
|
```
|
|
213
213
|
|
|
214
214
|
:param str resource_name: The name of the resource.
|
pulumi_aws/guardduty/_inputs.py
CHANGED
|
@@ -448,10 +448,18 @@ if not MYPY:
|
|
|
448
448
|
"""
|
|
449
449
|
A value to be evaluated. Accepts either an integer or a date in [RFC 3339 format](https://tools.ietf.org/html/rfc3339#section-5.8).
|
|
450
450
|
"""
|
|
451
|
+
matches: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
452
|
+
"""
|
|
453
|
+
List of string values to be evaluated as matching conditions.
|
|
454
|
+
"""
|
|
451
455
|
not_equals: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
452
456
|
"""
|
|
453
457
|
List of string values to be evaluated.
|
|
454
458
|
"""
|
|
459
|
+
not_matches: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
460
|
+
"""
|
|
461
|
+
List of string values to be evaluated as non-matching conditions.
|
|
462
|
+
"""
|
|
455
463
|
elif False:
|
|
456
464
|
FilterFindingCriteriaCriterionArgsDict: TypeAlias = Mapping[str, Any]
|
|
457
465
|
|
|
@@ -464,7 +472,9 @@ class FilterFindingCriteriaCriterionArgs:
|
|
|
464
472
|
greater_than_or_equal: Optional[pulumi.Input[_builtins.str]] = None,
|
|
465
473
|
less_than: Optional[pulumi.Input[_builtins.str]] = None,
|
|
466
474
|
less_than_or_equal: Optional[pulumi.Input[_builtins.str]] = None,
|
|
467
|
-
|
|
475
|
+
matches: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
476
|
+
not_equals: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
477
|
+
not_matches: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
468
478
|
"""
|
|
469
479
|
:param pulumi.Input[_builtins.str] field: The name of the field to be evaluated. The full list of field names can be found in [AWS documentation](https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_filter-findings.html#filter_criteria).
|
|
470
480
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] equals: List of string values to be evaluated.
|
|
@@ -472,7 +482,9 @@ class FilterFindingCriteriaCriterionArgs:
|
|
|
472
482
|
:param pulumi.Input[_builtins.str] greater_than_or_equal: A value to be evaluated. Accepts either an integer or a date in [RFC 3339 format](https://tools.ietf.org/html/rfc3339#section-5.8).
|
|
473
483
|
:param pulumi.Input[_builtins.str] less_than: A value to be evaluated. Accepts either an integer or a date in [RFC 3339 format](https://tools.ietf.org/html/rfc3339#section-5.8).
|
|
474
484
|
:param pulumi.Input[_builtins.str] less_than_or_equal: A value to be evaluated. Accepts either an integer or a date in [RFC 3339 format](https://tools.ietf.org/html/rfc3339#section-5.8).
|
|
485
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] matches: List of string values to be evaluated as matching conditions.
|
|
475
486
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] not_equals: List of string values to be evaluated.
|
|
487
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] not_matches: List of string values to be evaluated as non-matching conditions.
|
|
476
488
|
"""
|
|
477
489
|
pulumi.set(__self__, "field", field)
|
|
478
490
|
if equals is not None:
|
|
@@ -485,8 +497,12 @@ class FilterFindingCriteriaCriterionArgs:
|
|
|
485
497
|
pulumi.set(__self__, "less_than", less_than)
|
|
486
498
|
if less_than_or_equal is not None:
|
|
487
499
|
pulumi.set(__self__, "less_than_or_equal", less_than_or_equal)
|
|
500
|
+
if matches is not None:
|
|
501
|
+
pulumi.set(__self__, "matches", matches)
|
|
488
502
|
if not_equals is not None:
|
|
489
503
|
pulumi.set(__self__, "not_equals", not_equals)
|
|
504
|
+
if not_matches is not None:
|
|
505
|
+
pulumi.set(__self__, "not_matches", not_matches)
|
|
490
506
|
|
|
491
507
|
@_builtins.property
|
|
492
508
|
@pulumi.getter
|
|
@@ -560,6 +576,18 @@ class FilterFindingCriteriaCriterionArgs:
|
|
|
560
576
|
def less_than_or_equal(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
561
577
|
pulumi.set(self, "less_than_or_equal", value)
|
|
562
578
|
|
|
579
|
+
@_builtins.property
|
|
580
|
+
@pulumi.getter
|
|
581
|
+
def matches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
582
|
+
"""
|
|
583
|
+
List of string values to be evaluated as matching conditions.
|
|
584
|
+
"""
|
|
585
|
+
return pulumi.get(self, "matches")
|
|
586
|
+
|
|
587
|
+
@matches.setter
|
|
588
|
+
def matches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
589
|
+
pulumi.set(self, "matches", value)
|
|
590
|
+
|
|
563
591
|
@_builtins.property
|
|
564
592
|
@pulumi.getter(name="notEquals")
|
|
565
593
|
def not_equals(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
@@ -572,6 +600,18 @@ class FilterFindingCriteriaCriterionArgs:
|
|
|
572
600
|
def not_equals(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
573
601
|
pulumi.set(self, "not_equals", value)
|
|
574
602
|
|
|
603
|
+
@_builtins.property
|
|
604
|
+
@pulumi.getter(name="notMatches")
|
|
605
|
+
def not_matches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
606
|
+
"""
|
|
607
|
+
List of string values to be evaluated as non-matching conditions.
|
|
608
|
+
"""
|
|
609
|
+
return pulumi.get(self, "not_matches")
|
|
610
|
+
|
|
611
|
+
@not_matches.setter
|
|
612
|
+
def not_matches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
613
|
+
pulumi.set(self, "not_matches", value)
|
|
614
|
+
|
|
575
615
|
|
|
576
616
|
if not MYPY:
|
|
577
617
|
class MalwareProtectionPlanActionArgsDict(TypedDict):
|
pulumi_aws/guardduty/outputs.py
CHANGED
|
@@ -338,6 +338,8 @@ class FilterFindingCriteriaCriterion(dict):
|
|
|
338
338
|
suggest = "less_than_or_equal"
|
|
339
339
|
elif key == "notEquals":
|
|
340
340
|
suggest = "not_equals"
|
|
341
|
+
elif key == "notMatches":
|
|
342
|
+
suggest = "not_matches"
|
|
341
343
|
|
|
342
344
|
if suggest:
|
|
343
345
|
pulumi.log.warn(f"Key '{key}' not found in FilterFindingCriteriaCriterion. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -357,7 +359,9 @@ class FilterFindingCriteriaCriterion(dict):
|
|
|
357
359
|
greater_than_or_equal: Optional[_builtins.str] = None,
|
|
358
360
|
less_than: Optional[_builtins.str] = None,
|
|
359
361
|
less_than_or_equal: Optional[_builtins.str] = None,
|
|
360
|
-
|
|
362
|
+
matches: Optional[Sequence[_builtins.str]] = None,
|
|
363
|
+
not_equals: Optional[Sequence[_builtins.str]] = None,
|
|
364
|
+
not_matches: Optional[Sequence[_builtins.str]] = None):
|
|
361
365
|
"""
|
|
362
366
|
:param _builtins.str field: The name of the field to be evaluated. The full list of field names can be found in [AWS documentation](https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_filter-findings.html#filter_criteria).
|
|
363
367
|
:param Sequence[_builtins.str] equals: List of string values to be evaluated.
|
|
@@ -365,7 +369,9 @@ class FilterFindingCriteriaCriterion(dict):
|
|
|
365
369
|
:param _builtins.str greater_than_or_equal: A value to be evaluated. Accepts either an integer or a date in [RFC 3339 format](https://tools.ietf.org/html/rfc3339#section-5.8).
|
|
366
370
|
:param _builtins.str less_than: A value to be evaluated. Accepts either an integer or a date in [RFC 3339 format](https://tools.ietf.org/html/rfc3339#section-5.8).
|
|
367
371
|
:param _builtins.str less_than_or_equal: A value to be evaluated. Accepts either an integer or a date in [RFC 3339 format](https://tools.ietf.org/html/rfc3339#section-5.8).
|
|
372
|
+
:param Sequence[_builtins.str] matches: List of string values to be evaluated as matching conditions.
|
|
368
373
|
:param Sequence[_builtins.str] not_equals: List of string values to be evaluated.
|
|
374
|
+
:param Sequence[_builtins.str] not_matches: List of string values to be evaluated as non-matching conditions.
|
|
369
375
|
"""
|
|
370
376
|
pulumi.set(__self__, "field", field)
|
|
371
377
|
if equals is not None:
|
|
@@ -378,8 +384,12 @@ class FilterFindingCriteriaCriterion(dict):
|
|
|
378
384
|
pulumi.set(__self__, "less_than", less_than)
|
|
379
385
|
if less_than_or_equal is not None:
|
|
380
386
|
pulumi.set(__self__, "less_than_or_equal", less_than_or_equal)
|
|
387
|
+
if matches is not None:
|
|
388
|
+
pulumi.set(__self__, "matches", matches)
|
|
381
389
|
if not_equals is not None:
|
|
382
390
|
pulumi.set(__self__, "not_equals", not_equals)
|
|
391
|
+
if not_matches is not None:
|
|
392
|
+
pulumi.set(__self__, "not_matches", not_matches)
|
|
383
393
|
|
|
384
394
|
@_builtins.property
|
|
385
395
|
@pulumi.getter
|
|
@@ -429,6 +439,14 @@ class FilterFindingCriteriaCriterion(dict):
|
|
|
429
439
|
"""
|
|
430
440
|
return pulumi.get(self, "less_than_or_equal")
|
|
431
441
|
|
|
442
|
+
@_builtins.property
|
|
443
|
+
@pulumi.getter
|
|
444
|
+
def matches(self) -> Optional[Sequence[_builtins.str]]:
|
|
445
|
+
"""
|
|
446
|
+
List of string values to be evaluated as matching conditions.
|
|
447
|
+
"""
|
|
448
|
+
return pulumi.get(self, "matches")
|
|
449
|
+
|
|
432
450
|
@_builtins.property
|
|
433
451
|
@pulumi.getter(name="notEquals")
|
|
434
452
|
def not_equals(self) -> Optional[Sequence[_builtins.str]]:
|
|
@@ -437,6 +455,14 @@ class FilterFindingCriteriaCriterion(dict):
|
|
|
437
455
|
"""
|
|
438
456
|
return pulumi.get(self, "not_equals")
|
|
439
457
|
|
|
458
|
+
@_builtins.property
|
|
459
|
+
@pulumi.getter(name="notMatches")
|
|
460
|
+
def not_matches(self) -> Optional[Sequence[_builtins.str]]:
|
|
461
|
+
"""
|
|
462
|
+
List of string values to be evaluated as non-matching conditions.
|
|
463
|
+
"""
|
|
464
|
+
return pulumi.get(self, "not_matches")
|
|
465
|
+
|
|
440
466
|
|
|
441
467
|
@pulumi.output_type
|
|
442
468
|
class MalwareProtectionPlanAction(dict):
|
|
@@ -26,7 +26,7 @@ class GetSamlProviderResult:
|
|
|
26
26
|
"""
|
|
27
27
|
A collection of values returned by getSamlProvider.
|
|
28
28
|
"""
|
|
29
|
-
def __init__(__self__, arn=None, create_date=None, id=None, name=None, saml_metadata_document=None, tags=None, valid_until=None):
|
|
29
|
+
def __init__(__self__, arn=None, create_date=None, id=None, name=None, saml_metadata_document=None, saml_provider_uuid=None, tags=None, valid_until=None):
|
|
30
30
|
if arn and not isinstance(arn, str):
|
|
31
31
|
raise TypeError("Expected argument 'arn' to be a str")
|
|
32
32
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -42,6 +42,9 @@ class GetSamlProviderResult:
|
|
|
42
42
|
if saml_metadata_document and not isinstance(saml_metadata_document, str):
|
|
43
43
|
raise TypeError("Expected argument 'saml_metadata_document' to be a str")
|
|
44
44
|
pulumi.set(__self__, "saml_metadata_document", saml_metadata_document)
|
|
45
|
+
if saml_provider_uuid and not isinstance(saml_provider_uuid, str):
|
|
46
|
+
raise TypeError("Expected argument 'saml_provider_uuid' to be a str")
|
|
47
|
+
pulumi.set(__self__, "saml_provider_uuid", saml_provider_uuid)
|
|
45
48
|
if tags and not isinstance(tags, dict):
|
|
46
49
|
raise TypeError("Expected argument 'tags' to be a dict")
|
|
47
50
|
pulumi.set(__self__, "tags", tags)
|
|
@@ -86,6 +89,14 @@ class GetSamlProviderResult:
|
|
|
86
89
|
"""
|
|
87
90
|
return pulumi.get(self, "saml_metadata_document")
|
|
88
91
|
|
|
92
|
+
@_builtins.property
|
|
93
|
+
@pulumi.getter(name="samlProviderUuid")
|
|
94
|
+
def saml_provider_uuid(self) -> _builtins.str:
|
|
95
|
+
"""
|
|
96
|
+
Unique identifier assigned to the SAML provider.
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "saml_provider_uuid")
|
|
99
|
+
|
|
89
100
|
@_builtins.property
|
|
90
101
|
@pulumi.getter
|
|
91
102
|
def tags(self) -> Mapping[str, _builtins.str]:
|
|
@@ -114,6 +125,7 @@ class AwaitableGetSamlProviderResult(GetSamlProviderResult):
|
|
|
114
125
|
id=self.id,
|
|
115
126
|
name=self.name,
|
|
116
127
|
saml_metadata_document=self.saml_metadata_document,
|
|
128
|
+
saml_provider_uuid=self.saml_provider_uuid,
|
|
117
129
|
tags=self.tags,
|
|
118
130
|
valid_until=self.valid_until)
|
|
119
131
|
|
|
@@ -151,6 +163,7 @@ def get_saml_provider(arn: Optional[_builtins.str] = None,
|
|
|
151
163
|
id=pulumi.get(__ret__, 'id'),
|
|
152
164
|
name=pulumi.get(__ret__, 'name'),
|
|
153
165
|
saml_metadata_document=pulumi.get(__ret__, 'saml_metadata_document'),
|
|
166
|
+
saml_provider_uuid=pulumi.get(__ret__, 'saml_provider_uuid'),
|
|
154
167
|
tags=pulumi.get(__ret__, 'tags'),
|
|
155
168
|
valid_until=pulumi.get(__ret__, 'valid_until'))
|
|
156
169
|
def get_saml_provider_output(arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -185,5 +198,6 @@ def get_saml_provider_output(arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
185
198
|
id=pulumi.get(__response__, 'id'),
|
|
186
199
|
name=pulumi.get(__response__, 'name'),
|
|
187
200
|
saml_metadata_document=pulumi.get(__response__, 'saml_metadata_document'),
|
|
201
|
+
saml_provider_uuid=pulumi.get(__response__, 'saml_provider_uuid'),
|
|
188
202
|
tags=pulumi.get(__response__, 'tags'),
|
|
189
203
|
valid_until=pulumi.get(__response__, 'valid_until')))
|