pulumi-aws 7.16.0a1767972859__py3-none-any.whl → 7.17.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 +142 -0
- pulumi_aws/_inputs.py +40 -0
- pulumi_aws/acm/certificate.py +6 -6
- pulumi_aws/acmpca/certificate.py +6 -6
- pulumi_aws/alb/_inputs.py +6 -0
- pulumi_aws/alb/outputs.py +4 -0
- pulumi_aws/apigateway/domain_name.py +47 -0
- pulumi_aws/apigatewayv2/__init__.py +1 -0
- pulumi_aws/apigatewayv2/_inputs.py +279 -0
- pulumi_aws/apigatewayv2/domain_name.py +47 -0
- pulumi_aws/apigatewayv2/outputs.py +270 -0
- pulumi_aws/apigatewayv2/routing_rule.py +497 -0
- pulumi_aws/arcregionswitch/__init__.py +13 -0
- pulumi_aws/arcregionswitch/_inputs.py +4878 -0
- pulumi_aws/arcregionswitch/get_plan.py +284 -0
- pulumi_aws/arcregionswitch/get_route53_health_checks.py +148 -0
- pulumi_aws/arcregionswitch/outputs.py +3992 -0
- pulumi_aws/arcregionswitch/plan.py +1101 -0
- pulumi_aws/autoscaling/group.py +7 -7
- pulumi_aws/batch/_inputs.py +106 -6
- pulumi_aws/batch/outputs.py +92 -6
- pulumi_aws/bedrock/_inputs.py +77 -3
- pulumi_aws/bedrock/agent_data_source.py +72 -0
- pulumi_aws/bedrock/outputs.py +67 -2
- pulumi_aws/cleanrooms/_inputs.py +60 -0
- pulumi_aws/cleanrooms/collaboration.py +57 -137
- pulumi_aws/cleanrooms/outputs.py +36 -0
- pulumi_aws/cloudfront/__init__.py +1 -0
- pulumi_aws/cloudfront/_inputs.py +46 -12
- pulumi_aws/cloudfront/anycast_ip_list.py +450 -0
- pulumi_aws/cloudfront/multitenant_distribution.py +128 -0
- pulumi_aws/cloudfront/outputs.py +28 -10
- pulumi_aws/codebuild/webhook.py +8 -8
- pulumi_aws/codepipeline/webhook.py +8 -8
- pulumi_aws/config/outputs.py +24 -0
- pulumi_aws/docdb/cluster_instance.py +179 -317
- pulumi_aws/dynamodb/_inputs.py +92 -22
- pulumi_aws/dynamodb/outputs.py +103 -16
- pulumi_aws/dynamodb/table.py +185 -7
- pulumi_aws/ec2/__init__.py +1 -0
- pulumi_aws/ec2/_inputs.py +157 -0
- pulumi_aws/ec2/get_vpc_ipam_pool.py +15 -1
- pulumi_aws/ec2/launch_template.py +34 -0
- pulumi_aws/ec2/outputs.py +200 -0
- pulumi_aws/ec2/placement_group.py +7 -7
- pulumi_aws/ec2/security_group.py +2 -2
- pulumi_aws/ec2/subnet.py +290 -30
- pulumi_aws/ec2/vpc_ipam_pool.py +119 -0
- pulumi_aws/ec2/vpc_ipam_resource_discovery.py +47 -0
- pulumi_aws/ec2/vpc_security_group_rules_exclusive.py +307 -0
- pulumi_aws/ec2transitgateway/vpc_attachment.py +0 -26
- pulumi_aws/ecr/account_setting.py +38 -9
- pulumi_aws/eks/addon.py +74 -0
- pulumi_aws/fsx/_inputs.py +54 -32
- pulumi_aws/fsx/outputs.py +35 -19
- pulumi_aws/fsx/windows_file_system.py +42 -0
- pulumi_aws/invoicing/invoice_unit.py +16 -7
- pulumi_aws/iot/ca_certificate.py +12 -12
- pulumi_aws/iot/get_endpoint.py +24 -24
- pulumi_aws/iot/get_registration_code.py +6 -6
- pulumi_aws/lambda_/_enums.py +4 -0
- pulumi_aws/lambda_/function.py +7 -7
- pulumi_aws/lb/_inputs.py +6 -0
- pulumi_aws/lb/outputs.py +4 -0
- pulumi_aws/memorydb/user.py +4 -4
- pulumi_aws/networkmanager/_inputs.py +20 -0
- pulumi_aws/networkmanager/outputs.py +12 -0
- pulumi_aws/notifications/__init__.py +4 -0
- pulumi_aws/notifications/_inputs.py +74 -0
- pulumi_aws/notifications/managed_notification_account_contact_association.py +242 -0
- pulumi_aws/notifications/managed_notification_additional_channel_association.py +248 -0
- pulumi_aws/notifications/organizational_unit_association.py +302 -0
- pulumi_aws/notifications/organizations_access.py +234 -0
- pulumi_aws/notifications/outputs.py +44 -0
- pulumi_aws/odb/_inputs.py +190 -0
- pulumi_aws/odb/network.py +188 -0
- pulumi_aws/odb/outputs.py +251 -1
- pulumi_aws/opensearch/__init__.py +1 -0
- pulumi_aws/opensearch/_inputs.py +269 -0
- pulumi_aws/opensearch/application.py +885 -0
- pulumi_aws/opensearch/outputs.py +200 -0
- pulumi_aws/organizations/__init__.py +1 -0
- pulumi_aws/organizations/get_entity_path.py +123 -0
- pulumi_aws/organizations/get_organization.py +24 -3
- pulumi_aws/organizations/organization.py +48 -1
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/ram/__init__.py +2 -0
- pulumi_aws/ram/_inputs.py +34 -0
- pulumi_aws/ram/outputs.py +20 -0
- pulumi_aws/ram/permission.py +593 -0
- pulumi_aws/ram/resource_share_associations_exclusive.py +394 -0
- pulumi_aws/resourcegroupstaggingapi/__init__.py +1 -0
- pulumi_aws/resourcegroupstaggingapi/get_required_tags.py +128 -0
- pulumi_aws/resourcegroupstaggingapi/outputs.py +41 -0
- pulumi_aws/route53/health_check.py +8 -8
- pulumi_aws/s3/__init__.py +2 -0
- pulumi_aws/s3/bucket_replication_config.py +14 -7
- pulumi_aws/s3/get_bucket_object_lock_configuration.py +180 -0
- pulumi_aws/s3/get_bucket_replication_configuration.py +159 -0
- pulumi_aws/s3/get_object.py +33 -2
- pulumi_aws/s3/outputs.py +487 -0
- pulumi_aws/s3control/__init__.py +2 -0
- pulumi_aws/s3control/get_access_points.py +223 -0
- pulumi_aws/s3control/get_multi_region_access_points.py +148 -0
- pulumi_aws/s3control/outputs.py +293 -0
- pulumi_aws/sagemaker/__init__.py +3 -0
- pulumi_aws/sagemaker/_inputs.py +3644 -869
- pulumi_aws/sagemaker/labeling_job.py +890 -0
- pulumi_aws/sagemaker/model_card.py +547 -0
- pulumi_aws/sagemaker/model_card_export_job.py +468 -0
- pulumi_aws/sagemaker/outputs.py +3069 -710
- pulumi_aws/savingsplans/__init__.py +12 -0
- pulumi_aws/savingsplans/_inputs.py +75 -0
- pulumi_aws/savingsplans/get_savings_plan.py +376 -0
- pulumi_aws/savingsplans/outputs.py +51 -0
- pulumi_aws/savingsplans/savings_plan.py +945 -0
- pulumi_aws/sesv2/__init__.py +1 -0
- pulumi_aws/sesv2/tenant_resource_association.py +303 -0
- pulumi_aws/ssoadmin/__init__.py +1 -0
- pulumi_aws/ssoadmin/_inputs.py +54 -0
- pulumi_aws/ssoadmin/managed_policy_attachment.py +4 -0
- pulumi_aws/ssoadmin/managed_policy_attachments_exclusive.py +445 -0
- pulumi_aws/ssoadmin/outputs.py +32 -0
- pulumi_aws/wafv2/__init__.py +1 -0
- pulumi_aws/wafv2/get_managed_rule_group.py +269 -0
- pulumi_aws/wafv2/outputs.py +383 -0
- {pulumi_aws-7.16.0a1767972859.dist-info → pulumi_aws-7.17.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.16.0a1767972859.dist-info → pulumi_aws-7.17.0.dist-info}/RECORD +130 -97
- {pulumi_aws-7.16.0a1767972859.dist-info → pulumi_aws-7.17.0.dist-info}/WHEEL +1 -1
- {pulumi_aws-7.16.0a1767972859.dist-info → pulumi_aws-7.17.0.dist-info}/top_level.txt +0 -0
pulumi_aws/__init__.py
CHANGED
|
@@ -65,6 +65,8 @@ if typing.TYPE_CHECKING:
|
|
|
65
65
|
appstream = __appstream
|
|
66
66
|
import pulumi_aws.appsync as __appsync
|
|
67
67
|
appsync = __appsync
|
|
68
|
+
import pulumi_aws.arcregionswitch as __arcregionswitch
|
|
69
|
+
arcregionswitch = __arcregionswitch
|
|
68
70
|
import pulumi_aws.athena as __athena
|
|
69
71
|
athena = __athena
|
|
70
72
|
import pulumi_aws.auditmanager as __auditmanager
|
|
@@ -401,6 +403,8 @@ if typing.TYPE_CHECKING:
|
|
|
401
403
|
s3tables = __s3tables
|
|
402
404
|
import pulumi_aws.sagemaker as __sagemaker
|
|
403
405
|
sagemaker = __sagemaker
|
|
406
|
+
import pulumi_aws.savingsplans as __savingsplans
|
|
407
|
+
savingsplans = __savingsplans
|
|
404
408
|
import pulumi_aws.scheduler as __scheduler
|
|
405
409
|
scheduler = __scheduler
|
|
406
410
|
import pulumi_aws.schemas as __schemas
|
|
@@ -500,6 +504,7 @@ else:
|
|
|
500
504
|
apprunner = _utilities.lazy_import('pulumi_aws.apprunner')
|
|
501
505
|
appstream = _utilities.lazy_import('pulumi_aws.appstream')
|
|
502
506
|
appsync = _utilities.lazy_import('pulumi_aws.appsync')
|
|
507
|
+
arcregionswitch = _utilities.lazy_import('pulumi_aws.arcregionswitch')
|
|
503
508
|
athena = _utilities.lazy_import('pulumi_aws.athena')
|
|
504
509
|
auditmanager = _utilities.lazy_import('pulumi_aws.auditmanager')
|
|
505
510
|
autoscaling = _utilities.lazy_import('pulumi_aws.autoscaling')
|
|
@@ -668,6 +673,7 @@ else:
|
|
|
668
673
|
s3outposts = _utilities.lazy_import('pulumi_aws.s3outposts')
|
|
669
674
|
s3tables = _utilities.lazy_import('pulumi_aws.s3tables')
|
|
670
675
|
sagemaker = _utilities.lazy_import('pulumi_aws.sagemaker')
|
|
676
|
+
savingsplans = _utilities.lazy_import('pulumi_aws.savingsplans')
|
|
671
677
|
scheduler = _utilities.lazy_import('pulumi_aws.scheduler')
|
|
672
678
|
schemas = _utilities.lazy_import('pulumi_aws.schemas')
|
|
673
679
|
secretsmanager = _utilities.lazy_import('pulumi_aws.secretsmanager')
|
|
@@ -1239,6 +1245,14 @@ _utilities.register(
|
|
|
1239
1245
|
"aws:apigatewayv2/routeResponse:RouteResponse": "RouteResponse"
|
|
1240
1246
|
}
|
|
1241
1247
|
},
|
|
1248
|
+
{
|
|
1249
|
+
"pkg": "aws",
|
|
1250
|
+
"mod": "apigatewayv2/routingRule",
|
|
1251
|
+
"fqn": "pulumi_aws.apigatewayv2",
|
|
1252
|
+
"classes": {
|
|
1253
|
+
"aws:apigatewayv2/routingRule:RoutingRule": "RoutingRule"
|
|
1254
|
+
}
|
|
1255
|
+
},
|
|
1242
1256
|
{
|
|
1243
1257
|
"pkg": "aws",
|
|
1244
1258
|
"mod": "apigatewayv2/stage",
|
|
@@ -1703,6 +1717,14 @@ _utilities.register(
|
|
|
1703
1717
|
"aws:appsync/type:Type": "Type"
|
|
1704
1718
|
}
|
|
1705
1719
|
},
|
|
1720
|
+
{
|
|
1721
|
+
"pkg": "aws",
|
|
1722
|
+
"mod": "arcregionswitch/plan",
|
|
1723
|
+
"fqn": "pulumi_aws.arcregionswitch",
|
|
1724
|
+
"classes": {
|
|
1725
|
+
"aws:arcregionswitch/plan:Plan": "Plan"
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1706
1728
|
{
|
|
1707
1729
|
"pkg": "aws",
|
|
1708
1730
|
"mod": "athena/capacityReservation",
|
|
@@ -2575,6 +2597,14 @@ _utilities.register(
|
|
|
2575
2597
|
"aws:cloudformation/stackSetInstance:StackSetInstance": "StackSetInstance"
|
|
2576
2598
|
}
|
|
2577
2599
|
},
|
|
2600
|
+
{
|
|
2601
|
+
"pkg": "aws",
|
|
2602
|
+
"mod": "cloudfront/anycastIpList",
|
|
2603
|
+
"fqn": "pulumi_aws.cloudfront",
|
|
2604
|
+
"classes": {
|
|
2605
|
+
"aws:cloudfront/anycastIpList:AnycastIpList": "AnycastIpList"
|
|
2606
|
+
}
|
|
2607
|
+
},
|
|
2578
2608
|
{
|
|
2579
2609
|
"pkg": "aws",
|
|
2580
2610
|
"mod": "cloudfront/cachePolicy",
|
|
@@ -5399,6 +5429,14 @@ _utilities.register(
|
|
|
5399
5429
|
"aws:ec2/vpcPeeringConnectionAccepter:VpcPeeringConnectionAccepter": "VpcPeeringConnectionAccepter"
|
|
5400
5430
|
}
|
|
5401
5431
|
},
|
|
5432
|
+
{
|
|
5433
|
+
"pkg": "aws",
|
|
5434
|
+
"mod": "ec2/vpcSecurityGroupRulesExclusive",
|
|
5435
|
+
"fqn": "pulumi_aws.ec2",
|
|
5436
|
+
"classes": {
|
|
5437
|
+
"aws:ec2/vpcSecurityGroupRulesExclusive:VpcSecurityGroupRulesExclusive": "VpcSecurityGroupRulesExclusive"
|
|
5438
|
+
}
|
|
5439
|
+
},
|
|
5402
5440
|
{
|
|
5403
5441
|
"pkg": "aws",
|
|
5404
5442
|
"mod": "ec2/vpnConcentrator",
|
|
@@ -9055,6 +9093,22 @@ _utilities.register(
|
|
|
9055
9093
|
"aws:notifications/eventRule:EventRule": "EventRule"
|
|
9056
9094
|
}
|
|
9057
9095
|
},
|
|
9096
|
+
{
|
|
9097
|
+
"pkg": "aws",
|
|
9098
|
+
"mod": "notifications/managedNotificationAccountContactAssociation",
|
|
9099
|
+
"fqn": "pulumi_aws.notifications",
|
|
9100
|
+
"classes": {
|
|
9101
|
+
"aws:notifications/managedNotificationAccountContactAssociation:ManagedNotificationAccountContactAssociation": "ManagedNotificationAccountContactAssociation"
|
|
9102
|
+
}
|
|
9103
|
+
},
|
|
9104
|
+
{
|
|
9105
|
+
"pkg": "aws",
|
|
9106
|
+
"mod": "notifications/managedNotificationAdditionalChannelAssociation",
|
|
9107
|
+
"fqn": "pulumi_aws.notifications",
|
|
9108
|
+
"classes": {
|
|
9109
|
+
"aws:notifications/managedNotificationAdditionalChannelAssociation:ManagedNotificationAdditionalChannelAssociation": "ManagedNotificationAdditionalChannelAssociation"
|
|
9110
|
+
}
|
|
9111
|
+
},
|
|
9058
9112
|
{
|
|
9059
9113
|
"pkg": "aws",
|
|
9060
9114
|
"mod": "notifications/notificationConfiguration",
|
|
@@ -9071,6 +9125,22 @@ _utilities.register(
|
|
|
9071
9125
|
"aws:notifications/notificationHub:NotificationHub": "NotificationHub"
|
|
9072
9126
|
}
|
|
9073
9127
|
},
|
|
9128
|
+
{
|
|
9129
|
+
"pkg": "aws",
|
|
9130
|
+
"mod": "notifications/organizationalUnitAssociation",
|
|
9131
|
+
"fqn": "pulumi_aws.notifications",
|
|
9132
|
+
"classes": {
|
|
9133
|
+
"aws:notifications/organizationalUnitAssociation:OrganizationalUnitAssociation": "OrganizationalUnitAssociation"
|
|
9134
|
+
}
|
|
9135
|
+
},
|
|
9136
|
+
{
|
|
9137
|
+
"pkg": "aws",
|
|
9138
|
+
"mod": "notifications/organizationsAccess",
|
|
9139
|
+
"fqn": "pulumi_aws.notifications",
|
|
9140
|
+
"classes": {
|
|
9141
|
+
"aws:notifications/organizationsAccess:OrganizationsAccess": "OrganizationsAccess"
|
|
9142
|
+
}
|
|
9143
|
+
},
|
|
9074
9144
|
{
|
|
9075
9145
|
"pkg": "aws",
|
|
9076
9146
|
"mod": "oam/link",
|
|
@@ -9143,6 +9213,14 @@ _utilities.register(
|
|
|
9143
9213
|
"aws:odb/networkPeeringConnection:NetworkPeeringConnection": "NetworkPeeringConnection"
|
|
9144
9214
|
}
|
|
9145
9215
|
},
|
|
9216
|
+
{
|
|
9217
|
+
"pkg": "aws",
|
|
9218
|
+
"mod": "opensearch/application",
|
|
9219
|
+
"fqn": "pulumi_aws.opensearch",
|
|
9220
|
+
"classes": {
|
|
9221
|
+
"aws:opensearch/application:Application": "Application"
|
|
9222
|
+
}
|
|
9223
|
+
},
|
|
9146
9224
|
{
|
|
9147
9225
|
"pkg": "aws",
|
|
9148
9226
|
"mod": "opensearch/authorizeVpcEndpointAccess",
|
|
@@ -9703,6 +9781,14 @@ _utilities.register(
|
|
|
9703
9781
|
"aws:quicksight/vpcConnection:VpcConnection": "VpcConnection"
|
|
9704
9782
|
}
|
|
9705
9783
|
},
|
|
9784
|
+
{
|
|
9785
|
+
"pkg": "aws",
|
|
9786
|
+
"mod": "ram/permission",
|
|
9787
|
+
"fqn": "pulumi_aws.ram",
|
|
9788
|
+
"classes": {
|
|
9789
|
+
"aws:ram/permission:Permission": "Permission"
|
|
9790
|
+
}
|
|
9791
|
+
},
|
|
9706
9792
|
{
|
|
9707
9793
|
"pkg": "aws",
|
|
9708
9794
|
"mod": "ram/principalAssociation",
|
|
@@ -9735,6 +9821,14 @@ _utilities.register(
|
|
|
9735
9821
|
"aws:ram/resourceShareAccepter:ResourceShareAccepter": "ResourceShareAccepter"
|
|
9736
9822
|
}
|
|
9737
9823
|
},
|
|
9824
|
+
{
|
|
9825
|
+
"pkg": "aws",
|
|
9826
|
+
"mod": "ram/resourceShareAssociationsExclusive",
|
|
9827
|
+
"fqn": "pulumi_aws.ram",
|
|
9828
|
+
"classes": {
|
|
9829
|
+
"aws:ram/resourceShareAssociationsExclusive:ResourceShareAssociationsExclusive": "ResourceShareAssociationsExclusive"
|
|
9830
|
+
}
|
|
9831
|
+
},
|
|
9738
9832
|
{
|
|
9739
9833
|
"pkg": "aws",
|
|
9740
9834
|
"mod": "ram/sharingWithOrganization",
|
|
@@ -11287,6 +11381,14 @@ _utilities.register(
|
|
|
11287
11381
|
"aws:sagemaker/imageVersion:ImageVersion": "ImageVersion"
|
|
11288
11382
|
}
|
|
11289
11383
|
},
|
|
11384
|
+
{
|
|
11385
|
+
"pkg": "aws",
|
|
11386
|
+
"mod": "sagemaker/labelingJob",
|
|
11387
|
+
"fqn": "pulumi_aws.sagemaker",
|
|
11388
|
+
"classes": {
|
|
11389
|
+
"aws:sagemaker/labelingJob:LabelingJob": "LabelingJob"
|
|
11390
|
+
}
|
|
11391
|
+
},
|
|
11290
11392
|
{
|
|
11291
11393
|
"pkg": "aws",
|
|
11292
11394
|
"mod": "sagemaker/mlflowTrackingServer",
|
|
@@ -11303,6 +11405,22 @@ _utilities.register(
|
|
|
11303
11405
|
"aws:sagemaker/model:Model": "Model"
|
|
11304
11406
|
}
|
|
11305
11407
|
},
|
|
11408
|
+
{
|
|
11409
|
+
"pkg": "aws",
|
|
11410
|
+
"mod": "sagemaker/modelCard",
|
|
11411
|
+
"fqn": "pulumi_aws.sagemaker",
|
|
11412
|
+
"classes": {
|
|
11413
|
+
"aws:sagemaker/modelCard:ModelCard": "ModelCard"
|
|
11414
|
+
}
|
|
11415
|
+
},
|
|
11416
|
+
{
|
|
11417
|
+
"pkg": "aws",
|
|
11418
|
+
"mod": "sagemaker/modelCardExportJob",
|
|
11419
|
+
"fqn": "pulumi_aws.sagemaker",
|
|
11420
|
+
"classes": {
|
|
11421
|
+
"aws:sagemaker/modelCardExportJob:ModelCardExportJob": "ModelCardExportJob"
|
|
11422
|
+
}
|
|
11423
|
+
},
|
|
11306
11424
|
{
|
|
11307
11425
|
"pkg": "aws",
|
|
11308
11426
|
"mod": "sagemaker/modelPackageGroup",
|
|
@@ -11407,6 +11525,14 @@ _utilities.register(
|
|
|
11407
11525
|
"aws:sagemaker/workteam:Workteam": "Workteam"
|
|
11408
11526
|
}
|
|
11409
11527
|
},
|
|
11528
|
+
{
|
|
11529
|
+
"pkg": "aws",
|
|
11530
|
+
"mod": "savingsplans/savingsPlan",
|
|
11531
|
+
"fqn": "pulumi_aws.savingsplans",
|
|
11532
|
+
"classes": {
|
|
11533
|
+
"aws:savingsplans/savingsPlan:SavingsPlan": "SavingsPlan"
|
|
11534
|
+
}
|
|
11535
|
+
},
|
|
11410
11536
|
{
|
|
11411
11537
|
"pkg": "aws",
|
|
11412
11538
|
"mod": "scheduler/schedule",
|
|
@@ -12063,6 +12189,14 @@ _utilities.register(
|
|
|
12063
12189
|
"aws:sesv2/tenant:Tenant": "Tenant"
|
|
12064
12190
|
}
|
|
12065
12191
|
},
|
|
12192
|
+
{
|
|
12193
|
+
"pkg": "aws",
|
|
12194
|
+
"mod": "sesv2/tenantResourceAssociation",
|
|
12195
|
+
"fqn": "pulumi_aws.sesv2",
|
|
12196
|
+
"classes": {
|
|
12197
|
+
"aws:sesv2/tenantResourceAssociation:TenantResourceAssociation": "TenantResourceAssociation"
|
|
12198
|
+
}
|
|
12199
|
+
},
|
|
12066
12200
|
{
|
|
12067
12201
|
"pkg": "aws",
|
|
12068
12202
|
"mod": "sfn/activity",
|
|
@@ -12471,6 +12605,14 @@ _utilities.register(
|
|
|
12471
12605
|
"aws:ssoadmin/managedPolicyAttachment:ManagedPolicyAttachment": "ManagedPolicyAttachment"
|
|
12472
12606
|
}
|
|
12473
12607
|
},
|
|
12608
|
+
{
|
|
12609
|
+
"pkg": "aws",
|
|
12610
|
+
"mod": "ssoadmin/managedPolicyAttachmentsExclusive",
|
|
12611
|
+
"fqn": "pulumi_aws.ssoadmin",
|
|
12612
|
+
"classes": {
|
|
12613
|
+
"aws:ssoadmin/managedPolicyAttachmentsExclusive:ManagedPolicyAttachmentsExclusive": "ManagedPolicyAttachmentsExclusive"
|
|
12614
|
+
}
|
|
12615
|
+
},
|
|
12474
12616
|
{
|
|
12475
12617
|
"pkg": "aws",
|
|
12476
12618
|
"mod": "ssoadmin/permissionSet",
|
pulumi_aws/_inputs.py
CHANGED
|
@@ -1172,6 +1172,10 @@ if not MYPY:
|
|
|
1172
1172
|
"""
|
|
1173
1173
|
Use this to override the default service endpoint URL
|
|
1174
1174
|
"""
|
|
1175
|
+
mpa: NotRequired[pulumi.Input[_builtins.str]]
|
|
1176
|
+
"""
|
|
1177
|
+
Use this to override the default service endpoint URL
|
|
1178
|
+
"""
|
|
1175
1179
|
mq: NotRequired[pulumi.Input[_builtins.str]]
|
|
1176
1180
|
"""
|
|
1177
1181
|
Use this to override the default service endpoint URL
|
|
@@ -1436,6 +1440,10 @@ if not MYPY:
|
|
|
1436
1440
|
"""
|
|
1437
1441
|
Use this to override the default service endpoint URL
|
|
1438
1442
|
"""
|
|
1443
|
+
savingsplans: NotRequired[pulumi.Input[_builtins.str]]
|
|
1444
|
+
"""
|
|
1445
|
+
Use this to override the default service endpoint URL
|
|
1446
|
+
"""
|
|
1439
1447
|
scheduler: NotRequired[pulumi.Input[_builtins.str]]
|
|
1440
1448
|
"""
|
|
1441
1449
|
Use this to override the default service endpoint URL
|
|
@@ -1827,6 +1835,7 @@ class ProviderEndpointArgs:
|
|
|
1827
1835
|
mediastore: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1828
1836
|
memorydb: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1829
1837
|
mgn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1838
|
+
mpa: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1830
1839
|
mq: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1831
1840
|
msk: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1832
1841
|
mwaa: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -1893,6 +1902,7 @@ class ProviderEndpointArgs:
|
|
|
1893
1902
|
s3tables: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1894
1903
|
s3vectors: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1895
1904
|
sagemaker: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1905
|
+
savingsplans: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1896
1906
|
scheduler: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1897
1907
|
schemas: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1898
1908
|
secretsmanager: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -2135,6 +2145,7 @@ class ProviderEndpointArgs:
|
|
|
2135
2145
|
:param pulumi.Input[_builtins.str] mediastore: Use this to override the default service endpoint URL
|
|
2136
2146
|
:param pulumi.Input[_builtins.str] memorydb: Use this to override the default service endpoint URL
|
|
2137
2147
|
:param pulumi.Input[_builtins.str] mgn: Use this to override the default service endpoint URL
|
|
2148
|
+
:param pulumi.Input[_builtins.str] mpa: Use this to override the default service endpoint URL
|
|
2138
2149
|
:param pulumi.Input[_builtins.str] mq: Use this to override the default service endpoint URL
|
|
2139
2150
|
:param pulumi.Input[_builtins.str] msk: Use this to override the default service endpoint URL
|
|
2140
2151
|
:param pulumi.Input[_builtins.str] mwaa: Use this to override the default service endpoint URL
|
|
@@ -2201,6 +2212,7 @@ class ProviderEndpointArgs:
|
|
|
2201
2212
|
:param pulumi.Input[_builtins.str] s3tables: Use this to override the default service endpoint URL
|
|
2202
2213
|
:param pulumi.Input[_builtins.str] s3vectors: Use this to override the default service endpoint URL
|
|
2203
2214
|
:param pulumi.Input[_builtins.str] sagemaker: Use this to override the default service endpoint URL
|
|
2215
|
+
:param pulumi.Input[_builtins.str] savingsplans: Use this to override the default service endpoint URL
|
|
2204
2216
|
:param pulumi.Input[_builtins.str] scheduler: Use this to override the default service endpoint URL
|
|
2205
2217
|
:param pulumi.Input[_builtins.str] schemas: Use this to override the default service endpoint URL
|
|
2206
2218
|
:param pulumi.Input[_builtins.str] secretsmanager: Use this to override the default service endpoint URL
|
|
@@ -2636,6 +2648,8 @@ class ProviderEndpointArgs:
|
|
|
2636
2648
|
pulumi.set(__self__, "memorydb", memorydb)
|
|
2637
2649
|
if mgn is not None:
|
|
2638
2650
|
pulumi.set(__self__, "mgn", mgn)
|
|
2651
|
+
if mpa is not None:
|
|
2652
|
+
pulumi.set(__self__, "mpa", mpa)
|
|
2639
2653
|
if mq is not None:
|
|
2640
2654
|
pulumi.set(__self__, "mq", mq)
|
|
2641
2655
|
if msk is not None:
|
|
@@ -2768,6 +2782,8 @@ class ProviderEndpointArgs:
|
|
|
2768
2782
|
pulumi.set(__self__, "s3vectors", s3vectors)
|
|
2769
2783
|
if sagemaker is not None:
|
|
2770
2784
|
pulumi.set(__self__, "sagemaker", sagemaker)
|
|
2785
|
+
if savingsplans is not None:
|
|
2786
|
+
pulumi.set(__self__, "savingsplans", savingsplans)
|
|
2771
2787
|
if scheduler is not None:
|
|
2772
2788
|
pulumi.set(__self__, "scheduler", scheduler)
|
|
2773
2789
|
if schemas is not None:
|
|
@@ -5181,6 +5197,18 @@ class ProviderEndpointArgs:
|
|
|
5181
5197
|
def mgn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
5182
5198
|
pulumi.set(self, "mgn", value)
|
|
5183
5199
|
|
|
5200
|
+
@_builtins.property
|
|
5201
|
+
@pulumi.getter
|
|
5202
|
+
def mpa(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
5203
|
+
"""
|
|
5204
|
+
Use this to override the default service endpoint URL
|
|
5205
|
+
"""
|
|
5206
|
+
return pulumi.get(self, "mpa")
|
|
5207
|
+
|
|
5208
|
+
@mpa.setter
|
|
5209
|
+
def mpa(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
5210
|
+
pulumi.set(self, "mpa", value)
|
|
5211
|
+
|
|
5184
5212
|
@_builtins.property
|
|
5185
5213
|
@pulumi.getter
|
|
5186
5214
|
def mq(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -5973,6 +6001,18 @@ class ProviderEndpointArgs:
|
|
|
5973
6001
|
def sagemaker(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
5974
6002
|
pulumi.set(self, "sagemaker", value)
|
|
5975
6003
|
|
|
6004
|
+
@_builtins.property
|
|
6005
|
+
@pulumi.getter
|
|
6006
|
+
def savingsplans(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
6007
|
+
"""
|
|
6008
|
+
Use this to override the default service endpoint URL
|
|
6009
|
+
"""
|
|
6010
|
+
return pulumi.get(self, "savingsplans")
|
|
6011
|
+
|
|
6012
|
+
@savingsplans.setter
|
|
6013
|
+
def savingsplans(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
6014
|
+
pulumi.set(self, "savingsplans", value)
|
|
6015
|
+
|
|
5976
6016
|
@_builtins.property
|
|
5977
6017
|
@pulumi.getter
|
|
5978
6018
|
def scheduler(self) -> Optional[pulumi.Input[_builtins.str]]:
|
pulumi_aws/acm/certificate.py
CHANGED
|
@@ -641,10 +641,10 @@ class Certificate(pulumi.CustomResource):
|
|
|
641
641
|
example_self_signed_cert = tls.SelfSignedCert("example",
|
|
642
642
|
key_algorithm="RSA",
|
|
643
643
|
private_key_pem=example.private_key_pem,
|
|
644
|
-
subject=
|
|
645
|
-
"
|
|
644
|
+
subject={
|
|
645
|
+
"common_name": "example.com",
|
|
646
646
|
"organization": "ACME Examples, Inc",
|
|
647
|
-
}
|
|
647
|
+
},
|
|
648
648
|
validity_period_hours=12,
|
|
649
649
|
allowed_uses=[
|
|
650
650
|
"key_encipherment",
|
|
@@ -771,10 +771,10 @@ class Certificate(pulumi.CustomResource):
|
|
|
771
771
|
example_self_signed_cert = tls.SelfSignedCert("example",
|
|
772
772
|
key_algorithm="RSA",
|
|
773
773
|
private_key_pem=example.private_key_pem,
|
|
774
|
-
subject=
|
|
775
|
-
"
|
|
774
|
+
subject={
|
|
775
|
+
"common_name": "example.com",
|
|
776
776
|
"organization": "ACME Examples, Inc",
|
|
777
|
-
}
|
|
777
|
+
},
|
|
778
778
|
validity_period_hours=12,
|
|
779
779
|
allowed_uses=[
|
|
780
780
|
"key_encipherment",
|
pulumi_aws/acmpca/certificate.py
CHANGED
|
@@ -349,9 +349,9 @@ class Certificate(pulumi.CustomResource):
|
|
|
349
349
|
key = tls.PrivateKey("key", algorithm="RSA")
|
|
350
350
|
csr = tls.CertRequest("csr",
|
|
351
351
|
private_key_pem=key.private_key_pem,
|
|
352
|
-
subject=
|
|
353
|
-
"
|
|
354
|
-
}
|
|
352
|
+
subject={
|
|
353
|
+
"common_name": "example",
|
|
354
|
+
})
|
|
355
355
|
example = aws.acmpca.Certificate("example",
|
|
356
356
|
certificate_authority_arn=example_certificate_authority.arn,
|
|
357
357
|
certificate_signing_request=csr.cert_request_pem,
|
|
@@ -420,9 +420,9 @@ class Certificate(pulumi.CustomResource):
|
|
|
420
420
|
key = tls.PrivateKey("key", algorithm="RSA")
|
|
421
421
|
csr = tls.CertRequest("csr",
|
|
422
422
|
private_key_pem=key.private_key_pem,
|
|
423
|
-
subject=
|
|
424
|
-
"
|
|
425
|
-
}
|
|
423
|
+
subject={
|
|
424
|
+
"common_name": "example",
|
|
425
|
+
})
|
|
426
426
|
example = aws.acmpca.Certificate("example",
|
|
427
427
|
certificate_authority_arn=example_certificate_authority.arn,
|
|
428
428
|
certificate_signing_request=csr.cert_request_pem,
|
pulumi_aws/alb/_inputs.py
CHANGED
|
@@ -3485,6 +3485,7 @@ if not MYPY:
|
|
|
3485
3485
|
The HTTP or gRPC codes to use when checking for a successful response from a target.
|
|
3486
3486
|
The `health_check.protocol` must be one of `HTTP` or `HTTPS` or the `target_type` must be `lambda`.
|
|
3487
3487
|
Values can be comma-separated individual values (e.g., "200,202") or a range of values (e.g., "200-299").
|
|
3488
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
3488
3489
|
* For gRPC-based target groups (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is `GRPC`), values can be between `0` and `99`. The default is `12`.
|
|
3489
3490
|
* When used with an Application Load Balancer (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is not `GRPC`), values can be between `200` and `499`. The default is `200`.
|
|
3490
3491
|
* When used with a Network Load Balancer (i.e., the `protocol` is one of `TCP`, `TCP_UDP`, `UDP`, or `TLS`), values can be between `200` and `599`. The default is `200-399`.
|
|
@@ -3493,6 +3494,7 @@ if not MYPY:
|
|
|
3493
3494
|
path: NotRequired[pulumi.Input[_builtins.str]]
|
|
3494
3495
|
"""
|
|
3495
3496
|
Destination for the health check request. Required for HTTP/HTTPS ALB and HTTP NLB. Only applies to HTTP/HTTPS.
|
|
3497
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
3496
3498
|
* For HTTP and HTTPS health checks, the default is `/`.
|
|
3497
3499
|
* For gRPC health checks, the default is `/AWS.ALB/healthcheck`.
|
|
3498
3500
|
"""
|
|
@@ -3540,11 +3542,13 @@ class TargetGroupHealthCheckArgs:
|
|
|
3540
3542
|
:param pulumi.Input[_builtins.str] matcher: The HTTP or gRPC codes to use when checking for a successful response from a target.
|
|
3541
3543
|
The `health_check.protocol` must be one of `HTTP` or `HTTPS` or the `target_type` must be `lambda`.
|
|
3542
3544
|
Values can be comma-separated individual values (e.g., "200,202") or a range of values (e.g., "200-299").
|
|
3545
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
3543
3546
|
* For gRPC-based target groups (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is `GRPC`), values can be between `0` and `99`. The default is `12`.
|
|
3544
3547
|
* When used with an Application Load Balancer (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is not `GRPC`), values can be between `200` and `499`. The default is `200`.
|
|
3545
3548
|
* When used with a Network Load Balancer (i.e., the `protocol` is one of `TCP`, `TCP_UDP`, `UDP`, or `TLS`), values can be between `200` and `599`. The default is `200-399`.
|
|
3546
3549
|
* When the `target_type` is `lambda`, values can be between `200` and `499`. The default is `200`.
|
|
3547
3550
|
:param pulumi.Input[_builtins.str] path: Destination for the health check request. Required for HTTP/HTTPS ALB and HTTP NLB. Only applies to HTTP/HTTPS.
|
|
3551
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
3548
3552
|
* For HTTP and HTTPS health checks, the default is `/`.
|
|
3549
3553
|
* For gRPC health checks, the default is `/AWS.ALB/healthcheck`.
|
|
3550
3554
|
:param pulumi.Input[_builtins.str] port: The port the load balancer uses when performing health checks on targets.
|
|
@@ -3620,6 +3624,7 @@ class TargetGroupHealthCheckArgs:
|
|
|
3620
3624
|
The HTTP or gRPC codes to use when checking for a successful response from a target.
|
|
3621
3625
|
The `health_check.protocol` must be one of `HTTP` or `HTTPS` or the `target_type` must be `lambda`.
|
|
3622
3626
|
Values can be comma-separated individual values (e.g., "200,202") or a range of values (e.g., "200-299").
|
|
3627
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
3623
3628
|
* For gRPC-based target groups (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is `GRPC`), values can be between `0` and `99`. The default is `12`.
|
|
3624
3629
|
* When used with an Application Load Balancer (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is not `GRPC`), values can be between `200` and `499`. The default is `200`.
|
|
3625
3630
|
* When used with a Network Load Balancer (i.e., the `protocol` is one of `TCP`, `TCP_UDP`, `UDP`, or `TLS`), values can be between `200` and `599`. The default is `200-399`.
|
|
@@ -3636,6 +3641,7 @@ class TargetGroupHealthCheckArgs:
|
|
|
3636
3641
|
def path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3637
3642
|
"""
|
|
3638
3643
|
Destination for the health check request. Required for HTTP/HTTPS ALB and HTTP NLB. Only applies to HTTP/HTTPS.
|
|
3644
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
3639
3645
|
* For HTTP and HTTPS health checks, the default is `/`.
|
|
3640
3646
|
* For gRPC health checks, the default is `/AWS.ALB/healthcheck`.
|
|
3641
3647
|
"""
|
pulumi_aws/alb/outputs.py
CHANGED
|
@@ -2609,11 +2609,13 @@ class TargetGroupHealthCheck(dict):
|
|
|
2609
2609
|
:param _builtins.str matcher: The HTTP or gRPC codes to use when checking for a successful response from a target.
|
|
2610
2610
|
The `health_check.protocol` must be one of `HTTP` or `HTTPS` or the `target_type` must be `lambda`.
|
|
2611
2611
|
Values can be comma-separated individual values (e.g., "200,202") or a range of values (e.g., "200-299").
|
|
2612
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
2612
2613
|
* For gRPC-based target groups (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is `GRPC`), values can be between `0` and `99`. The default is `12`.
|
|
2613
2614
|
* When used with an Application Load Balancer (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is not `GRPC`), values can be between `200` and `499`. The default is `200`.
|
|
2614
2615
|
* When used with a Network Load Balancer (i.e., the `protocol` is one of `TCP`, `TCP_UDP`, `UDP`, or `TLS`), values can be between `200` and `599`. The default is `200-399`.
|
|
2615
2616
|
* When the `target_type` is `lambda`, values can be between `200` and `499`. The default is `200`.
|
|
2616
2617
|
:param _builtins.str path: Destination for the health check request. Required for HTTP/HTTPS ALB and HTTP NLB. Only applies to HTTP/HTTPS.
|
|
2618
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
2617
2619
|
* For HTTP and HTTPS health checks, the default is `/`.
|
|
2618
2620
|
* For gRPC health checks, the default is `/AWS.ALB/healthcheck`.
|
|
2619
2621
|
:param _builtins.str port: The port the load balancer uses when performing health checks on targets.
|
|
@@ -2677,6 +2679,7 @@ class TargetGroupHealthCheck(dict):
|
|
|
2677
2679
|
The HTTP or gRPC codes to use when checking for a successful response from a target.
|
|
2678
2680
|
The `health_check.protocol` must be one of `HTTP` or `HTTPS` or the `target_type` must be `lambda`.
|
|
2679
2681
|
Values can be comma-separated individual values (e.g., "200,202") or a range of values (e.g., "200-299").
|
|
2682
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
2680
2683
|
* For gRPC-based target groups (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is `GRPC`), values can be between `0` and `99`. The default is `12`.
|
|
2681
2684
|
* When used with an Application Load Balancer (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is not `GRPC`), values can be between `200` and `499`. The default is `200`.
|
|
2682
2685
|
* When used with a Network Load Balancer (i.e., the `protocol` is one of `TCP`, `TCP_UDP`, `UDP`, or `TLS`), values can be between `200` and `599`. The default is `200-399`.
|
|
@@ -2689,6 +2692,7 @@ class TargetGroupHealthCheck(dict):
|
|
|
2689
2692
|
def path(self) -> Optional[_builtins.str]:
|
|
2690
2693
|
"""
|
|
2691
2694
|
Destination for the health check request. Required for HTTP/HTTPS ALB and HTTP NLB. Only applies to HTTP/HTTPS.
|
|
2695
|
+
Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
|
|
2692
2696
|
* For HTTP and HTTPS health checks, the default is `/`.
|
|
2693
2697
|
* For gRPC health checks, the default is `/AWS.ALB/healthcheck`.
|
|
2694
2698
|
"""
|
|
@@ -35,6 +35,7 @@ class DomainNameArgs:
|
|
|
35
35
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
36
36
|
regional_certificate_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
37
37
|
regional_certificate_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
38
|
+
routing_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
38
39
|
security_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
39
40
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
40
41
|
"""
|
|
@@ -55,6 +56,7 @@ class DomainNameArgs:
|
|
|
55
56
|
|
|
56
57
|
When uploading a certificate, the following arguments are supported:
|
|
57
58
|
:param pulumi.Input[_builtins.str] regional_certificate_name: User-friendly name of the certificate that will be used by regional endpoint for this domain name. Conflicts with `certificate_arn`, `certificate_name`, `certificate_body`, `certificate_chain`, and `certificate_private_key`.
|
|
59
|
+
:param pulumi.Input[_builtins.str] routing_mode: Mode to route traffic for the domain name. Valid values: `BASE_PATH_MAPPING_ONLY`, `ROUTING_RULE_ONLY`, `ROUTING_RULE_THEN_BASE_PATH_MAPPING`.
|
|
58
60
|
:param pulumi.Input[_builtins.str] security_policy: Transport Layer Security (TLS) version + cipher suite for this DomainName. Must be configured to perform drift detection. For a list of valid security policies, see [DomainName](https://docs.aws.amazon.com/apigateway/latest/api/API_DomainName.html) in the Amazon API Gateway API Reference.
|
|
59
61
|
: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.
|
|
60
62
|
|
|
@@ -87,6 +89,8 @@ class DomainNameArgs:
|
|
|
87
89
|
pulumi.set(__self__, "regional_certificate_arn", regional_certificate_arn)
|
|
88
90
|
if regional_certificate_name is not None:
|
|
89
91
|
pulumi.set(__self__, "regional_certificate_name", regional_certificate_name)
|
|
92
|
+
if routing_mode is not None:
|
|
93
|
+
pulumi.set(__self__, "routing_mode", routing_mode)
|
|
90
94
|
if security_policy is not None:
|
|
91
95
|
pulumi.set(__self__, "security_policy", security_policy)
|
|
92
96
|
if tags is not None:
|
|
@@ -262,6 +266,18 @@ class DomainNameArgs:
|
|
|
262
266
|
def regional_certificate_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
263
267
|
pulumi.set(self, "regional_certificate_name", value)
|
|
264
268
|
|
|
269
|
+
@_builtins.property
|
|
270
|
+
@pulumi.getter(name="routingMode")
|
|
271
|
+
def routing_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
272
|
+
"""
|
|
273
|
+
Mode to route traffic for the domain name. Valid values: `BASE_PATH_MAPPING_ONLY`, `ROUTING_RULE_ONLY`, `ROUTING_RULE_THEN_BASE_PATH_MAPPING`.
|
|
274
|
+
"""
|
|
275
|
+
return pulumi.get(self, "routing_mode")
|
|
276
|
+
|
|
277
|
+
@routing_mode.setter
|
|
278
|
+
def routing_mode(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
279
|
+
pulumi.set(self, "routing_mode", value)
|
|
280
|
+
|
|
265
281
|
@_builtins.property
|
|
266
282
|
@pulumi.getter(name="securityPolicy")
|
|
267
283
|
def security_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -313,6 +329,7 @@ class _DomainNameState:
|
|
|
313
329
|
regional_certificate_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
314
330
|
regional_domain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
315
331
|
regional_zone_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
332
|
+
routing_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
316
333
|
security_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
317
334
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
318
335
|
tags_all: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
@@ -341,6 +358,7 @@ class _DomainNameState:
|
|
|
341
358
|
:param pulumi.Input[_builtins.str] regional_certificate_name: User-friendly name of the certificate that will be used by regional endpoint for this domain name. Conflicts with `certificate_arn`, `certificate_name`, `certificate_body`, `certificate_chain`, and `certificate_private_key`.
|
|
342
359
|
:param pulumi.Input[_builtins.str] regional_domain_name: Hostname for the custom domain's regional endpoint.
|
|
343
360
|
:param pulumi.Input[_builtins.str] regional_zone_id: Hosted zone ID that can be used to create a Route53 alias record for the regional endpoint.
|
|
361
|
+
:param pulumi.Input[_builtins.str] routing_mode: Mode to route traffic for the domain name. Valid values: `BASE_PATH_MAPPING_ONLY`, `ROUTING_RULE_ONLY`, `ROUTING_RULE_THEN_BASE_PATH_MAPPING`.
|
|
344
362
|
:param pulumi.Input[_builtins.str] security_policy: Transport Layer Security (TLS) version + cipher suite for this DomainName. Must be configured to perform drift detection. For a list of valid security policies, see [DomainName](https://docs.aws.amazon.com/apigateway/latest/api/API_DomainName.html) in the Amazon API Gateway API Reference.
|
|
345
363
|
: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.
|
|
346
364
|
|
|
@@ -389,6 +407,8 @@ class _DomainNameState:
|
|
|
389
407
|
pulumi.set(__self__, "regional_domain_name", regional_domain_name)
|
|
390
408
|
if regional_zone_id is not None:
|
|
391
409
|
pulumi.set(__self__, "regional_zone_id", regional_zone_id)
|
|
410
|
+
if routing_mode is not None:
|
|
411
|
+
pulumi.set(__self__, "routing_mode", routing_mode)
|
|
392
412
|
if security_policy is not None:
|
|
393
413
|
pulumi.set(__self__, "security_policy", security_policy)
|
|
394
414
|
if tags is not None:
|
|
@@ -650,6 +670,18 @@ class _DomainNameState:
|
|
|
650
670
|
def regional_zone_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
651
671
|
pulumi.set(self, "regional_zone_id", value)
|
|
652
672
|
|
|
673
|
+
@_builtins.property
|
|
674
|
+
@pulumi.getter(name="routingMode")
|
|
675
|
+
def routing_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
676
|
+
"""
|
|
677
|
+
Mode to route traffic for the domain name. Valid values: `BASE_PATH_MAPPING_ONLY`, `ROUTING_RULE_ONLY`, `ROUTING_RULE_THEN_BASE_PATH_MAPPING`.
|
|
678
|
+
"""
|
|
679
|
+
return pulumi.get(self, "routing_mode")
|
|
680
|
+
|
|
681
|
+
@routing_mode.setter
|
|
682
|
+
def routing_mode(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
683
|
+
pulumi.set(self, "routing_mode", value)
|
|
684
|
+
|
|
653
685
|
@_builtins.property
|
|
654
686
|
@pulumi.getter(name="securityPolicy")
|
|
655
687
|
def security_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -709,6 +741,7 @@ class DomainName(pulumi.CustomResource):
|
|
|
709
741
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
710
742
|
regional_certificate_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
711
743
|
regional_certificate_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
744
|
+
routing_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
712
745
|
security_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
713
746
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
714
747
|
__props__=None):
|
|
@@ -838,6 +871,7 @@ class DomainName(pulumi.CustomResource):
|
|
|
838
871
|
|
|
839
872
|
When uploading a certificate, the following arguments are supported:
|
|
840
873
|
:param pulumi.Input[_builtins.str] regional_certificate_name: User-friendly name of the certificate that will be used by regional endpoint for this domain name. Conflicts with `certificate_arn`, `certificate_name`, `certificate_body`, `certificate_chain`, and `certificate_private_key`.
|
|
874
|
+
:param pulumi.Input[_builtins.str] routing_mode: Mode to route traffic for the domain name. Valid values: `BASE_PATH_MAPPING_ONLY`, `ROUTING_RULE_ONLY`, `ROUTING_RULE_THEN_BASE_PATH_MAPPING`.
|
|
841
875
|
:param pulumi.Input[_builtins.str] security_policy: Transport Layer Security (TLS) version + cipher suite for this DomainName. Must be configured to perform drift detection. For a list of valid security policies, see [DomainName](https://docs.aws.amazon.com/apigateway/latest/api/API_DomainName.html) in the Amazon API Gateway API Reference.
|
|
842
876
|
: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.
|
|
843
877
|
|
|
@@ -986,6 +1020,7 @@ class DomainName(pulumi.CustomResource):
|
|
|
986
1020
|
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
987
1021
|
regional_certificate_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
988
1022
|
regional_certificate_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1023
|
+
routing_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
989
1024
|
security_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
990
1025
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
991
1026
|
__props__=None):
|
|
@@ -1013,6 +1048,7 @@ class DomainName(pulumi.CustomResource):
|
|
|
1013
1048
|
__props__.__dict__["region"] = region
|
|
1014
1049
|
__props__.__dict__["regional_certificate_arn"] = regional_certificate_arn
|
|
1015
1050
|
__props__.__dict__["regional_certificate_name"] = regional_certificate_name
|
|
1051
|
+
__props__.__dict__["routing_mode"] = routing_mode
|
|
1016
1052
|
__props__.__dict__["security_policy"] = security_policy
|
|
1017
1053
|
__props__.__dict__["tags"] = tags
|
|
1018
1054
|
__props__.__dict__["arn"] = None
|
|
@@ -1056,6 +1092,7 @@ class DomainName(pulumi.CustomResource):
|
|
|
1056
1092
|
regional_certificate_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1057
1093
|
regional_domain_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1058
1094
|
regional_zone_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1095
|
+
routing_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1059
1096
|
security_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1060
1097
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
1061
1098
|
tags_all: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None) -> 'DomainName':
|
|
@@ -1089,6 +1126,7 @@ class DomainName(pulumi.CustomResource):
|
|
|
1089
1126
|
:param pulumi.Input[_builtins.str] regional_certificate_name: User-friendly name of the certificate that will be used by regional endpoint for this domain name. Conflicts with `certificate_arn`, `certificate_name`, `certificate_body`, `certificate_chain`, and `certificate_private_key`.
|
|
1090
1127
|
:param pulumi.Input[_builtins.str] regional_domain_name: Hostname for the custom domain's regional endpoint.
|
|
1091
1128
|
:param pulumi.Input[_builtins.str] regional_zone_id: Hosted zone ID that can be used to create a Route53 alias record for the regional endpoint.
|
|
1129
|
+
:param pulumi.Input[_builtins.str] routing_mode: Mode to route traffic for the domain name. Valid values: `BASE_PATH_MAPPING_ONLY`, `ROUTING_RULE_ONLY`, `ROUTING_RULE_THEN_BASE_PATH_MAPPING`.
|
|
1092
1130
|
:param pulumi.Input[_builtins.str] security_policy: Transport Layer Security (TLS) version + cipher suite for this DomainName. Must be configured to perform drift detection. For a list of valid security policies, see [DomainName](https://docs.aws.amazon.com/apigateway/latest/api/API_DomainName.html) in the Amazon API Gateway API Reference.
|
|
1093
1131
|
: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.
|
|
1094
1132
|
|
|
@@ -1120,6 +1158,7 @@ class DomainName(pulumi.CustomResource):
|
|
|
1120
1158
|
__props__.__dict__["regional_certificate_name"] = regional_certificate_name
|
|
1121
1159
|
__props__.__dict__["regional_domain_name"] = regional_domain_name
|
|
1122
1160
|
__props__.__dict__["regional_zone_id"] = regional_zone_id
|
|
1161
|
+
__props__.__dict__["routing_mode"] = routing_mode
|
|
1123
1162
|
__props__.__dict__["security_policy"] = security_policy
|
|
1124
1163
|
__props__.__dict__["tags"] = tags
|
|
1125
1164
|
__props__.__dict__["tags_all"] = tags_all
|
|
@@ -1295,6 +1334,14 @@ class DomainName(pulumi.CustomResource):
|
|
|
1295
1334
|
"""
|
|
1296
1335
|
return pulumi.get(self, "regional_zone_id")
|
|
1297
1336
|
|
|
1337
|
+
@_builtins.property
|
|
1338
|
+
@pulumi.getter(name="routingMode")
|
|
1339
|
+
def routing_mode(self) -> pulumi.Output[_builtins.str]:
|
|
1340
|
+
"""
|
|
1341
|
+
Mode to route traffic for the domain name. Valid values: `BASE_PATH_MAPPING_ONLY`, `ROUTING_RULE_ONLY`, `ROUTING_RULE_THEN_BASE_PATH_MAPPING`.
|
|
1342
|
+
"""
|
|
1343
|
+
return pulumi.get(self, "routing_mode")
|
|
1344
|
+
|
|
1298
1345
|
@_builtins.property
|
|
1299
1346
|
@pulumi.getter(name="securityPolicy")
|
|
1300
1347
|
def security_policy(self) -> pulumi.Output[_builtins.str]:
|