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/rds/cluster.py
CHANGED
|
@@ -121,11 +121,11 @@ class ClusterArgs:
|
|
|
121
121
|
:param pulumi.Input[_builtins.str] domain_iam_role_name: The name of the IAM role to be used when making API calls to the Directory Service.
|
|
122
122
|
:param pulumi.Input[_builtins.bool] enable_global_write_forwarding: Whether cluster should forward writes to an associated global cluster. Applied to secondary clusters to enable them to forward writes to an `rds.GlobalCluster`'s primary cluster. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-write-forwarding.html) for more information.
|
|
123
123
|
:param pulumi.Input[_builtins.bool] enable_http_endpoint: Enable HTTP endpoint (data API). Only valid for some combinations of `engine_mode`, `engine` and `engine_version` and only available in some regions. See the [Region and version availability](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html#data-api.regions) section of the documentation. This option also does not work with any of these options specified: `snapshot_identifier`, `replication_source_identifier`, `s3_import`.
|
|
124
|
-
:param pulumi.Input[_builtins.bool] enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances
|
|
124
|
+
:param pulumi.Input[_builtins.bool] enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-write-forwarding.html) for more information. **NOTE:** Local write forwarding requires Aurora MySQL version 3.04 or higher.
|
|
125
125
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enabled_cloudwatch_logs_exports: Set of log types to export to cloudwatch. If omitted, no logs will be exported. The following log types are supported: `audit`, `error`, `general`, `iam-db-auth-error`, `instance`, `postgresql` (PostgreSQL), `slowquery`.
|
|
126
126
|
:param pulumi.Input[_builtins.str] engine_lifecycle_support: The life cycle type for this DB instance. This setting is valid for cluster types Aurora DB clusters and Multi-AZ DB clusters. Valid values are `open-source-rds-extended-support`, `open-source-rds-extended-support-disabled`. Default value is `open-source-rds-extended-support`. [Using Amazon RDS Extended Support]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
127
127
|
:param pulumi.Input[Union[_builtins.str, 'EngineMode']] engine_mode: Database engine mode. Valid values: `global` (only valid for Aurora MySQL 1.21 and earlier), `parallelquery`, `provisioned`, `serverless`. Defaults to: `provisioned`. Specify an empty value (`""`) for no engine mode. See the [RDS User Guide](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html) for limitations when using `serverless`.
|
|
128
|
-
:param pulumi.Input[_builtins.str] engine_version: Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`,
|
|
128
|
+
:param pulumi.Input[_builtins.str] engine_version: Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`, see Attribute Reference below.
|
|
129
129
|
:param pulumi.Input[_builtins.str] final_snapshot_identifier: Name of your final DB snapshot when this DB cluster is deleted. If omitted, no final snapshot will be made.
|
|
130
130
|
:param pulumi.Input[_builtins.str] global_cluster_identifier: Global cluster identifier specified on `rds.GlobalCluster`.
|
|
131
131
|
:param pulumi.Input[_builtins.bool] iam_database_authentication_enabled: Specifies whether or not mappings of AWS Identity and Access Management (IAM) accounts to database accounts is enabled. Please see [AWS Documentation](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html) for availability and limitations.
|
|
@@ -139,7 +139,7 @@ class ClusterArgs:
|
|
|
139
139
|
:param pulumi.Input[_builtins.int] master_password_wo_version: Used together with `master_password_wo` to trigger an update. Increment this value when an update to the `master_password_wo` is required.
|
|
140
140
|
:param pulumi.Input[_builtins.str] master_user_secret_kms_key_id: Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If not specified, the default KMS key for your Amazon Web Services account is used.
|
|
141
141
|
:param pulumi.Input[_builtins.str] master_username: Username for the master DB user. Please refer to the [RDS Naming Constraints](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html#RDS_Limits.Constraints). This argument does not support in-place updates and cannot be changed during a restore from snapshot.
|
|
142
|
-
:param pulumi.Input[_builtins.int] monitoring_interval: Interval, in seconds,
|
|
142
|
+
:param pulumi.Input[_builtins.int] monitoring_interval: Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0. The default is 0. Valid Values: 0, 1, 5, 10, 15, 30, 60.
|
|
143
143
|
:param pulumi.Input[_builtins.str] monitoring_role_arn: ARN for the IAM role that permits RDS to send enhanced monitoring metrics to CloudWatch Logs. You can find more information on the [AWS Documentation](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole.html) what IAM permissions are needed to allow Enhanced Monitoring for RDS Clusters.
|
|
144
144
|
:param pulumi.Input[_builtins.str] network_type: Network type of the cluster. Valid values: `IPV4`, `DUAL`.
|
|
145
145
|
:param pulumi.Input[_builtins.bool] performance_insights_enabled: Enables Performance Insights.
|
|
@@ -619,7 +619,7 @@ class ClusterArgs:
|
|
|
619
619
|
@pulumi.getter(name="enableLocalWriteForwarding")
|
|
620
620
|
def enable_local_write_forwarding(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
621
621
|
"""
|
|
622
|
-
Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances
|
|
622
|
+
Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-write-forwarding.html) for more information. **NOTE:** Local write forwarding requires Aurora MySQL version 3.04 or higher.
|
|
623
623
|
"""
|
|
624
624
|
return pulumi.get(self, "enable_local_write_forwarding")
|
|
625
625
|
|
|
@@ -667,7 +667,7 @@ class ClusterArgs:
|
|
|
667
667
|
@pulumi.getter(name="engineVersion")
|
|
668
668
|
def engine_version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
669
669
|
"""
|
|
670
|
-
Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`,
|
|
670
|
+
Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`, see Attribute Reference below.
|
|
671
671
|
"""
|
|
672
672
|
return pulumi.get(self, "engine_version")
|
|
673
673
|
|
|
@@ -824,7 +824,7 @@ class ClusterArgs:
|
|
|
824
824
|
@pulumi.getter(name="monitoringInterval")
|
|
825
825
|
def monitoring_interval(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
826
826
|
"""
|
|
827
|
-
Interval, in seconds,
|
|
827
|
+
Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0. The default is 0. Valid Values: 0, 1, 5, 10, 15, 30, 60.
|
|
828
828
|
"""
|
|
829
829
|
return pulumi.get(self, "monitoring_interval")
|
|
830
830
|
|
|
@@ -1202,13 +1202,13 @@ class _ClusterState:
|
|
|
1202
1202
|
:param pulumi.Input[_builtins.str] domain_iam_role_name: The name of the IAM role to be used when making API calls to the Directory Service.
|
|
1203
1203
|
:param pulumi.Input[_builtins.bool] enable_global_write_forwarding: Whether cluster should forward writes to an associated global cluster. Applied to secondary clusters to enable them to forward writes to an `rds.GlobalCluster`'s primary cluster. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-write-forwarding.html) for more information.
|
|
1204
1204
|
:param pulumi.Input[_builtins.bool] enable_http_endpoint: Enable HTTP endpoint (data API). Only valid for some combinations of `engine_mode`, `engine` and `engine_version` and only available in some regions. See the [Region and version availability](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html#data-api.regions) section of the documentation. This option also does not work with any of these options specified: `snapshot_identifier`, `replication_source_identifier`, `s3_import`.
|
|
1205
|
-
:param pulumi.Input[_builtins.bool] enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances
|
|
1205
|
+
:param pulumi.Input[_builtins.bool] enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-write-forwarding.html) for more information. **NOTE:** Local write forwarding requires Aurora MySQL version 3.04 or higher.
|
|
1206
1206
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enabled_cloudwatch_logs_exports: Set of log types to export to cloudwatch. If omitted, no logs will be exported. The following log types are supported: `audit`, `error`, `general`, `iam-db-auth-error`, `instance`, `postgresql` (PostgreSQL), `slowquery`.
|
|
1207
1207
|
:param pulumi.Input[_builtins.str] endpoint: DNS address of the RDS instance
|
|
1208
1208
|
:param pulumi.Input[Union[_builtins.str, 'EngineType']] engine: Name of the database engine to be used for this DB cluster. Valid Values: `aurora-mysql`, `aurora-postgresql`, `mysql`, `postgres`. (Note that `mysql` and `postgres` are Multi-AZ RDS clusters).
|
|
1209
1209
|
:param pulumi.Input[_builtins.str] engine_lifecycle_support: The life cycle type for this DB instance. This setting is valid for cluster types Aurora DB clusters and Multi-AZ DB clusters. Valid values are `open-source-rds-extended-support`, `open-source-rds-extended-support-disabled`. Default value is `open-source-rds-extended-support`. [Using Amazon RDS Extended Support]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
1210
1210
|
:param pulumi.Input[Union[_builtins.str, 'EngineMode']] engine_mode: Database engine mode. Valid values: `global` (only valid for Aurora MySQL 1.21 and earlier), `parallelquery`, `provisioned`, `serverless`. Defaults to: `provisioned`. Specify an empty value (`""`) for no engine mode. See the [RDS User Guide](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html) for limitations when using `serverless`.
|
|
1211
|
-
:param pulumi.Input[_builtins.str] engine_version: Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`,
|
|
1211
|
+
:param pulumi.Input[_builtins.str] engine_version: Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`, see Attribute Reference below.
|
|
1212
1212
|
:param pulumi.Input[_builtins.str] engine_version_actual: Running version of the database.
|
|
1213
1213
|
:param pulumi.Input[_builtins.str] final_snapshot_identifier: Name of your final DB snapshot when this DB cluster is deleted. If omitted, no final snapshot will be made.
|
|
1214
1214
|
:param pulumi.Input[_builtins.str] global_cluster_identifier: Global cluster identifier specified on `rds.GlobalCluster`.
|
|
@@ -1225,7 +1225,7 @@ class _ClusterState:
|
|
|
1225
1225
|
:param pulumi.Input[_builtins.str] master_user_secret_kms_key_id: Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If not specified, the default KMS key for your Amazon Web Services account is used.
|
|
1226
1226
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterMasterUserSecretArgs']]] master_user_secrets: Block that specifies the master user secret. Only available when `manage_master_user_password` is set to true. Documented below.
|
|
1227
1227
|
:param pulumi.Input[_builtins.str] master_username: Username for the master DB user. Please refer to the [RDS Naming Constraints](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html#RDS_Limits.Constraints). This argument does not support in-place updates and cannot be changed during a restore from snapshot.
|
|
1228
|
-
:param pulumi.Input[_builtins.int] monitoring_interval: Interval, in seconds,
|
|
1228
|
+
:param pulumi.Input[_builtins.int] monitoring_interval: Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0. The default is 0. Valid Values: 0, 1, 5, 10, 15, 30, 60.
|
|
1229
1229
|
:param pulumi.Input[_builtins.str] monitoring_role_arn: ARN for the IAM role that permits RDS to send enhanced monitoring metrics to CloudWatch Logs. You can find more information on the [AWS Documentation](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole.html) what IAM permissions are needed to allow Enhanced Monitoring for RDS Clusters.
|
|
1230
1230
|
:param pulumi.Input[_builtins.str] network_type: Network type of the cluster. Valid values: `IPV4`, `DUAL`.
|
|
1231
1231
|
:param pulumi.Input[_builtins.bool] performance_insights_enabled: Enables Performance Insights.
|
|
@@ -1754,7 +1754,7 @@ class _ClusterState:
|
|
|
1754
1754
|
@pulumi.getter(name="enableLocalWriteForwarding")
|
|
1755
1755
|
def enable_local_write_forwarding(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1756
1756
|
"""
|
|
1757
|
-
Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances
|
|
1757
|
+
Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-write-forwarding.html) for more information. **NOTE:** Local write forwarding requires Aurora MySQL version 3.04 or higher.
|
|
1758
1758
|
"""
|
|
1759
1759
|
return pulumi.get(self, "enable_local_write_forwarding")
|
|
1760
1760
|
|
|
@@ -1826,7 +1826,7 @@ class _ClusterState:
|
|
|
1826
1826
|
@pulumi.getter(name="engineVersion")
|
|
1827
1827
|
def engine_version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1828
1828
|
"""
|
|
1829
|
-
Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`,
|
|
1829
|
+
Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`, see Attribute Reference below.
|
|
1830
1830
|
"""
|
|
1831
1831
|
return pulumi.get(self, "engine_version")
|
|
1832
1832
|
|
|
@@ -2019,7 +2019,7 @@ class _ClusterState:
|
|
|
2019
2019
|
@pulumi.getter(name="monitoringInterval")
|
|
2020
2020
|
def monitoring_interval(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
2021
2021
|
"""
|
|
2022
|
-
Interval, in seconds,
|
|
2022
|
+
Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0. The default is 0. Valid Values: 0, 1, 5, 10, 15, 30, 60.
|
|
2023
2023
|
"""
|
|
2024
2024
|
return pulumi.get(self, "monitoring_interval")
|
|
2025
2025
|
|
|
@@ -2629,12 +2629,12 @@ class Cluster(pulumi.CustomResource):
|
|
|
2629
2629
|
:param pulumi.Input[_builtins.str] domain_iam_role_name: The name of the IAM role to be used when making API calls to the Directory Service.
|
|
2630
2630
|
:param pulumi.Input[_builtins.bool] enable_global_write_forwarding: Whether cluster should forward writes to an associated global cluster. Applied to secondary clusters to enable them to forward writes to an `rds.GlobalCluster`'s primary cluster. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-write-forwarding.html) for more information.
|
|
2631
2631
|
:param pulumi.Input[_builtins.bool] enable_http_endpoint: Enable HTTP endpoint (data API). Only valid for some combinations of `engine_mode`, `engine` and `engine_version` and only available in some regions. See the [Region and version availability](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html#data-api.regions) section of the documentation. This option also does not work with any of these options specified: `snapshot_identifier`, `replication_source_identifier`, `s3_import`.
|
|
2632
|
-
:param pulumi.Input[_builtins.bool] enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances
|
|
2632
|
+
:param pulumi.Input[_builtins.bool] enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-write-forwarding.html) for more information. **NOTE:** Local write forwarding requires Aurora MySQL version 3.04 or higher.
|
|
2633
2633
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enabled_cloudwatch_logs_exports: Set of log types to export to cloudwatch. If omitted, no logs will be exported. The following log types are supported: `audit`, `error`, `general`, `iam-db-auth-error`, `instance`, `postgresql` (PostgreSQL), `slowquery`.
|
|
2634
2634
|
:param pulumi.Input[Union[_builtins.str, 'EngineType']] engine: Name of the database engine to be used for this DB cluster. Valid Values: `aurora-mysql`, `aurora-postgresql`, `mysql`, `postgres`. (Note that `mysql` and `postgres` are Multi-AZ RDS clusters).
|
|
2635
2635
|
:param pulumi.Input[_builtins.str] engine_lifecycle_support: The life cycle type for this DB instance. This setting is valid for cluster types Aurora DB clusters and Multi-AZ DB clusters. Valid values are `open-source-rds-extended-support`, `open-source-rds-extended-support-disabled`. Default value is `open-source-rds-extended-support`. [Using Amazon RDS Extended Support]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
2636
2636
|
:param pulumi.Input[Union[_builtins.str, 'EngineMode']] engine_mode: Database engine mode. Valid values: `global` (only valid for Aurora MySQL 1.21 and earlier), `parallelquery`, `provisioned`, `serverless`. Defaults to: `provisioned`. Specify an empty value (`""`) for no engine mode. See the [RDS User Guide](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html) for limitations when using `serverless`.
|
|
2637
|
-
:param pulumi.Input[_builtins.str] engine_version: Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`,
|
|
2637
|
+
:param pulumi.Input[_builtins.str] engine_version: Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`, see Attribute Reference below.
|
|
2638
2638
|
:param pulumi.Input[_builtins.str] final_snapshot_identifier: Name of your final DB snapshot when this DB cluster is deleted. If omitted, no final snapshot will be made.
|
|
2639
2639
|
:param pulumi.Input[_builtins.str] global_cluster_identifier: Global cluster identifier specified on `rds.GlobalCluster`.
|
|
2640
2640
|
:param pulumi.Input[_builtins.bool] iam_database_authentication_enabled: Specifies whether or not mappings of AWS Identity and Access Management (IAM) accounts to database accounts is enabled. Please see [AWS Documentation](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html) for availability and limitations.
|
|
@@ -2648,7 +2648,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
2648
2648
|
:param pulumi.Input[_builtins.int] master_password_wo_version: Used together with `master_password_wo` to trigger an update. Increment this value when an update to the `master_password_wo` is required.
|
|
2649
2649
|
:param pulumi.Input[_builtins.str] master_user_secret_kms_key_id: Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If not specified, the default KMS key for your Amazon Web Services account is used.
|
|
2650
2650
|
:param pulumi.Input[_builtins.str] master_username: Username for the master DB user. Please refer to the [RDS Naming Constraints](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html#RDS_Limits.Constraints). This argument does not support in-place updates and cannot be changed during a restore from snapshot.
|
|
2651
|
-
:param pulumi.Input[_builtins.int] monitoring_interval: Interval, in seconds,
|
|
2651
|
+
:param pulumi.Input[_builtins.int] monitoring_interval: Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0. The default is 0. Valid Values: 0, 1, 5, 10, 15, 30, 60.
|
|
2652
2652
|
:param pulumi.Input[_builtins.str] monitoring_role_arn: ARN for the IAM role that permits RDS to send enhanced monitoring metrics to CloudWatch Logs. You can find more information on the [AWS Documentation](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole.html) what IAM permissions are needed to allow Enhanced Monitoring for RDS Clusters.
|
|
2653
2653
|
:param pulumi.Input[_builtins.str] network_type: Network type of the cluster. Valid values: `IPV4`, `DUAL`.
|
|
2654
2654
|
:param pulumi.Input[_builtins.bool] performance_insights_enabled: Enables Performance Insights.
|
|
@@ -3180,13 +3180,13 @@ class Cluster(pulumi.CustomResource):
|
|
|
3180
3180
|
:param pulumi.Input[_builtins.str] domain_iam_role_name: The name of the IAM role to be used when making API calls to the Directory Service.
|
|
3181
3181
|
:param pulumi.Input[_builtins.bool] enable_global_write_forwarding: Whether cluster should forward writes to an associated global cluster. Applied to secondary clusters to enable them to forward writes to an `rds.GlobalCluster`'s primary cluster. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-write-forwarding.html) for more information.
|
|
3182
3182
|
:param pulumi.Input[_builtins.bool] enable_http_endpoint: Enable HTTP endpoint (data API). Only valid for some combinations of `engine_mode`, `engine` and `engine_version` and only available in some regions. See the [Region and version availability](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html#data-api.regions) section of the documentation. This option also does not work with any of these options specified: `snapshot_identifier`, `replication_source_identifier`, `s3_import`.
|
|
3183
|
-
:param pulumi.Input[_builtins.bool] enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances
|
|
3183
|
+
:param pulumi.Input[_builtins.bool] enable_local_write_forwarding: Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-write-forwarding.html) for more information. **NOTE:** Local write forwarding requires Aurora MySQL version 3.04 or higher.
|
|
3184
3184
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enabled_cloudwatch_logs_exports: Set of log types to export to cloudwatch. If omitted, no logs will be exported. The following log types are supported: `audit`, `error`, `general`, `iam-db-auth-error`, `instance`, `postgresql` (PostgreSQL), `slowquery`.
|
|
3185
3185
|
:param pulumi.Input[_builtins.str] endpoint: DNS address of the RDS instance
|
|
3186
3186
|
:param pulumi.Input[Union[_builtins.str, 'EngineType']] engine: Name of the database engine to be used for this DB cluster. Valid Values: `aurora-mysql`, `aurora-postgresql`, `mysql`, `postgres`. (Note that `mysql` and `postgres` are Multi-AZ RDS clusters).
|
|
3187
3187
|
:param pulumi.Input[_builtins.str] engine_lifecycle_support: The life cycle type for this DB instance. This setting is valid for cluster types Aurora DB clusters and Multi-AZ DB clusters. Valid values are `open-source-rds-extended-support`, `open-source-rds-extended-support-disabled`. Default value is `open-source-rds-extended-support`. [Using Amazon RDS Extended Support]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3188
3188
|
:param pulumi.Input[Union[_builtins.str, 'EngineMode']] engine_mode: Database engine mode. Valid values: `global` (only valid for Aurora MySQL 1.21 and earlier), `parallelquery`, `provisioned`, `serverless`. Defaults to: `provisioned`. Specify an empty value (`""`) for no engine mode. See the [RDS User Guide](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html) for limitations when using `serverless`.
|
|
3189
|
-
:param pulumi.Input[_builtins.str] engine_version: Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`,
|
|
3189
|
+
:param pulumi.Input[_builtins.str] engine_version: Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`, see Attribute Reference below.
|
|
3190
3190
|
:param pulumi.Input[_builtins.str] engine_version_actual: Running version of the database.
|
|
3191
3191
|
:param pulumi.Input[_builtins.str] final_snapshot_identifier: Name of your final DB snapshot when this DB cluster is deleted. If omitted, no final snapshot will be made.
|
|
3192
3192
|
:param pulumi.Input[_builtins.str] global_cluster_identifier: Global cluster identifier specified on `rds.GlobalCluster`.
|
|
@@ -3203,7 +3203,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
3203
3203
|
:param pulumi.Input[_builtins.str] master_user_secret_kms_key_id: Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If not specified, the default KMS key for your Amazon Web Services account is used.
|
|
3204
3204
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ClusterMasterUserSecretArgs', 'ClusterMasterUserSecretArgsDict']]]] master_user_secrets: Block that specifies the master user secret. Only available when `manage_master_user_password` is set to true. Documented below.
|
|
3205
3205
|
:param pulumi.Input[_builtins.str] master_username: Username for the master DB user. Please refer to the [RDS Naming Constraints](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html#RDS_Limits.Constraints). This argument does not support in-place updates and cannot be changed during a restore from snapshot.
|
|
3206
|
-
:param pulumi.Input[_builtins.int] monitoring_interval: Interval, in seconds,
|
|
3206
|
+
:param pulumi.Input[_builtins.int] monitoring_interval: Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0. The default is 0. Valid Values: 0, 1, 5, 10, 15, 30, 60.
|
|
3207
3207
|
:param pulumi.Input[_builtins.str] monitoring_role_arn: ARN for the IAM role that permits RDS to send enhanced monitoring metrics to CloudWatch Logs. You can find more information on the [AWS Documentation](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole.html) what IAM permissions are needed to allow Enhanced Monitoring for RDS Clusters.
|
|
3208
3208
|
:param pulumi.Input[_builtins.str] network_type: Network type of the cluster. Valid values: `IPV4`, `DUAL`.
|
|
3209
3209
|
:param pulumi.Input[_builtins.bool] performance_insights_enabled: Enables Performance Insights.
|
|
@@ -3550,7 +3550,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
3550
3550
|
@pulumi.getter(name="enableLocalWriteForwarding")
|
|
3551
3551
|
def enable_local_write_forwarding(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
3552
3552
|
"""
|
|
3553
|
-
Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances
|
|
3553
|
+
Whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. See the [User Guide for Aurora](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-write-forwarding.html) for more information. **NOTE:** Local write forwarding requires Aurora MySQL version 3.04 or higher.
|
|
3554
3554
|
"""
|
|
3555
3555
|
return pulumi.get(self, "enable_local_write_forwarding")
|
|
3556
3556
|
|
|
@@ -3598,7 +3598,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
3598
3598
|
@pulumi.getter(name="engineVersion")
|
|
3599
3599
|
def engine_version(self) -> pulumi.Output[_builtins.str]:
|
|
3600
3600
|
"""
|
|
3601
|
-
Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`,
|
|
3601
|
+
Database engine version. Updating this argument results in an outage. See the [Aurora MySQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html) and [Aurora Postgres](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.html) documentation for your configured engine to determine this value, or by running `aws rds describe-db-engine-versions`. For example with Aurora MySQL 2, a potential value for this argument is `5.7.mysql_aurora.2.03.2`. The value can contain a partial version where supported by the API. The actual engine version used is returned in the attribute `engine_version_actual`, see Attribute Reference below.
|
|
3602
3602
|
"""
|
|
3603
3603
|
return pulumi.get(self, "engine_version")
|
|
3604
3604
|
|
|
@@ -3727,7 +3727,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
3727
3727
|
@pulumi.getter(name="monitoringInterval")
|
|
3728
3728
|
def monitoring_interval(self) -> pulumi.Output[_builtins.int]:
|
|
3729
3729
|
"""
|
|
3730
|
-
Interval, in seconds,
|
|
3730
|
+
Interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify 0. The default is 0. Valid Values: 0, 1, 5, 10, 15, 30, 60.
|
|
3731
3731
|
"""
|
|
3732
3732
|
return pulumi.get(self, "monitoring_interval")
|
|
3733
3733
|
|
pulumi_aws/rds/get_proxy.py
CHANGED
|
@@ -27,7 +27,7 @@ class GetProxyResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getProxy.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, arn=None, auths=None, debug_logging=None, default_auth_scheme=None, endpoint=None, engine_family=None, id=None, idle_client_timeout=None, name=None, region=None, require_tls=None, role_arn=None, vpc_id=None, vpc_security_group_ids=None, vpc_subnet_ids=None):
|
|
30
|
+
def __init__(__self__, arn=None, auths=None, debug_logging=None, default_auth_scheme=None, endpoint=None, endpoint_network_type=None, engine_family=None, id=None, idle_client_timeout=None, name=None, region=None, require_tls=None, role_arn=None, target_connection_network_type=None, vpc_id=None, vpc_security_group_ids=None, vpc_subnet_ids=None):
|
|
31
31
|
if arn and not isinstance(arn, str):
|
|
32
32
|
raise TypeError("Expected argument 'arn' to be a str")
|
|
33
33
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -43,6 +43,9 @@ class GetProxyResult:
|
|
|
43
43
|
if endpoint and not isinstance(endpoint, str):
|
|
44
44
|
raise TypeError("Expected argument 'endpoint' to be a str")
|
|
45
45
|
pulumi.set(__self__, "endpoint", endpoint)
|
|
46
|
+
if endpoint_network_type and not isinstance(endpoint_network_type, str):
|
|
47
|
+
raise TypeError("Expected argument 'endpoint_network_type' to be a str")
|
|
48
|
+
pulumi.set(__self__, "endpoint_network_type", endpoint_network_type)
|
|
46
49
|
if engine_family and not isinstance(engine_family, str):
|
|
47
50
|
raise TypeError("Expected argument 'engine_family' to be a str")
|
|
48
51
|
pulumi.set(__self__, "engine_family", engine_family)
|
|
@@ -64,6 +67,9 @@ class GetProxyResult:
|
|
|
64
67
|
if role_arn and not isinstance(role_arn, str):
|
|
65
68
|
raise TypeError("Expected argument 'role_arn' to be a str")
|
|
66
69
|
pulumi.set(__self__, "role_arn", role_arn)
|
|
70
|
+
if target_connection_network_type and not isinstance(target_connection_network_type, str):
|
|
71
|
+
raise TypeError("Expected argument 'target_connection_network_type' to be a str")
|
|
72
|
+
pulumi.set(__self__, "target_connection_network_type", target_connection_network_type)
|
|
67
73
|
if vpc_id and not isinstance(vpc_id, str):
|
|
68
74
|
raise TypeError("Expected argument 'vpc_id' to be a str")
|
|
69
75
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
@@ -114,6 +120,14 @@ class GetProxyResult:
|
|
|
114
120
|
"""
|
|
115
121
|
return pulumi.get(self, "endpoint")
|
|
116
122
|
|
|
123
|
+
@_builtins.property
|
|
124
|
+
@pulumi.getter(name="endpointNetworkType")
|
|
125
|
+
def endpoint_network_type(self) -> _builtins.str:
|
|
126
|
+
"""
|
|
127
|
+
Network type of the DB proxy endpoint.
|
|
128
|
+
"""
|
|
129
|
+
return pulumi.get(self, "endpoint_network_type")
|
|
130
|
+
|
|
117
131
|
@_builtins.property
|
|
118
132
|
@pulumi.getter(name="engineFamily")
|
|
119
133
|
def engine_family(self) -> _builtins.str:
|
|
@@ -164,6 +178,14 @@ class GetProxyResult:
|
|
|
164
178
|
"""
|
|
165
179
|
return pulumi.get(self, "role_arn")
|
|
166
180
|
|
|
181
|
+
@_builtins.property
|
|
182
|
+
@pulumi.getter(name="targetConnectionNetworkType")
|
|
183
|
+
def target_connection_network_type(self) -> _builtins.str:
|
|
184
|
+
"""
|
|
185
|
+
Network type that the proxy uses to connect to the target database.
|
|
186
|
+
"""
|
|
187
|
+
return pulumi.get(self, "target_connection_network_type")
|
|
188
|
+
|
|
167
189
|
@_builtins.property
|
|
168
190
|
@pulumi.getter(name="vpcId")
|
|
169
191
|
def vpc_id(self) -> _builtins.str:
|
|
@@ -200,6 +222,7 @@ class AwaitableGetProxyResult(GetProxyResult):
|
|
|
200
222
|
debug_logging=self.debug_logging,
|
|
201
223
|
default_auth_scheme=self.default_auth_scheme,
|
|
202
224
|
endpoint=self.endpoint,
|
|
225
|
+
endpoint_network_type=self.endpoint_network_type,
|
|
203
226
|
engine_family=self.engine_family,
|
|
204
227
|
id=self.id,
|
|
205
228
|
idle_client_timeout=self.idle_client_timeout,
|
|
@@ -207,6 +230,7 @@ class AwaitableGetProxyResult(GetProxyResult):
|
|
|
207
230
|
region=self.region,
|
|
208
231
|
require_tls=self.require_tls,
|
|
209
232
|
role_arn=self.role_arn,
|
|
233
|
+
target_connection_network_type=self.target_connection_network_type,
|
|
210
234
|
vpc_id=self.vpc_id,
|
|
211
235
|
vpc_security_group_ids=self.vpc_security_group_ids,
|
|
212
236
|
vpc_subnet_ids=self.vpc_subnet_ids)
|
|
@@ -243,6 +267,7 @@ def get_proxy(name: Optional[_builtins.str] = None,
|
|
|
243
267
|
debug_logging=pulumi.get(__ret__, 'debug_logging'),
|
|
244
268
|
default_auth_scheme=pulumi.get(__ret__, 'default_auth_scheme'),
|
|
245
269
|
endpoint=pulumi.get(__ret__, 'endpoint'),
|
|
270
|
+
endpoint_network_type=pulumi.get(__ret__, 'endpoint_network_type'),
|
|
246
271
|
engine_family=pulumi.get(__ret__, 'engine_family'),
|
|
247
272
|
id=pulumi.get(__ret__, 'id'),
|
|
248
273
|
idle_client_timeout=pulumi.get(__ret__, 'idle_client_timeout'),
|
|
@@ -250,6 +275,7 @@ def get_proxy(name: Optional[_builtins.str] = None,
|
|
|
250
275
|
region=pulumi.get(__ret__, 'region'),
|
|
251
276
|
require_tls=pulumi.get(__ret__, 'require_tls'),
|
|
252
277
|
role_arn=pulumi.get(__ret__, 'role_arn'),
|
|
278
|
+
target_connection_network_type=pulumi.get(__ret__, 'target_connection_network_type'),
|
|
253
279
|
vpc_id=pulumi.get(__ret__, 'vpc_id'),
|
|
254
280
|
vpc_security_group_ids=pulumi.get(__ret__, 'vpc_security_group_ids'),
|
|
255
281
|
vpc_subnet_ids=pulumi.get(__ret__, 'vpc_subnet_ids'))
|
|
@@ -283,6 +309,7 @@ def get_proxy_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
283
309
|
debug_logging=pulumi.get(__response__, 'debug_logging'),
|
|
284
310
|
default_auth_scheme=pulumi.get(__response__, 'default_auth_scheme'),
|
|
285
311
|
endpoint=pulumi.get(__response__, 'endpoint'),
|
|
312
|
+
endpoint_network_type=pulumi.get(__response__, 'endpoint_network_type'),
|
|
286
313
|
engine_family=pulumi.get(__response__, 'engine_family'),
|
|
287
314
|
id=pulumi.get(__response__, 'id'),
|
|
288
315
|
idle_client_timeout=pulumi.get(__response__, 'idle_client_timeout'),
|
|
@@ -290,6 +317,7 @@ def get_proxy_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
290
317
|
region=pulumi.get(__response__, 'region'),
|
|
291
318
|
require_tls=pulumi.get(__response__, 'require_tls'),
|
|
292
319
|
role_arn=pulumi.get(__response__, 'role_arn'),
|
|
320
|
+
target_connection_network_type=pulumi.get(__response__, 'target_connection_network_type'),
|
|
293
321
|
vpc_id=pulumi.get(__response__, 'vpc_id'),
|
|
294
322
|
vpc_security_group_ids=pulumi.get(__response__, 'vpc_security_group_ids'),
|
|
295
323
|
vpc_subnet_ids=pulumi.get(__response__, 'vpc_subnet_ids')))
|