pulumi-aws-native 1.38.0a1761631437__py3-none-any.whl → 1.39.0a1762376209__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_aws_native/__init__.py +19 -1
- pulumi_aws_native/amazonmq/_enums.py +4 -12
- pulumi_aws_native/amazonmq/_inputs.py +21 -91
- pulumi_aws_native/amazonmq/broker.py +56 -67
- pulumi_aws_native/amazonmq/get_broker.py +6 -13
- pulumi_aws_native/amazonmq/outputs.py +14 -54
- pulumi_aws_native/appstream/get_image_builder.py +0 -4
- pulumi_aws_native/appstream/image_builder.py +0 -16
- pulumi_aws_native/aps/_inputs.py +58 -0
- pulumi_aws_native/aps/outputs.py +36 -0
- pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
- pulumi_aws_native/arcregionswitch/plan.py +0 -3
- pulumi_aws_native/batch/_inputs.py +34 -0
- pulumi_aws_native/batch/job_definition.py +29 -0
- pulumi_aws_native/batch/outputs.py +37 -0
- pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
- pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
- pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
- pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
- pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
- pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
- pulumi_aws_native/ce/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/configured_table.py +4 -4
- pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
- pulumi_aws_native/cognito/__init__.py +2 -0
- pulumi_aws_native/cognito/_enums.py +12 -0
- pulumi_aws_native/cognito/get_terms.py +117 -0
- pulumi_aws_native/cognito/terms.py +236 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +28 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +16 -0
- pulumi_aws_native/datazone/_inputs.py +81 -0
- pulumi_aws_native/datazone/connection.py +83 -26
- pulumi_aws_native/datazone/outputs.py +84 -0
- pulumi_aws_native/ec2/__init__.py +2 -0
- pulumi_aws_native/ec2/_enums.py +19 -0
- pulumi_aws_native/ec2/_inputs.py +15 -12
- pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
- pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
- pulumi_aws_native/ec2/get_volume.py +37 -15
- pulumi_aws_native/ec2/outputs.py +10 -8
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +23 -0
- pulumi_aws_native/ecs/_inputs.py +230 -23
- pulumi_aws_native/ecs/outputs.py +195 -15
- pulumi_aws_native/eks/_enums.py +11 -0
- pulumi_aws_native/eks/_inputs.py +199 -1
- pulumi_aws_native/eks/get_nodegroup.py +1 -0
- pulumi_aws_native/eks/nodegroup.py +1 -0
- pulumi_aws_native/eks/outputs.py +169 -1
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +12 -12
- pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +8 -8
- pulumi_aws_native/glue/__init__.py +2 -0
- pulumi_aws_native/glue/_inputs.py +134 -0
- pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
- pulumi_aws_native/glue/integration_resource_property.py +229 -0
- pulumi_aws_native/glue/outputs.py +122 -0
- pulumi_aws_native/imagebuilder/_inputs.py +37 -0
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/outputs.py +40 -0
- pulumi_aws_native/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- pulumi_aws_native/mediapackagev2/_inputs.py +7 -0
- pulumi_aws_native/mediapackagev2/outputs.py +4 -0
- pulumi_aws_native/networkfirewall/_enums.py +2 -0
- pulumi_aws_native/networkfirewall/_inputs.py +20 -0
- pulumi_aws_native/networkfirewall/firewall.py +10 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +15 -1
- pulumi_aws_native/networkfirewall/outputs.py +14 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/qbusiness/_inputs.py +3 -3
- pulumi_aws_native/qbusiness/application.py +4 -4
- pulumi_aws_native/qbusiness/outputs.py +2 -2
- pulumi_aws_native/quicksight/_inputs.py +9 -9
- pulumi_aws_native/quicksight/outputs.py +6 -6
- pulumi_aws_native/rtbfabric/__init__.py +2 -0
- pulumi_aws_native/rtbfabric/_enums.py +44 -0
- pulumi_aws_native/rtbfabric/_inputs.py +330 -0
- pulumi_aws_native/rtbfabric/get_link.py +199 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +15 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +30 -0
- pulumi_aws_native/rtbfabric/link.py +344 -0
- pulumi_aws_native/rtbfabric/outputs.py +306 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +40 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +80 -0
- pulumi_aws_native/s3/_enums.py +1 -1
- pulumi_aws_native/s3/_inputs.py +11 -5
- pulumi_aws_native/s3/outputs.py +10 -4
- pulumi_aws_native/s3vectors/__init__.py +17 -0
- pulumi_aws_native/s3vectors/_enums.py +39 -0
- pulumi_aws_native/s3vectors/_inputs.py +138 -0
- pulumi_aws_native/s3vectors/get_index.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
- pulumi_aws_native/s3vectors/index.py +367 -0
- pulumi_aws_native/s3vectors/outputs.py +129 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
- pulumi_aws_native/sagemaker/_enums.py +2 -171
- pulumi_aws_native/sagemaker/_inputs.py +17 -5
- pulumi_aws_native/sagemaker/outputs.py +11 -3
- pulumi_aws_native/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_enums.py +15 -0
- pulumi_aws_native/transfer/_inputs.py +86 -0
- pulumi_aws_native/transfer/connector.py +86 -19
- pulumi_aws_native/transfer/get_connector.py +43 -1
- pulumi_aws_native/transfer/outputs.py +86 -0
- pulumi_aws_native/wafv2/_inputs.py +72 -0
- pulumi_aws_native/wafv2/get_web_acl.py +15 -1
- pulumi_aws_native/wafv2/outputs.py +45 -0
- pulumi_aws_native/wafv2/web_acl.py +29 -0
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/RECORD +116 -96
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/top_level.txt +0 -0
|
@@ -34,6 +34,7 @@ __all__ = [
|
|
|
34
34
|
'DistributionConfigurationLaunchTemplateConfiguration',
|
|
35
35
|
'DistributionConfigurationSsmParameterConfiguration',
|
|
36
36
|
'DistributionConfigurationTargetContainerRepository',
|
|
37
|
+
'ImageDeletionSettings',
|
|
37
38
|
'ImageEcrConfiguration',
|
|
38
39
|
'ImageLatestVersion',
|
|
39
40
|
'ImageLoggingConfiguration',
|
|
@@ -1296,6 +1297,45 @@ class DistributionConfigurationTargetContainerRepository(dict):
|
|
|
1296
1297
|
return pulumi.get(self, "service")
|
|
1297
1298
|
|
|
1298
1299
|
|
|
1300
|
+
@pulumi.output_type
|
|
1301
|
+
class ImageDeletionSettings(dict):
|
|
1302
|
+
"""
|
|
1303
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
1304
|
+
"""
|
|
1305
|
+
@staticmethod
|
|
1306
|
+
def __key_warning(key: str):
|
|
1307
|
+
suggest = None
|
|
1308
|
+
if key == "executionRole":
|
|
1309
|
+
suggest = "execution_role"
|
|
1310
|
+
|
|
1311
|
+
if suggest:
|
|
1312
|
+
pulumi.log.warn(f"Key '{key}' not found in ImageDeletionSettings. Access the value via the '{suggest}' property getter instead.")
|
|
1313
|
+
|
|
1314
|
+
def __getitem__(self, key: str) -> Any:
|
|
1315
|
+
ImageDeletionSettings.__key_warning(key)
|
|
1316
|
+
return super().__getitem__(key)
|
|
1317
|
+
|
|
1318
|
+
def get(self, key: str, default = None) -> Any:
|
|
1319
|
+
ImageDeletionSettings.__key_warning(key)
|
|
1320
|
+
return super().get(key, default)
|
|
1321
|
+
|
|
1322
|
+
def __init__(__self__, *,
|
|
1323
|
+
execution_role: _builtins.str):
|
|
1324
|
+
"""
|
|
1325
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
1326
|
+
:param _builtins.str execution_role: The execution role to use for deleting the image, as well as underlying resources.
|
|
1327
|
+
"""
|
|
1328
|
+
pulumi.set(__self__, "execution_role", execution_role)
|
|
1329
|
+
|
|
1330
|
+
@_builtins.property
|
|
1331
|
+
@pulumi.getter(name="executionRole")
|
|
1332
|
+
def execution_role(self) -> _builtins.str:
|
|
1333
|
+
"""
|
|
1334
|
+
The execution role to use for deleting the image, as well as underlying resources.
|
|
1335
|
+
"""
|
|
1336
|
+
return pulumi.get(self, "execution_role")
|
|
1337
|
+
|
|
1338
|
+
|
|
1299
1339
|
@pulumi.output_type
|
|
1300
1340
|
class ImageEcrConfiguration(dict):
|
|
1301
1341
|
"""
|
|
@@ -364,7 +364,7 @@ if not MYPY:
|
|
|
364
364
|
"""
|
|
365
365
|
work_docs_configuration: NotRequired[pulumi.Input['DataSourceWorkDocsConfigurationArgsDict']]
|
|
366
366
|
"""
|
|
367
|
-
Provides the configuration information to connect to
|
|
367
|
+
Provides the configuration information to connect to WorkDocs as your data source.
|
|
368
368
|
"""
|
|
369
369
|
elif False:
|
|
370
370
|
DataSourceConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -402,7 +402,7 @@ class DataSourceConfigurationArgs:
|
|
|
402
402
|
:param pulumi.Input['DataSourceSharePointConfigurationArgs'] share_point_configuration: Provides the configuration information to connect to Microsoft SharePoint as your data source.
|
|
403
403
|
:param pulumi.Input['DataSourceTemplateConfigurationArgs'] template_configuration: Provides a template for the configuration information to connect to your data source.
|
|
404
404
|
:param pulumi.Input['DataSourceWebCrawlerConfigurationArgs'] web_crawler_configuration: Provides the configuration information required for Amazon Kendra Web Crawler.
|
|
405
|
-
:param pulumi.Input['DataSourceWorkDocsConfigurationArgs'] work_docs_configuration: Provides the configuration information to connect to
|
|
405
|
+
:param pulumi.Input['DataSourceWorkDocsConfigurationArgs'] work_docs_configuration: Provides the configuration information to connect to WorkDocs as your data source.
|
|
406
406
|
"""
|
|
407
407
|
if confluence_configuration is not None:
|
|
408
408
|
pulumi.set(__self__, "confluence_configuration", confluence_configuration)
|
|
@@ -559,7 +559,7 @@ class DataSourceConfigurationArgs:
|
|
|
559
559
|
@pulumi.getter(name="workDocsConfiguration")
|
|
560
560
|
def work_docs_configuration(self) -> Optional[pulumi.Input['DataSourceWorkDocsConfigurationArgs']]:
|
|
561
561
|
"""
|
|
562
|
-
Provides the configuration information to connect to
|
|
562
|
+
Provides the configuration information to connect to WorkDocs as your data source.
|
|
563
563
|
"""
|
|
564
564
|
return pulumi.get(self, "work_docs_configuration")
|
|
565
565
|
|
|
@@ -4708,9 +4708,9 @@ if not MYPY:
|
|
|
4708
4708
|
class DataSourceWorkDocsConfigurationArgsDict(TypedDict):
|
|
4709
4709
|
organization_id: pulumi.Input[_builtins.str]
|
|
4710
4710
|
"""
|
|
4711
|
-
The identifier of the directory corresponding to your
|
|
4711
|
+
The identifier of the directory corresponding to your WorkDocs site repository.
|
|
4712
4712
|
|
|
4713
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
4713
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
4714
4714
|
"""
|
|
4715
4715
|
crawl_comments: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4716
4716
|
"""
|
|
@@ -4720,19 +4720,19 @@ if not MYPY:
|
|
|
4720
4720
|
"""
|
|
4721
4721
|
exclusion_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
4722
4722
|
"""
|
|
4723
|
-
A list of regular expression patterns to exclude certain files in your
|
|
4723
|
+
A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4724
4724
|
"""
|
|
4725
4725
|
field_mappings: NotRequired[pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgsDict']]]]
|
|
4726
4726
|
"""
|
|
4727
|
-
A list of `DataSourceToIndexFieldMapping` objects that map
|
|
4727
|
+
A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
4728
4728
|
"""
|
|
4729
4729
|
inclusion_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
4730
4730
|
"""
|
|
4731
|
-
A list of regular expression patterns to include certain files in your
|
|
4731
|
+
A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4732
4732
|
"""
|
|
4733
4733
|
use_change_log: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4734
4734
|
"""
|
|
4735
|
-
`TRUE` to use the
|
|
4735
|
+
`TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
4736
4736
|
"""
|
|
4737
4737
|
elif False:
|
|
4738
4738
|
DataSourceWorkDocsConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -4747,16 +4747,16 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4747
4747
|
inclusion_patterns: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
4748
4748
|
use_change_log: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
4749
4749
|
"""
|
|
4750
|
-
:param pulumi.Input[_builtins.str] organization_id: The identifier of the directory corresponding to your
|
|
4750
|
+
:param pulumi.Input[_builtins.str] organization_id: The identifier of the directory corresponding to your WorkDocs site repository.
|
|
4751
4751
|
|
|
4752
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
4752
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
4753
4753
|
:param pulumi.Input[_builtins.bool] crawl_comments: `TRUE` to include comments on documents in your index. Including comments in your index means each comment is a document that can be searched on.
|
|
4754
4754
|
|
|
4755
4755
|
The default is set to `FALSE` .
|
|
4756
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] exclusion_patterns: A list of regular expression patterns to exclude certain files in your
|
|
4757
|
-
:param pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgs']]] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map
|
|
4758
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] inclusion_patterns: A list of regular expression patterns to include certain files in your
|
|
4759
|
-
:param pulumi.Input[_builtins.bool] use_change_log: `TRUE` to use the
|
|
4756
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] exclusion_patterns: A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4757
|
+
:param pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgs']]] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
4758
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] inclusion_patterns: A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4759
|
+
:param pulumi.Input[_builtins.bool] use_change_log: `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
4760
4760
|
"""
|
|
4761
4761
|
pulumi.set(__self__, "organization_id", organization_id)
|
|
4762
4762
|
if crawl_comments is not None:
|
|
@@ -4774,9 +4774,9 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4774
4774
|
@pulumi.getter(name="organizationId")
|
|
4775
4775
|
def organization_id(self) -> pulumi.Input[_builtins.str]:
|
|
4776
4776
|
"""
|
|
4777
|
-
The identifier of the directory corresponding to your
|
|
4777
|
+
The identifier of the directory corresponding to your WorkDocs site repository.
|
|
4778
4778
|
|
|
4779
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
4779
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
4780
4780
|
"""
|
|
4781
4781
|
return pulumi.get(self, "organization_id")
|
|
4782
4782
|
|
|
@@ -4802,7 +4802,7 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4802
4802
|
@pulumi.getter(name="exclusionPatterns")
|
|
4803
4803
|
def exclusion_patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
4804
4804
|
"""
|
|
4805
|
-
A list of regular expression patterns to exclude certain files in your
|
|
4805
|
+
A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4806
4806
|
"""
|
|
4807
4807
|
return pulumi.get(self, "exclusion_patterns")
|
|
4808
4808
|
|
|
@@ -4814,7 +4814,7 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4814
4814
|
@pulumi.getter(name="fieldMappings")
|
|
4815
4815
|
def field_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgs']]]]:
|
|
4816
4816
|
"""
|
|
4817
|
-
A list of `DataSourceToIndexFieldMapping` objects that map
|
|
4817
|
+
A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
4818
4818
|
"""
|
|
4819
4819
|
return pulumi.get(self, "field_mappings")
|
|
4820
4820
|
|
|
@@ -4826,7 +4826,7 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4826
4826
|
@pulumi.getter(name="inclusionPatterns")
|
|
4827
4827
|
def inclusion_patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
4828
4828
|
"""
|
|
4829
|
-
A list of regular expression patterns to include certain files in your
|
|
4829
|
+
A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4830
4830
|
"""
|
|
4831
4831
|
return pulumi.get(self, "inclusion_patterns")
|
|
4832
4832
|
|
|
@@ -4838,7 +4838,7 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4838
4838
|
@pulumi.getter(name="useChangeLog")
|
|
4839
4839
|
def use_change_log(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
4840
4840
|
"""
|
|
4841
|
-
`TRUE` to use the
|
|
4841
|
+
`TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
4842
4842
|
"""
|
|
4843
4843
|
return pulumi.get(self, "use_change_log")
|
|
4844
4844
|
|
|
@@ -309,7 +309,7 @@ class DataSourceConfiguration(dict):
|
|
|
309
309
|
:param 'DataSourceSharePointConfiguration' share_point_configuration: Provides the configuration information to connect to Microsoft SharePoint as your data source.
|
|
310
310
|
:param 'DataSourceTemplateConfiguration' template_configuration: Provides a template for the configuration information to connect to your data source.
|
|
311
311
|
:param 'DataSourceWebCrawlerConfiguration' web_crawler_configuration: Provides the configuration information required for Amazon Kendra Web Crawler.
|
|
312
|
-
:param 'DataSourceWorkDocsConfiguration' work_docs_configuration: Provides the configuration information to connect to
|
|
312
|
+
:param 'DataSourceWorkDocsConfiguration' work_docs_configuration: Provides the configuration information to connect to WorkDocs as your data source.
|
|
313
313
|
"""
|
|
314
314
|
if confluence_configuration is not None:
|
|
315
315
|
pulumi.set(__self__, "confluence_configuration", confluence_configuration)
|
|
@@ -426,7 +426,7 @@ class DataSourceConfiguration(dict):
|
|
|
426
426
|
@pulumi.getter(name="workDocsConfiguration")
|
|
427
427
|
def work_docs_configuration(self) -> Optional['outputs.DataSourceWorkDocsConfiguration']:
|
|
428
428
|
"""
|
|
429
|
-
Provides the configuration information to connect to
|
|
429
|
+
Provides the configuration information to connect to WorkDocs as your data source.
|
|
430
430
|
"""
|
|
431
431
|
return pulumi.get(self, "work_docs_configuration")
|
|
432
432
|
|
|
@@ -3875,16 +3875,16 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3875
3875
|
inclusion_patterns: Optional[Sequence[_builtins.str]] = None,
|
|
3876
3876
|
use_change_log: Optional[_builtins.bool] = None):
|
|
3877
3877
|
"""
|
|
3878
|
-
:param _builtins.str organization_id: The identifier of the directory corresponding to your
|
|
3878
|
+
:param _builtins.str organization_id: The identifier of the directory corresponding to your WorkDocs site repository.
|
|
3879
3879
|
|
|
3880
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
3880
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
3881
3881
|
:param _builtins.bool crawl_comments: `TRUE` to include comments on documents in your index. Including comments in your index means each comment is a document that can be searched on.
|
|
3882
3882
|
|
|
3883
3883
|
The default is set to `FALSE` .
|
|
3884
|
-
:param Sequence[_builtins.str] exclusion_patterns: A list of regular expression patterns to exclude certain files in your
|
|
3885
|
-
:param Sequence['DataSourceToIndexFieldMapping'] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map
|
|
3886
|
-
:param Sequence[_builtins.str] inclusion_patterns: A list of regular expression patterns to include certain files in your
|
|
3887
|
-
:param _builtins.bool use_change_log: `TRUE` to use the
|
|
3884
|
+
:param Sequence[_builtins.str] exclusion_patterns: A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3885
|
+
:param Sequence['DataSourceToIndexFieldMapping'] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
3886
|
+
:param Sequence[_builtins.str] inclusion_patterns: A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3887
|
+
:param _builtins.bool use_change_log: `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
3888
3888
|
"""
|
|
3889
3889
|
pulumi.set(__self__, "organization_id", organization_id)
|
|
3890
3890
|
if crawl_comments is not None:
|
|
@@ -3902,9 +3902,9 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3902
3902
|
@pulumi.getter(name="organizationId")
|
|
3903
3903
|
def organization_id(self) -> _builtins.str:
|
|
3904
3904
|
"""
|
|
3905
|
-
The identifier of the directory corresponding to your
|
|
3905
|
+
The identifier of the directory corresponding to your WorkDocs site repository.
|
|
3906
3906
|
|
|
3907
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
3907
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
3908
3908
|
"""
|
|
3909
3909
|
return pulumi.get(self, "organization_id")
|
|
3910
3910
|
|
|
@@ -3922,7 +3922,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3922
3922
|
@pulumi.getter(name="exclusionPatterns")
|
|
3923
3923
|
def exclusion_patterns(self) -> Optional[Sequence[_builtins.str]]:
|
|
3924
3924
|
"""
|
|
3925
|
-
A list of regular expression patterns to exclude certain files in your
|
|
3925
|
+
A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3926
3926
|
"""
|
|
3927
3927
|
return pulumi.get(self, "exclusion_patterns")
|
|
3928
3928
|
|
|
@@ -3930,7 +3930,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3930
3930
|
@pulumi.getter(name="fieldMappings")
|
|
3931
3931
|
def field_mappings(self) -> Optional[Sequence['outputs.DataSourceToIndexFieldMapping']]:
|
|
3932
3932
|
"""
|
|
3933
|
-
A list of `DataSourceToIndexFieldMapping` objects that map
|
|
3933
|
+
A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
3934
3934
|
"""
|
|
3935
3935
|
return pulumi.get(self, "field_mappings")
|
|
3936
3936
|
|
|
@@ -3938,7 +3938,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3938
3938
|
@pulumi.getter(name="inclusionPatterns")
|
|
3939
3939
|
def inclusion_patterns(self) -> Optional[Sequence[_builtins.str]]:
|
|
3940
3940
|
"""
|
|
3941
|
-
A list of regular expression patterns to include certain files in your
|
|
3941
|
+
A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3942
3942
|
"""
|
|
3943
3943
|
return pulumi.get(self, "inclusion_patterns")
|
|
3944
3944
|
|
|
@@ -3946,7 +3946,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3946
3946
|
@pulumi.getter(name="useChangeLog")
|
|
3947
3947
|
def use_change_log(self) -> Optional[_builtins.bool]:
|
|
3948
3948
|
"""
|
|
3949
|
-
`TRUE` to use the
|
|
3949
|
+
`TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
3950
3950
|
"""
|
|
3951
3951
|
return pulumi.get(self, "use_change_log")
|
|
3952
3952
|
|
|
@@ -1195,6 +1195,9 @@ if not MYPY:
|
|
|
1195
1195
|
The encryption method to use.
|
|
1196
1196
|
"""
|
|
1197
1197
|
ism_encryption_method: NotRequired[pulumi.Input['OriginEndpointIsmEncryptionMethod']]
|
|
1198
|
+
"""
|
|
1199
|
+
The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1200
|
+
"""
|
|
1198
1201
|
ts_encryption_method: NotRequired[pulumi.Input['OriginEndpointTsEncryptionMethod']]
|
|
1199
1202
|
"""
|
|
1200
1203
|
The encryption method to use.
|
|
@@ -1211,6 +1214,7 @@ class OriginEndpointEncryptionMethodArgs:
|
|
|
1211
1214
|
"""
|
|
1212
1215
|
<p>The encryption type.</p>
|
|
1213
1216
|
:param pulumi.Input['OriginEndpointCmafEncryptionMethod'] cmaf_encryption_method: The encryption method to use.
|
|
1217
|
+
:param pulumi.Input['OriginEndpointIsmEncryptionMethod'] ism_encryption_method: The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1214
1218
|
:param pulumi.Input['OriginEndpointTsEncryptionMethod'] ts_encryption_method: The encryption method to use.
|
|
1215
1219
|
"""
|
|
1216
1220
|
if cmaf_encryption_method is not None:
|
|
@@ -1235,6 +1239,9 @@ class OriginEndpointEncryptionMethodArgs:
|
|
|
1235
1239
|
@_builtins.property
|
|
1236
1240
|
@pulumi.getter(name="ismEncryptionMethod")
|
|
1237
1241
|
def ism_encryption_method(self) -> Optional[pulumi.Input['OriginEndpointIsmEncryptionMethod']]:
|
|
1242
|
+
"""
|
|
1243
|
+
The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1244
|
+
"""
|
|
1238
1245
|
return pulumi.get(self, "ism_encryption_method")
|
|
1239
1246
|
|
|
1240
1247
|
@ism_encryption_method.setter
|
|
@@ -1144,6 +1144,7 @@ class OriginEndpointEncryptionMethod(dict):
|
|
|
1144
1144
|
"""
|
|
1145
1145
|
<p>The encryption type.</p>
|
|
1146
1146
|
:param 'OriginEndpointCmafEncryptionMethod' cmaf_encryption_method: The encryption method to use.
|
|
1147
|
+
:param 'OriginEndpointIsmEncryptionMethod' ism_encryption_method: The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1147
1148
|
:param 'OriginEndpointTsEncryptionMethod' ts_encryption_method: The encryption method to use.
|
|
1148
1149
|
"""
|
|
1149
1150
|
if cmaf_encryption_method is not None:
|
|
@@ -1164,6 +1165,9 @@ class OriginEndpointEncryptionMethod(dict):
|
|
|
1164
1165
|
@_builtins.property
|
|
1165
1166
|
@pulumi.getter(name="ismEncryptionMethod")
|
|
1166
1167
|
def ism_encryption_method(self) -> Optional['OriginEndpointIsmEncryptionMethod']:
|
|
1168
|
+
"""
|
|
1169
|
+
The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
1170
|
+
"""
|
|
1167
1171
|
return pulumi.get(self, "ism_encryption_method")
|
|
1168
1172
|
|
|
1169
1173
|
@_builtins.property
|
|
@@ -82,6 +82,8 @@ class LoggingConfigurationLogDestinationConfigLogType(_builtins.str, Enum):
|
|
|
82
82
|
class RuleGroupGeneratedRulesType(_builtins.str, Enum):
|
|
83
83
|
ALLOWLIST = "ALLOWLIST"
|
|
84
84
|
DENYLIST = "DENYLIST"
|
|
85
|
+
ALERTLIST = "ALERTLIST"
|
|
86
|
+
REJECTLIST = "REJECTLIST"
|
|
85
87
|
|
|
86
88
|
|
|
87
89
|
@pulumi.type_token("aws-native:networkfirewall:RuleGroupHeaderDirection")
|
|
@@ -671,6 +671,10 @@ if not MYPY:
|
|
|
671
671
|
|
|
672
672
|
For example, you could specify `["aws:pass"]` or you could specify `["aws:pass", "customActionName"]` . For information about compatibility, see the custom action descriptions.
|
|
673
673
|
"""
|
|
674
|
+
enable_tls_session_holding: NotRequired[pulumi.Input[_builtins.bool]]
|
|
675
|
+
"""
|
|
676
|
+
When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
677
|
+
"""
|
|
674
678
|
policy_variables: NotRequired[pulumi.Input['FirewallPolicyPolicyVariablesPropertiesArgsDict']]
|
|
675
679
|
"""
|
|
676
680
|
Contains variables that you can use to override default Suricata settings in your firewall policy.
|
|
@@ -716,6 +720,7 @@ class FirewallPolicyArgs:
|
|
|
716
720
|
def __init__(__self__, *,
|
|
717
721
|
stateless_default_actions: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
718
722
|
stateless_fragment_default_actions: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
723
|
+
enable_tls_session_holding: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
719
724
|
policy_variables: Optional[pulumi.Input['FirewallPolicyPolicyVariablesPropertiesArgs']] = None,
|
|
720
725
|
stateful_default_actions: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
721
726
|
stateful_engine_options: Optional[pulumi.Input['FirewallPolicyStatefulEngineOptionsArgs']] = None,
|
|
@@ -734,6 +739,7 @@ class FirewallPolicyArgs:
|
|
|
734
739
|
You must specify one of the standard actions: `aws:pass` , `aws:drop` , or `aws:forward_to_sfe` . In addition, you can specify custom actions that are compatible with your standard section choice.
|
|
735
740
|
|
|
736
741
|
For example, you could specify `["aws:pass"]` or you could specify `["aws:pass", "customActionName"]` . For information about compatibility, see the custom action descriptions.
|
|
742
|
+
:param pulumi.Input[_builtins.bool] enable_tls_session_holding: When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
737
743
|
:param pulumi.Input['FirewallPolicyPolicyVariablesPropertiesArgs'] policy_variables: Contains variables that you can use to override default Suricata settings in your firewall policy.
|
|
738
744
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] stateful_default_actions: The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional, and is only valid when using the strict rule order.
|
|
739
745
|
|
|
@@ -753,6 +759,8 @@ class FirewallPolicyArgs:
|
|
|
753
759
|
"""
|
|
754
760
|
pulumi.set(__self__, "stateless_default_actions", stateless_default_actions)
|
|
755
761
|
pulumi.set(__self__, "stateless_fragment_default_actions", stateless_fragment_default_actions)
|
|
762
|
+
if enable_tls_session_holding is not None:
|
|
763
|
+
pulumi.set(__self__, "enable_tls_session_holding", enable_tls_session_holding)
|
|
756
764
|
if policy_variables is not None:
|
|
757
765
|
pulumi.set(__self__, "policy_variables", policy_variables)
|
|
758
766
|
if stateful_default_actions is not None:
|
|
@@ -800,6 +808,18 @@ class FirewallPolicyArgs:
|
|
|
800
808
|
def stateless_fragment_default_actions(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
801
809
|
pulumi.set(self, "stateless_fragment_default_actions", value)
|
|
802
810
|
|
|
811
|
+
@_builtins.property
|
|
812
|
+
@pulumi.getter(name="enableTlsSessionHolding")
|
|
813
|
+
def enable_tls_session_holding(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
814
|
+
"""
|
|
815
|
+
When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
816
|
+
"""
|
|
817
|
+
return pulumi.get(self, "enable_tls_session_holding")
|
|
818
|
+
|
|
819
|
+
@enable_tls_session_holding.setter
|
|
820
|
+
def enable_tls_session_holding(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
821
|
+
pulumi.set(self, "enable_tls_session_holding", value)
|
|
822
|
+
|
|
803
823
|
@_builtins.property
|
|
804
824
|
@pulumi.getter(name="policyVariables")
|
|
805
825
|
def policy_variables(self) -> Optional[pulumi.Input['FirewallPolicyPolicyVariablesPropertiesArgs']]:
|
|
@@ -363,6 +363,7 @@ class Firewall(pulumi.CustomResource):
|
|
|
363
363
|
__props__.__dict__["endpoint_ids"] = None
|
|
364
364
|
__props__.__dict__["firewall_arn"] = None
|
|
365
365
|
__props__.__dict__["firewall_id"] = None
|
|
366
|
+
__props__.__dict__["transit_gateway_attachment_id"] = None
|
|
366
367
|
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["firewallName", "vpcId"])
|
|
367
368
|
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
368
369
|
super(Firewall, __self__).__init__(
|
|
@@ -401,6 +402,7 @@ class Firewall(pulumi.CustomResource):
|
|
|
401
402
|
__props__.__dict__["subnet_change_protection"] = None
|
|
402
403
|
__props__.__dict__["subnet_mappings"] = None
|
|
403
404
|
__props__.__dict__["tags"] = None
|
|
405
|
+
__props__.__dict__["transit_gateway_attachment_id"] = None
|
|
404
406
|
__props__.__dict__["transit_gateway_id"] = None
|
|
405
407
|
__props__.__dict__["vpc_id"] = None
|
|
406
408
|
return Firewall(resource_name, opts=opts, __props__=__props__)
|
|
@@ -525,6 +527,14 @@ class Firewall(pulumi.CustomResource):
|
|
|
525
527
|
"""
|
|
526
528
|
return pulumi.get(self, "tags")
|
|
527
529
|
|
|
530
|
+
@_builtins.property
|
|
531
|
+
@pulumi.getter(name="transitGatewayAttachmentId")
|
|
532
|
+
def transit_gateway_attachment_id(self) -> pulumi.Output[_builtins.str]:
|
|
533
|
+
"""
|
|
534
|
+
The unique identifier of the transit gateway attachment associated with this firewall. This field is only present for transit gateway-attached firewalls.
|
|
535
|
+
"""
|
|
536
|
+
return pulumi.get(self, "transit_gateway_attachment_id")
|
|
537
|
+
|
|
528
538
|
@_builtins.property
|
|
529
539
|
@pulumi.getter(name="transitGatewayId")
|
|
530
540
|
def transit_gateway_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
@@ -26,7 +26,7 @@ __all__ = [
|
|
|
26
26
|
|
|
27
27
|
@pulumi.output_type
|
|
28
28
|
class GetFirewallResult:
|
|
29
|
-
def __init__(__self__, availability_zone_change_protection=None, availability_zone_mappings=None, delete_protection=None, description=None, enabled_analysis_types=None, endpoint_ids=None, firewall_arn=None, firewall_id=None, firewall_policy_arn=None, firewall_policy_change_protection=None, subnet_change_protection=None, subnet_mappings=None, tags=None, transit_gateway_id=None):
|
|
29
|
+
def __init__(__self__, availability_zone_change_protection=None, availability_zone_mappings=None, delete_protection=None, description=None, enabled_analysis_types=None, endpoint_ids=None, firewall_arn=None, firewall_id=None, firewall_policy_arn=None, firewall_policy_change_protection=None, subnet_change_protection=None, subnet_mappings=None, tags=None, transit_gateway_attachment_id=None, transit_gateway_id=None):
|
|
30
30
|
if availability_zone_change_protection and not isinstance(availability_zone_change_protection, bool):
|
|
31
31
|
raise TypeError("Expected argument 'availability_zone_change_protection' to be a bool")
|
|
32
32
|
pulumi.set(__self__, "availability_zone_change_protection", availability_zone_change_protection)
|
|
@@ -66,6 +66,9 @@ class GetFirewallResult:
|
|
|
66
66
|
if tags and not isinstance(tags, list):
|
|
67
67
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
68
68
|
pulumi.set(__self__, "tags", tags)
|
|
69
|
+
if transit_gateway_attachment_id and not isinstance(transit_gateway_attachment_id, str):
|
|
70
|
+
raise TypeError("Expected argument 'transit_gateway_attachment_id' to be a str")
|
|
71
|
+
pulumi.set(__self__, "transit_gateway_attachment_id", transit_gateway_attachment_id)
|
|
69
72
|
if transit_gateway_id and not isinstance(transit_gateway_id, str):
|
|
70
73
|
raise TypeError("Expected argument 'transit_gateway_id' to be a str")
|
|
71
74
|
pulumi.set(__self__, "transit_gateway_id", transit_gateway_id)
|
|
@@ -182,6 +185,14 @@ class GetFirewallResult:
|
|
|
182
185
|
"""
|
|
183
186
|
return pulumi.get(self, "tags")
|
|
184
187
|
|
|
188
|
+
@_builtins.property
|
|
189
|
+
@pulumi.getter(name="transitGatewayAttachmentId")
|
|
190
|
+
def transit_gateway_attachment_id(self) -> Optional[_builtins.str]:
|
|
191
|
+
"""
|
|
192
|
+
The unique identifier of the transit gateway attachment associated with this firewall. This field is only present for transit gateway-attached firewalls.
|
|
193
|
+
"""
|
|
194
|
+
return pulumi.get(self, "transit_gateway_attachment_id")
|
|
195
|
+
|
|
185
196
|
@_builtins.property
|
|
186
197
|
@pulumi.getter(name="transitGatewayId")
|
|
187
198
|
def transit_gateway_id(self) -> Optional[_builtins.str]:
|
|
@@ -210,6 +221,7 @@ class AwaitableGetFirewallResult(GetFirewallResult):
|
|
|
210
221
|
subnet_change_protection=self.subnet_change_protection,
|
|
211
222
|
subnet_mappings=self.subnet_mappings,
|
|
212
223
|
tags=self.tags,
|
|
224
|
+
transit_gateway_attachment_id=self.transit_gateway_attachment_id,
|
|
213
225
|
transit_gateway_id=self.transit_gateway_id)
|
|
214
226
|
|
|
215
227
|
|
|
@@ -240,6 +252,7 @@ def get_firewall(firewall_arn: Optional[_builtins.str] = None,
|
|
|
240
252
|
subnet_change_protection=pulumi.get(__ret__, 'subnet_change_protection'),
|
|
241
253
|
subnet_mappings=pulumi.get(__ret__, 'subnet_mappings'),
|
|
242
254
|
tags=pulumi.get(__ret__, 'tags'),
|
|
255
|
+
transit_gateway_attachment_id=pulumi.get(__ret__, 'transit_gateway_attachment_id'),
|
|
243
256
|
transit_gateway_id=pulumi.get(__ret__, 'transit_gateway_id'))
|
|
244
257
|
def get_firewall_output(firewall_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
245
258
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFirewallResult]:
|
|
@@ -267,4 +280,5 @@ def get_firewall_output(firewall_arn: Optional[pulumi.Input[_builtins.str]] = No
|
|
|
267
280
|
subnet_change_protection=pulumi.get(__response__, 'subnet_change_protection'),
|
|
268
281
|
subnet_mappings=pulumi.get(__response__, 'subnet_mappings'),
|
|
269
282
|
tags=pulumi.get(__response__, 'tags'),
|
|
283
|
+
transit_gateway_attachment_id=pulumi.get(__response__, 'transit_gateway_attachment_id'),
|
|
270
284
|
transit_gateway_id=pulumi.get(__response__, 'transit_gateway_id')))
|
|
@@ -111,6 +111,8 @@ class FirewallPolicy(dict):
|
|
|
111
111
|
suggest = "stateless_default_actions"
|
|
112
112
|
elif key == "statelessFragmentDefaultActions":
|
|
113
113
|
suggest = "stateless_fragment_default_actions"
|
|
114
|
+
elif key == "enableTlsSessionHolding":
|
|
115
|
+
suggest = "enable_tls_session_holding"
|
|
114
116
|
elif key == "policyVariables":
|
|
115
117
|
suggest = "policy_variables"
|
|
116
118
|
elif key == "statefulDefaultActions":
|
|
@@ -140,6 +142,7 @@ class FirewallPolicy(dict):
|
|
|
140
142
|
def __init__(__self__, *,
|
|
141
143
|
stateless_default_actions: Sequence[_builtins.str],
|
|
142
144
|
stateless_fragment_default_actions: Sequence[_builtins.str],
|
|
145
|
+
enable_tls_session_holding: Optional[_builtins.bool] = None,
|
|
143
146
|
policy_variables: Optional['outputs.FirewallPolicyPolicyVariablesProperties'] = None,
|
|
144
147
|
stateful_default_actions: Optional[Sequence[_builtins.str]] = None,
|
|
145
148
|
stateful_engine_options: Optional['outputs.FirewallPolicyStatefulEngineOptions'] = None,
|
|
@@ -158,6 +161,7 @@ class FirewallPolicy(dict):
|
|
|
158
161
|
You must specify one of the standard actions: `aws:pass` , `aws:drop` , or `aws:forward_to_sfe` . In addition, you can specify custom actions that are compatible with your standard section choice.
|
|
159
162
|
|
|
160
163
|
For example, you could specify `["aws:pass"]` or you could specify `["aws:pass", "customActionName"]` . For information about compatibility, see the custom action descriptions.
|
|
164
|
+
:param _builtins.bool enable_tls_session_holding: When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
161
165
|
:param 'FirewallPolicyPolicyVariablesProperties' policy_variables: Contains variables that you can use to override default Suricata settings in your firewall policy.
|
|
162
166
|
:param Sequence[_builtins.str] stateful_default_actions: The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional, and is only valid when using the strict rule order.
|
|
163
167
|
|
|
@@ -177,6 +181,8 @@ class FirewallPolicy(dict):
|
|
|
177
181
|
"""
|
|
178
182
|
pulumi.set(__self__, "stateless_default_actions", stateless_default_actions)
|
|
179
183
|
pulumi.set(__self__, "stateless_fragment_default_actions", stateless_fragment_default_actions)
|
|
184
|
+
if enable_tls_session_holding is not None:
|
|
185
|
+
pulumi.set(__self__, "enable_tls_session_holding", enable_tls_session_holding)
|
|
180
186
|
if policy_variables is not None:
|
|
181
187
|
pulumi.set(__self__, "policy_variables", policy_variables)
|
|
182
188
|
if stateful_default_actions is not None:
|
|
@@ -216,6 +222,14 @@ class FirewallPolicy(dict):
|
|
|
216
222
|
"""
|
|
217
223
|
return pulumi.get(self, "stateless_fragment_default_actions")
|
|
218
224
|
|
|
225
|
+
@_builtins.property
|
|
226
|
+
@pulumi.getter(name="enableTlsSessionHolding")
|
|
227
|
+
def enable_tls_session_holding(self) -> Optional[_builtins.bool]:
|
|
228
|
+
"""
|
|
229
|
+
When true, prevents TCP and TLS packets from reaching destination servers until TLS Inspection has evaluated Server Name Indication (SNI) rules. Requires an associated TLS Inspection configuration.
|
|
230
|
+
"""
|
|
231
|
+
return pulumi.get(self, "enable_tls_session_holding")
|
|
232
|
+
|
|
219
233
|
@_builtins.property
|
|
220
234
|
@pulumi.getter(name="policyVariables")
|
|
221
235
|
def policy_variables(self) -> Optional['outputs.FirewallPolicyPolicyVariablesProperties']:
|
|
@@ -308,7 +308,7 @@ if not MYPY:
|
|
|
308
308
|
class ApplicationQuickSightConfigurationArgsDict(TypedDict):
|
|
309
309
|
client_namespace: pulumi.Input[_builtins.str]
|
|
310
310
|
"""
|
|
311
|
-
The Amazon
|
|
311
|
+
The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
312
312
|
"""
|
|
313
313
|
elif False:
|
|
314
314
|
ApplicationQuickSightConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -318,7 +318,7 @@ class ApplicationQuickSightConfigurationArgs:
|
|
|
318
318
|
def __init__(__self__, *,
|
|
319
319
|
client_namespace: pulumi.Input[_builtins.str]):
|
|
320
320
|
"""
|
|
321
|
-
:param pulumi.Input[_builtins.str] client_namespace: The Amazon
|
|
321
|
+
:param pulumi.Input[_builtins.str] client_namespace: The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
322
322
|
"""
|
|
323
323
|
pulumi.set(__self__, "client_namespace", client_namespace)
|
|
324
324
|
|
|
@@ -326,7 +326,7 @@ class ApplicationQuickSightConfigurationArgs:
|
|
|
326
326
|
@pulumi.getter(name="clientNamespace")
|
|
327
327
|
def client_namespace(self) -> pulumi.Input[_builtins.str]:
|
|
328
328
|
"""
|
|
329
|
-
The Amazon
|
|
329
|
+
The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
330
330
|
"""
|
|
331
331
|
return pulumi.get(self, "client_namespace")
|
|
332
332
|
|