pulumi-aws 7.11.1__py3-none-any.whl → 7.12.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 +57 -0
- pulumi_aws/acm/certificate.py +20 -20
- pulumi_aws/acmpca/certificate.py +8 -8
- pulumi_aws/apigateway/account.py +0 -4
- pulumi_aws/appflow/_inputs.py +33 -0
- pulumi_aws/appflow/outputs.py +22 -0
- pulumi_aws/appsync/graph_ql_api.py +84 -0
- pulumi_aws/bedrock/_inputs.py +97 -21
- pulumi_aws/bedrock/agent_agent_alias.py +94 -0
- pulumi_aws/bedrock/agentcore_agent_runtime.py +4 -4
- pulumi_aws/bedrock/agentcore_browser.py +42 -0
- pulumi_aws/bedrock/agentcore_gateway_target.py +217 -7
- pulumi_aws/bedrock/agentcore_memory.py +37 -9
- pulumi_aws/bedrock/agentcore_oauth2_credential_provider.py +38 -0
- pulumi_aws/bedrock/outputs.py +64 -17
- pulumi_aws/cloudfront/_inputs.py +15 -14
- pulumi_aws/cloudfront/distribution.py +28 -0
- pulumi_aws/cloudfront/outputs.py +10 -9
- pulumi_aws/cloudhsmv2/cluster.py +64 -0
- pulumi_aws/cloudwatch/_inputs.py +9 -8
- pulumi_aws/cloudwatch/contributor_managed_insight_rule.py +20 -0
- pulumi_aws/cloudwatch/log_delivery_destination.py +53 -12
- pulumi_aws/cloudwatch/outputs.py +6 -5
- pulumi_aws/codebuild/webhook.py +16 -16
- pulumi_aws/codepipeline/webhook.py +16 -16
- pulumi_aws/connect/_inputs.py +50 -4
- pulumi_aws/connect/outputs.py +95 -4
- pulumi_aws/connect/routing_profile.py +42 -18
- pulumi_aws/datasync/location_fsx_ontap_file_system.py +34 -0
- pulumi_aws/datazone/project.py +24 -0
- pulumi_aws/detective/organization_configuration.py +20 -0
- pulumi_aws/dms/_inputs.py +3 -3
- pulumi_aws/dms/outputs.py +2 -2
- pulumi_aws/ec2/__init__.py +1 -0
- pulumi_aws/ec2/_inputs.py +182 -0
- pulumi_aws/ec2/allowed_images_settings.py +338 -0
- pulumi_aws/ec2/get_coip_pools.py +24 -0
- pulumi_aws/ec2/image_block_public_access.py +48 -1
- pulumi_aws/ec2/outputs.py +167 -0
- pulumi_aws/ec2/security_group.py +6 -6
- pulumi_aws/ec2/serial_console_access.py +50 -3
- pulumi_aws/ec2/vpc_endpoint.py +92 -0
- pulumi_aws/ec2clientvpn/authorization_rule.py +7 -7
- pulumi_aws/ec2clientvpn/route.py +7 -7
- pulumi_aws/ec2transitgateway/instance_connect_endpoint.py +47 -0
- pulumi_aws/ecrpublic/get_images.py +24 -0
- pulumi_aws/ecs/_inputs.py +172 -33
- pulumi_aws/ecs/get_service.py +318 -7
- pulumi_aws/ecs/outputs.py +957 -86
- pulumi_aws/ecs/service.py +76 -0
- pulumi_aws/eks/_inputs.py +195 -5
- pulumi_aws/eks/outputs.py +164 -4
- pulumi_aws/elasticache/_inputs.py +154 -0
- pulumi_aws/elasticache/get_replication_group.py +23 -9
- pulumi_aws/elasticache/outputs.py +204 -0
- pulumi_aws/elasticache/replication_group.py +115 -0
- pulumi_aws/elasticache/reserved_cache_node.py +28 -0
- pulumi_aws/finspace/kx_cluster.py +76 -0
- pulumi_aws/fis/__init__.py +1 -0
- pulumi_aws/fis/target_account_configuration.py +401 -0
- pulumi_aws/glue/job.py +7 -7
- pulumi_aws/guardduty/malware_protection_plan.py +50 -0
- pulumi_aws/guardduty/member_detector_feature.py +42 -0
- pulumi_aws/invoicing/__init__.py +11 -0
- pulumi_aws/invoicing/_inputs.py +128 -0
- pulumi_aws/invoicing/invoice_unit.py +620 -0
- pulumi_aws/invoicing/outputs.py +99 -0
- pulumi_aws/iot/ca_certificate.py +32 -32
- pulumi_aws/iot/get_registration_code.py +8 -8
- pulumi_aws/ivschat/logging_configuration.py +28 -0
- pulumi_aws/kinesis/get_stream.py +15 -1
- pulumi_aws/kinesis/stream.py +47 -0
- pulumi_aws/kms/key.py +7 -7
- pulumi_aws/licensemanager/license_grant.py +36 -0
- pulumi_aws/m2/environment.py +150 -0
- pulumi_aws/networkfirewall/tls_inspection_configuration.py +84 -0
- pulumi_aws/networkflowmonitor/__init__.py +12 -0
- pulumi_aws/networkflowmonitor/_inputs.py +412 -0
- pulumi_aws/networkflowmonitor/monitor.py +568 -0
- pulumi_aws/networkflowmonitor/outputs.py +302 -0
- pulumi_aws/networkflowmonitor/scope.py +443 -0
- pulumi_aws/observabilityadmin/__init__.py +11 -0
- pulumi_aws/observabilityadmin/_inputs.py +506 -0
- pulumi_aws/observabilityadmin/centralization_rule_for_organization.py +637 -0
- pulumi_aws/observabilityadmin/outputs.py +415 -0
- pulumi_aws/opensearch/_inputs.py +92 -133
- pulumi_aws/opensearch/authorize_vpc_endpoint_access.py +4 -4
- pulumi_aws/opensearch/domain.py +60 -0
- pulumi_aws/opensearch/get_domain.py +16 -9
- pulumi_aws/opensearch/outputs.py +131 -2
- pulumi_aws/organizations/get_policies.py +2 -2
- pulumi_aws/organizations/get_policies_for_target.py +2 -2
- pulumi_aws/organizations/get_policy.py +1 -1
- pulumi_aws/organizations/organization.py +7 -7
- pulumi_aws/organizations/policy.py +35 -7
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/quicksight/analysis.py +108 -0
- pulumi_aws/quicksight/dashboard.py +110 -0
- pulumi_aws/quicksight/template.py +126 -0
- pulumi_aws/redshift/cluster_snapshot.py +28 -0
- pulumi_aws/redshift/get_cluster.py +52 -0
- pulumi_aws/redshift/snapshot_copy_grant.py +22 -0
- pulumi_aws/route53/profiles_association.py +30 -0
- pulumi_aws/route53/profiles_resource_association.py +34 -0
- pulumi_aws/s3control/multi_region_access_point_policy.py +76 -0
- pulumi_aws/s3tables/table.py +76 -1
- pulumi_aws/s3tables/table_bucket.py +78 -3
- pulumi_aws/sagemaker/_inputs.py +225 -232
- pulumi_aws/sagemaker/endpoint_configuration.py +111 -64
- pulumi_aws/sagemaker/outputs.py +154 -158
- pulumi_aws/ssmincidents/get_response_plan.py +14 -0
- pulumi_aws/ssoadmin/account_assignment.py +4 -4
- pulumi_aws/transfer/profile.py +20 -0
- pulumi_aws/transfer/server.py +7 -0
- pulumi_aws/transfer/ssh_key.py +6 -6
- pulumi_aws/wafv2/rule_group.py +440 -0
- pulumi_aws/workspacesweb/session_logger_association.py +80 -0
- pulumi_aws/workspacesweb/trust_store_association.py +24 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/RECORD +122 -107
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/top_level.txt +0 -0
pulumi_aws/__init__.py
CHANGED
|
@@ -255,6 +255,8 @@ if typing.TYPE_CHECKING:
|
|
|
255
255
|
inspector = __inspector
|
|
256
256
|
import pulumi_aws.inspector2 as __inspector2
|
|
257
257
|
inspector2 = __inspector2
|
|
258
|
+
import pulumi_aws.invoicing as __invoicing
|
|
259
|
+
invoicing = __invoicing
|
|
258
260
|
import pulumi_aws.iot as __iot
|
|
259
261
|
iot = __iot
|
|
260
262
|
import pulumi_aws.ivs as __ivs
|
|
@@ -317,6 +319,8 @@ if typing.TYPE_CHECKING:
|
|
|
317
319
|
neptunegraph = __neptunegraph
|
|
318
320
|
import pulumi_aws.networkfirewall as __networkfirewall
|
|
319
321
|
networkfirewall = __networkfirewall
|
|
322
|
+
import pulumi_aws.networkflowmonitor as __networkflowmonitor
|
|
323
|
+
networkflowmonitor = __networkflowmonitor
|
|
320
324
|
import pulumi_aws.networkmanager as __networkmanager
|
|
321
325
|
networkmanager = __networkmanager
|
|
322
326
|
import pulumi_aws.networkmonitor as __networkmonitor
|
|
@@ -325,6 +329,8 @@ if typing.TYPE_CHECKING:
|
|
|
325
329
|
notifications = __notifications
|
|
326
330
|
import pulumi_aws.oam as __oam
|
|
327
331
|
oam = __oam
|
|
332
|
+
import pulumi_aws.observabilityadmin as __observabilityadmin
|
|
333
|
+
observabilityadmin = __observabilityadmin
|
|
328
334
|
import pulumi_aws.odb as __odb
|
|
329
335
|
odb = __odb
|
|
330
336
|
import pulumi_aws.opensearch as __opensearch
|
|
@@ -589,6 +595,7 @@ else:
|
|
|
589
595
|
imagebuilder = _utilities.lazy_import('pulumi_aws.imagebuilder')
|
|
590
596
|
inspector = _utilities.lazy_import('pulumi_aws.inspector')
|
|
591
597
|
inspector2 = _utilities.lazy_import('pulumi_aws.inspector2')
|
|
598
|
+
invoicing = _utilities.lazy_import('pulumi_aws.invoicing')
|
|
592
599
|
iot = _utilities.lazy_import('pulumi_aws.iot')
|
|
593
600
|
ivs = _utilities.lazy_import('pulumi_aws.ivs')
|
|
594
601
|
ivschat = _utilities.lazy_import('pulumi_aws.ivschat')
|
|
@@ -620,10 +627,12 @@ else:
|
|
|
620
627
|
neptune = _utilities.lazy_import('pulumi_aws.neptune')
|
|
621
628
|
neptunegraph = _utilities.lazy_import('pulumi_aws.neptunegraph')
|
|
622
629
|
networkfirewall = _utilities.lazy_import('pulumi_aws.networkfirewall')
|
|
630
|
+
networkflowmonitor = _utilities.lazy_import('pulumi_aws.networkflowmonitor')
|
|
623
631
|
networkmanager = _utilities.lazy_import('pulumi_aws.networkmanager')
|
|
624
632
|
networkmonitor = _utilities.lazy_import('pulumi_aws.networkmonitor')
|
|
625
633
|
notifications = _utilities.lazy_import('pulumi_aws.notifications')
|
|
626
634
|
oam = _utilities.lazy_import('pulumi_aws.oam')
|
|
635
|
+
observabilityadmin = _utilities.lazy_import('pulumi_aws.observabilityadmin')
|
|
627
636
|
odb = _utilities.lazy_import('pulumi_aws.odb')
|
|
628
637
|
opensearch = _utilities.lazy_import('pulumi_aws.opensearch')
|
|
629
638
|
opensearchingest = _utilities.lazy_import('pulumi_aws.opensearchingest')
|
|
@@ -4534,6 +4543,14 @@ _utilities.register(
|
|
|
4534
4543
|
"aws:ebs/volume:Volume": "Volume"
|
|
4535
4544
|
}
|
|
4536
4545
|
},
|
|
4546
|
+
{
|
|
4547
|
+
"pkg": "aws",
|
|
4548
|
+
"mod": "ec2/allowedImagesSettings",
|
|
4549
|
+
"fqn": "pulumi_aws.ec2",
|
|
4550
|
+
"classes": {
|
|
4551
|
+
"aws:ec2/allowedImagesSettings:AllowedImagesSettings": "AllowedImagesSettings"
|
|
4552
|
+
}
|
|
4553
|
+
},
|
|
4537
4554
|
{
|
|
4538
4555
|
"pkg": "aws",
|
|
4539
4556
|
"mod": "ec2/ami",
|
|
@@ -6222,6 +6239,14 @@ _utilities.register(
|
|
|
6222
6239
|
"aws:fis/experimentTemplate:ExperimentTemplate": "ExperimentTemplate"
|
|
6223
6240
|
}
|
|
6224
6241
|
},
|
|
6242
|
+
{
|
|
6243
|
+
"pkg": "aws",
|
|
6244
|
+
"mod": "fis/targetAccountConfiguration",
|
|
6245
|
+
"fqn": "pulumi_aws.fis",
|
|
6246
|
+
"classes": {
|
|
6247
|
+
"aws:fis/targetAccountConfiguration:TargetAccountConfiguration": "TargetAccountConfiguration"
|
|
6248
|
+
}
|
|
6249
|
+
},
|
|
6225
6250
|
{
|
|
6226
6251
|
"pkg": "aws",
|
|
6227
6252
|
"mod": "fms/adminAccount",
|
|
@@ -7214,6 +7239,14 @@ _utilities.register(
|
|
|
7214
7239
|
"aws:inspector2/organizationConfiguration:OrganizationConfiguration": "OrganizationConfiguration"
|
|
7215
7240
|
}
|
|
7216
7241
|
},
|
|
7242
|
+
{
|
|
7243
|
+
"pkg": "aws",
|
|
7244
|
+
"mod": "invoicing/invoiceUnit",
|
|
7245
|
+
"fqn": "pulumi_aws.invoicing",
|
|
7246
|
+
"classes": {
|
|
7247
|
+
"aws:invoicing/invoiceUnit:InvoiceUnit": "InvoiceUnit"
|
|
7248
|
+
}
|
|
7249
|
+
},
|
|
7217
7250
|
{
|
|
7218
7251
|
"pkg": "aws",
|
|
7219
7252
|
"mod": "iot/authorizer",
|
|
@@ -8686,6 +8719,22 @@ _utilities.register(
|
|
|
8686
8719
|
"aws:networkfirewall/vpcEndpointAssociation:VpcEndpointAssociation": "VpcEndpointAssociation"
|
|
8687
8720
|
}
|
|
8688
8721
|
},
|
|
8722
|
+
{
|
|
8723
|
+
"pkg": "aws",
|
|
8724
|
+
"mod": "networkflowmonitor/monitor",
|
|
8725
|
+
"fqn": "pulumi_aws.networkflowmonitor",
|
|
8726
|
+
"classes": {
|
|
8727
|
+
"aws:networkflowmonitor/monitor:Monitor": "Monitor"
|
|
8728
|
+
}
|
|
8729
|
+
},
|
|
8730
|
+
{
|
|
8731
|
+
"pkg": "aws",
|
|
8732
|
+
"mod": "networkflowmonitor/scope",
|
|
8733
|
+
"fqn": "pulumi_aws.networkflowmonitor",
|
|
8734
|
+
"classes": {
|
|
8735
|
+
"aws:networkflowmonitor/scope:Scope": "Scope"
|
|
8736
|
+
}
|
|
8737
|
+
},
|
|
8689
8738
|
{
|
|
8690
8739
|
"pkg": "aws",
|
|
8691
8740
|
"mod": "networkmanager/attachmentAccepter",
|
|
@@ -8918,6 +8967,14 @@ _utilities.register(
|
|
|
8918
8967
|
"aws:oam/sinkPolicy:SinkPolicy": "SinkPolicy"
|
|
8919
8968
|
}
|
|
8920
8969
|
},
|
|
8970
|
+
{
|
|
8971
|
+
"pkg": "aws",
|
|
8972
|
+
"mod": "observabilityadmin/centralizationRuleForOrganization",
|
|
8973
|
+
"fqn": "pulumi_aws.observabilityadmin",
|
|
8974
|
+
"classes": {
|
|
8975
|
+
"aws:observabilityadmin/centralizationRuleForOrganization:CentralizationRuleForOrganization": "CentralizationRuleForOrganization"
|
|
8976
|
+
}
|
|
8977
|
+
},
|
|
8921
8978
|
{
|
|
8922
8979
|
"pkg": "aws",
|
|
8923
8980
|
"mod": "odb/cloudAutonomousVmCluster",
|
pulumi_aws/acm/certificate.py
CHANGED
|
@@ -637,23 +637,23 @@ class Certificate(pulumi.CustomResource):
|
|
|
637
637
|
import pulumi_aws as aws
|
|
638
638
|
import pulumi_tls as tls
|
|
639
639
|
|
|
640
|
-
example = tls.
|
|
641
|
-
example_self_signed_cert = tls.
|
|
642
|
-
key_algorithm=RSA,
|
|
640
|
+
example = tls.PrivateKey("example", algorithm="RSA")
|
|
641
|
+
example_self_signed_cert = tls.SelfSignedCert("example",
|
|
642
|
+
key_algorithm="RSA",
|
|
643
643
|
private_key_pem=example.private_key_pem,
|
|
644
644
|
subject=[{
|
|
645
|
-
commonName: example.com,
|
|
646
|
-
organization: ACME Examples, Inc,
|
|
645
|
+
"commonName": "example.com",
|
|
646
|
+
"organization": "ACME Examples, Inc",
|
|
647
647
|
}],
|
|
648
648
|
validity_period_hours=12,
|
|
649
649
|
allowed_uses=[
|
|
650
|
-
key_encipherment,
|
|
651
|
-
digital_signature,
|
|
652
|
-
server_auth,
|
|
650
|
+
"key_encipherment",
|
|
651
|
+
"digital_signature",
|
|
652
|
+
"server_auth",
|
|
653
653
|
])
|
|
654
654
|
cert = aws.acm.Certificate("cert",
|
|
655
|
-
private_key=example
|
|
656
|
-
certificate_body=example_self_signed_cert
|
|
655
|
+
private_key=example.private_key_pem,
|
|
656
|
+
certificate_body=example_self_signed_cert.cert_pem)
|
|
657
657
|
```
|
|
658
658
|
|
|
659
659
|
### Referencing domain_validation_options With for_each Based Resources
|
|
@@ -769,23 +769,23 @@ class Certificate(pulumi.CustomResource):
|
|
|
769
769
|
import pulumi_aws as aws
|
|
770
770
|
import pulumi_tls as tls
|
|
771
771
|
|
|
772
|
-
example = tls.
|
|
773
|
-
example_self_signed_cert = tls.
|
|
774
|
-
key_algorithm=RSA,
|
|
772
|
+
example = tls.PrivateKey("example", algorithm="RSA")
|
|
773
|
+
example_self_signed_cert = tls.SelfSignedCert("example",
|
|
774
|
+
key_algorithm="RSA",
|
|
775
775
|
private_key_pem=example.private_key_pem,
|
|
776
776
|
subject=[{
|
|
777
|
-
commonName: example.com,
|
|
778
|
-
organization: ACME Examples, Inc,
|
|
777
|
+
"commonName": "example.com",
|
|
778
|
+
"organization": "ACME Examples, Inc",
|
|
779
779
|
}],
|
|
780
780
|
validity_period_hours=12,
|
|
781
781
|
allowed_uses=[
|
|
782
|
-
key_encipherment,
|
|
783
|
-
digital_signature,
|
|
784
|
-
server_auth,
|
|
782
|
+
"key_encipherment",
|
|
783
|
+
"digital_signature",
|
|
784
|
+
"server_auth",
|
|
785
785
|
])
|
|
786
786
|
cert = aws.acm.Certificate("cert",
|
|
787
|
-
private_key=example
|
|
788
|
-
certificate_body=example_self_signed_cert
|
|
787
|
+
private_key=example.private_key_pem,
|
|
788
|
+
certificate_body=example_self_signed_cert.cert_pem)
|
|
789
789
|
```
|
|
790
790
|
|
|
791
791
|
### Referencing domain_validation_options With for_each Based Resources
|
pulumi_aws/acmpca/certificate.py
CHANGED
|
@@ -346,15 +346,15 @@ class Certificate(pulumi.CustomResource):
|
|
|
346
346
|
},
|
|
347
347
|
},
|
|
348
348
|
permanent_deletion_time_in_days=7)
|
|
349
|
-
key = tls.
|
|
350
|
-
csr = tls.
|
|
349
|
+
key = tls.PrivateKey("key", algorithm="RSA")
|
|
350
|
+
csr = tls.CertRequest("csr",
|
|
351
351
|
private_key_pem=key.private_key_pem,
|
|
352
352
|
subject=[{
|
|
353
|
-
commonName: example,
|
|
353
|
+
"commonName": "example",
|
|
354
354
|
}])
|
|
355
355
|
example = aws.acmpca.Certificate("example",
|
|
356
356
|
certificate_authority_arn=example_certificate_authority.arn,
|
|
357
|
-
certificate_signing_request=csr
|
|
357
|
+
certificate_signing_request=csr.cert_request_pem,
|
|
358
358
|
signing_algorithm="SHA256WITHRSA",
|
|
359
359
|
validity={
|
|
360
360
|
"type": "YEARS",
|
|
@@ -419,15 +419,15 @@ class Certificate(pulumi.CustomResource):
|
|
|
419
419
|
},
|
|
420
420
|
},
|
|
421
421
|
permanent_deletion_time_in_days=7)
|
|
422
|
-
key = tls.
|
|
423
|
-
csr = tls.
|
|
422
|
+
key = tls.PrivateKey("key", algorithm="RSA")
|
|
423
|
+
csr = tls.CertRequest("csr",
|
|
424
424
|
private_key_pem=key.private_key_pem,
|
|
425
425
|
subject=[{
|
|
426
|
-
commonName: example,
|
|
426
|
+
"commonName": "example",
|
|
427
427
|
}])
|
|
428
428
|
example = aws.acmpca.Certificate("example",
|
|
429
429
|
certificate_authority_arn=example_certificate_authority.arn,
|
|
430
|
-
certificate_signing_request=csr
|
|
430
|
+
certificate_signing_request=csr.cert_request_pem,
|
|
431
431
|
signing_algorithm="SHA256WITHRSA",
|
|
432
432
|
validity={
|
|
433
433
|
"type": "YEARS",
|
pulumi_aws/apigateway/account.py
CHANGED
|
@@ -158,8 +158,6 @@ class Account(pulumi.CustomResource):
|
|
|
158
158
|
"""
|
|
159
159
|
Provides a settings of an API Gateway Account. Settings is applied region-wide per `provider` block.
|
|
160
160
|
|
|
161
|
-
> **Note:** By default, destroying this resource will keep your account settings intact. Set `reset_on_delete` to `true` to reset the account setttings to default. In a future major version of the provider, destroying the resource will reset account settings.
|
|
162
|
-
|
|
163
161
|
## Example Usage
|
|
164
162
|
|
|
165
163
|
```python
|
|
@@ -219,8 +217,6 @@ class Account(pulumi.CustomResource):
|
|
|
219
217
|
"""
|
|
220
218
|
Provides a settings of an API Gateway Account. Settings is applied region-wide per `provider` block.
|
|
221
219
|
|
|
222
|
-
> **Note:** By default, destroying this resource will keep your account settings intact. Set `reset_on_delete` to `true` to reset the account setttings to default. In a future major version of the provider, destroying the resource will reset account settings.
|
|
223
|
-
|
|
224
220
|
## Example Usage
|
|
225
221
|
|
|
226
222
|
```python
|
pulumi_aws/appflow/_inputs.py
CHANGED
|
@@ -7491,6 +7491,17 @@ if not MYPY:
|
|
|
7491
7491
|
timezone: NotRequired[pulumi.Input[_builtins.str]]
|
|
7492
7492
|
"""
|
|
7493
7493
|
Time zone used when referring to the date and time of a scheduled-triggered flow, such as `America/New_York`.
|
|
7494
|
+
|
|
7495
|
+
```python
|
|
7496
|
+
import pulumi
|
|
7497
|
+
import pulumi_aws as aws
|
|
7498
|
+
|
|
7499
|
+
example = aws.appflow.Flow("example", trigger_config={
|
|
7500
|
+
"scheduled": [{
|
|
7501
|
+
"scheduleExpression": "rate(1minutes)",
|
|
7502
|
+
}],
|
|
7503
|
+
})
|
|
7504
|
+
```
|
|
7494
7505
|
"""
|
|
7495
7506
|
elif False:
|
|
7496
7507
|
FlowTriggerConfigTriggerPropertiesScheduledArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -7513,6 +7524,17 @@ class FlowTriggerConfigTriggerPropertiesScheduledArgs:
|
|
|
7513
7524
|
:param pulumi.Input[_builtins.int] schedule_offset: Optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.
|
|
7514
7525
|
:param pulumi.Input[_builtins.str] schedule_start_time: Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
|
|
7515
7526
|
:param pulumi.Input[_builtins.str] timezone: Time zone used when referring to the date and time of a scheduled-triggered flow, such as `America/New_York`.
|
|
7527
|
+
|
|
7528
|
+
```python
|
|
7529
|
+
import pulumi
|
|
7530
|
+
import pulumi_aws as aws
|
|
7531
|
+
|
|
7532
|
+
example = aws.appflow.Flow("example", trigger_config={
|
|
7533
|
+
"scheduled": [{
|
|
7534
|
+
"scheduleExpression": "rate(1minutes)",
|
|
7535
|
+
}],
|
|
7536
|
+
})
|
|
7537
|
+
```
|
|
7516
7538
|
"""
|
|
7517
7539
|
pulumi.set(__self__, "schedule_expression", schedule_expression)
|
|
7518
7540
|
if data_pull_mode is not None:
|
|
@@ -7605,6 +7627,17 @@ class FlowTriggerConfigTriggerPropertiesScheduledArgs:
|
|
|
7605
7627
|
def timezone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
7606
7628
|
"""
|
|
7607
7629
|
Time zone used when referring to the date and time of a scheduled-triggered flow, such as `America/New_York`.
|
|
7630
|
+
|
|
7631
|
+
```python
|
|
7632
|
+
import pulumi
|
|
7633
|
+
import pulumi_aws as aws
|
|
7634
|
+
|
|
7635
|
+
example = aws.appflow.Flow("example", trigger_config={
|
|
7636
|
+
"scheduled": [{
|
|
7637
|
+
"scheduleExpression": "rate(1minutes)",
|
|
7638
|
+
}],
|
|
7639
|
+
})
|
|
7640
|
+
```
|
|
7608
7641
|
"""
|
|
7609
7642
|
return pulumi.get(self, "timezone")
|
|
7610
7643
|
|
pulumi_aws/appflow/outputs.py
CHANGED
|
@@ -6277,6 +6277,17 @@ class FlowTriggerConfigTriggerPropertiesScheduled(dict):
|
|
|
6277
6277
|
:param _builtins.int schedule_offset: Optional offset that is added to the time interval for a schedule-triggered flow. Maximum value of 36000.
|
|
6278
6278
|
:param _builtins.str schedule_start_time: Scheduled start time for a schedule-triggered flow. Must be a valid RFC3339 timestamp.
|
|
6279
6279
|
:param _builtins.str timezone: Time zone used when referring to the date and time of a scheduled-triggered flow, such as `America/New_York`.
|
|
6280
|
+
|
|
6281
|
+
```python
|
|
6282
|
+
import pulumi
|
|
6283
|
+
import pulumi_aws as aws
|
|
6284
|
+
|
|
6285
|
+
example = aws.appflow.Flow("example", trigger_config={
|
|
6286
|
+
"scheduled": [{
|
|
6287
|
+
"scheduleExpression": "rate(1minutes)",
|
|
6288
|
+
}],
|
|
6289
|
+
})
|
|
6290
|
+
```
|
|
6280
6291
|
"""
|
|
6281
6292
|
pulumi.set(__self__, "schedule_expression", schedule_expression)
|
|
6282
6293
|
if data_pull_mode is not None:
|
|
@@ -6345,6 +6356,17 @@ class FlowTriggerConfigTriggerPropertiesScheduled(dict):
|
|
|
6345
6356
|
def timezone(self) -> Optional[_builtins.str]:
|
|
6346
6357
|
"""
|
|
6347
6358
|
Time zone used when referring to the date and time of a scheduled-triggered flow, such as `America/New_York`.
|
|
6359
|
+
|
|
6360
|
+
```python
|
|
6361
|
+
import pulumi
|
|
6362
|
+
import pulumi_aws as aws
|
|
6363
|
+
|
|
6364
|
+
example = aws.appflow.Flow("example", trigger_config={
|
|
6365
|
+
"scheduled": [{
|
|
6366
|
+
"scheduleExpression": "rate(1minutes)",
|
|
6367
|
+
}],
|
|
6368
|
+
})
|
|
6369
|
+
```
|
|
6348
6370
|
"""
|
|
6349
6371
|
return pulumi.get(self, "timezone")
|
|
6350
6372
|
|
|
@@ -835,6 +835,48 @@ class GraphQLApi(pulumi.CustomResource):
|
|
|
835
835
|
|
|
836
836
|
### Associate Web ACL (v2)
|
|
837
837
|
|
|
838
|
+
```python
|
|
839
|
+
import pulumi
|
|
840
|
+
import pulumi_aws as aws
|
|
841
|
+
|
|
842
|
+
example = aws.appsync.GraphQLApi("example",
|
|
843
|
+
authentication_type="API_KEY",
|
|
844
|
+
name="example")
|
|
845
|
+
example_web_acl = aws.wafv2.WebAcl("example",
|
|
846
|
+
name="managed-rule-example",
|
|
847
|
+
description="Example of a managed rule.",
|
|
848
|
+
scope="REGIONAL",
|
|
849
|
+
default_action={
|
|
850
|
+
"allow": {},
|
|
851
|
+
},
|
|
852
|
+
rules=[{
|
|
853
|
+
"name": "rule-1",
|
|
854
|
+
"priority": 1,
|
|
855
|
+
"override_action": {
|
|
856
|
+
"block": [{}],
|
|
857
|
+
},
|
|
858
|
+
"statement": {
|
|
859
|
+
"managed_rule_group_statement": {
|
|
860
|
+
"name": "AWSManagedRulesCommonRuleSet",
|
|
861
|
+
"vendor_name": "AWS",
|
|
862
|
+
},
|
|
863
|
+
},
|
|
864
|
+
"visibility_config": {
|
|
865
|
+
"cloudwatch_metrics_enabled": False,
|
|
866
|
+
"metric_name": "friendly-rule-metric-name",
|
|
867
|
+
"sampled_requests_enabled": False,
|
|
868
|
+
},
|
|
869
|
+
}],
|
|
870
|
+
visibility_config={
|
|
871
|
+
"cloudwatch_metrics_enabled": False,
|
|
872
|
+
"metric_name": "friendly-metric-name",
|
|
873
|
+
"sampled_requests_enabled": False,
|
|
874
|
+
})
|
|
875
|
+
example_web_acl_association = aws.wafv2.WebAclAssociation("example",
|
|
876
|
+
resource_arn=example.arn,
|
|
877
|
+
web_acl_arn=example_web_acl.arn)
|
|
878
|
+
```
|
|
879
|
+
|
|
838
880
|
### GraphQL run complexity, query depth, and introspection
|
|
839
881
|
|
|
840
882
|
```python
|
|
@@ -1025,6 +1067,48 @@ class GraphQLApi(pulumi.CustomResource):
|
|
|
1025
1067
|
|
|
1026
1068
|
### Associate Web ACL (v2)
|
|
1027
1069
|
|
|
1070
|
+
```python
|
|
1071
|
+
import pulumi
|
|
1072
|
+
import pulumi_aws as aws
|
|
1073
|
+
|
|
1074
|
+
example = aws.appsync.GraphQLApi("example",
|
|
1075
|
+
authentication_type="API_KEY",
|
|
1076
|
+
name="example")
|
|
1077
|
+
example_web_acl = aws.wafv2.WebAcl("example",
|
|
1078
|
+
name="managed-rule-example",
|
|
1079
|
+
description="Example of a managed rule.",
|
|
1080
|
+
scope="REGIONAL",
|
|
1081
|
+
default_action={
|
|
1082
|
+
"allow": {},
|
|
1083
|
+
},
|
|
1084
|
+
rules=[{
|
|
1085
|
+
"name": "rule-1",
|
|
1086
|
+
"priority": 1,
|
|
1087
|
+
"override_action": {
|
|
1088
|
+
"block": [{}],
|
|
1089
|
+
},
|
|
1090
|
+
"statement": {
|
|
1091
|
+
"managed_rule_group_statement": {
|
|
1092
|
+
"name": "AWSManagedRulesCommonRuleSet",
|
|
1093
|
+
"vendor_name": "AWS",
|
|
1094
|
+
},
|
|
1095
|
+
},
|
|
1096
|
+
"visibility_config": {
|
|
1097
|
+
"cloudwatch_metrics_enabled": False,
|
|
1098
|
+
"metric_name": "friendly-rule-metric-name",
|
|
1099
|
+
"sampled_requests_enabled": False,
|
|
1100
|
+
},
|
|
1101
|
+
}],
|
|
1102
|
+
visibility_config={
|
|
1103
|
+
"cloudwatch_metrics_enabled": False,
|
|
1104
|
+
"metric_name": "friendly-metric-name",
|
|
1105
|
+
"sampled_requests_enabled": False,
|
|
1106
|
+
})
|
|
1107
|
+
example_web_acl_association = aws.wafv2.WebAclAssociation("example",
|
|
1108
|
+
resource_arn=example.arn,
|
|
1109
|
+
web_acl_arn=example_web_acl.arn)
|
|
1110
|
+
```
|
|
1111
|
+
|
|
1028
1112
|
### GraphQL run complexity, query depth, and introspection
|
|
1029
1113
|
|
|
1030
1114
|
```python
|