pulumi-aws-native 1.38.0a1761803003__py3-none-any.whl → 1.38.0a1762272920__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.
Potentially problematic release.
This version of pulumi-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +17 -1
- 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 +9 -0
- pulumi_aws_native/batch/job_definition.py +8 -0
- pulumi_aws_native/batch/outputs.py +6 -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/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/connection.py +30 -1
- pulumi_aws_native/ec2/get_volume.py +37 -15
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +9 -0
- pulumi_aws_native/ecs/_inputs.py +96 -15
- pulumi_aws_native/ecs/outputs.py +60 -10
- 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/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/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- pulumi_aws_native/networkfirewall/_inputs.py +7 -0
- pulumi_aws_native/networkfirewall/firewall.py +3 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +3 -0
- pulumi_aws_native/networkfirewall/outputs.py +4 -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/_enums.py +3 -0
- pulumi_aws_native/rtbfabric/_inputs.py +70 -0
- pulumi_aws_native/rtbfabric/get_link.py +18 -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 +51 -0
- pulumi_aws_native/rtbfabric/outputs.py +46 -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/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_inputs.py +9 -0
- pulumi_aws_native/transfer/connector.py +3 -0
- pulumi_aws_native/transfer/get_connector.py +3 -0
- pulumi_aws_native/transfer/outputs.py +6 -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.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/RECORD +88 -72
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from .. import outputs as _root_outputs
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'GetIntegrationResourcePropertyResult',
|
|
21
|
+
'AwaitableGetIntegrationResourcePropertyResult',
|
|
22
|
+
'get_integration_resource_property',
|
|
23
|
+
'get_integration_resource_property_output',
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
@pulumi.output_type
|
|
27
|
+
class GetIntegrationResourcePropertyResult:
|
|
28
|
+
def __init__(__self__, resource_property_arn=None, source_processing_properties=None, tags=None, target_processing_properties=None):
|
|
29
|
+
if resource_property_arn and not isinstance(resource_property_arn, str):
|
|
30
|
+
raise TypeError("Expected argument 'resource_property_arn' to be a str")
|
|
31
|
+
pulumi.set(__self__, "resource_property_arn", resource_property_arn)
|
|
32
|
+
if source_processing_properties and not isinstance(source_processing_properties, dict):
|
|
33
|
+
raise TypeError("Expected argument 'source_processing_properties' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "source_processing_properties", source_processing_properties)
|
|
35
|
+
if tags and not isinstance(tags, list):
|
|
36
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
37
|
+
pulumi.set(__self__, "tags", tags)
|
|
38
|
+
if target_processing_properties and not isinstance(target_processing_properties, dict):
|
|
39
|
+
raise TypeError("Expected argument 'target_processing_properties' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "target_processing_properties", target_processing_properties)
|
|
41
|
+
|
|
42
|
+
@_builtins.property
|
|
43
|
+
@pulumi.getter(name="resourcePropertyArn")
|
|
44
|
+
def resource_property_arn(self) -> Optional[_builtins.str]:
|
|
45
|
+
"""
|
|
46
|
+
The integration resource property ARN.
|
|
47
|
+
"""
|
|
48
|
+
return pulumi.get(self, "resource_property_arn")
|
|
49
|
+
|
|
50
|
+
@_builtins.property
|
|
51
|
+
@pulumi.getter(name="sourceProcessingProperties")
|
|
52
|
+
def source_processing_properties(self) -> Optional['outputs.SourceProcessingPropertiesProperties']:
|
|
53
|
+
"""
|
|
54
|
+
The resource properties associated with the integration source.
|
|
55
|
+
"""
|
|
56
|
+
return pulumi.get(self, "source_processing_properties")
|
|
57
|
+
|
|
58
|
+
@_builtins.property
|
|
59
|
+
@pulumi.getter
|
|
60
|
+
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
61
|
+
"""
|
|
62
|
+
An array of key-value pairs to apply to this resource.
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "tags")
|
|
65
|
+
|
|
66
|
+
@_builtins.property
|
|
67
|
+
@pulumi.getter(name="targetProcessingProperties")
|
|
68
|
+
def target_processing_properties(self) -> Optional['outputs.TargetProcessingPropertiesProperties']:
|
|
69
|
+
"""
|
|
70
|
+
The resource properties associated with the integration target.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "target_processing_properties")
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
class AwaitableGetIntegrationResourcePropertyResult(GetIntegrationResourcePropertyResult):
|
|
76
|
+
# pylint: disable=using-constant-test
|
|
77
|
+
def __await__(self):
|
|
78
|
+
if False:
|
|
79
|
+
yield self
|
|
80
|
+
return GetIntegrationResourcePropertyResult(
|
|
81
|
+
resource_property_arn=self.resource_property_arn,
|
|
82
|
+
source_processing_properties=self.source_processing_properties,
|
|
83
|
+
tags=self.tags,
|
|
84
|
+
target_processing_properties=self.target_processing_properties)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
def get_integration_resource_property(resource_arn: Optional[_builtins.str] = None,
|
|
88
|
+
resource_property_arn: Optional[_builtins.str] = None,
|
|
89
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIntegrationResourcePropertyResult:
|
|
90
|
+
"""
|
|
91
|
+
Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
:param _builtins.str resource_arn: The connection ARN of the source, or the database ARN of the target.
|
|
95
|
+
:param _builtins.str resource_property_arn: The integration resource property ARN.
|
|
96
|
+
"""
|
|
97
|
+
__args__ = dict()
|
|
98
|
+
__args__['resourceArn'] = resource_arn
|
|
99
|
+
__args__['resourcePropertyArn'] = resource_property_arn
|
|
100
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
101
|
+
__ret__ = pulumi.runtime.invoke('aws-native:glue:getIntegrationResourceProperty', __args__, opts=opts, typ=GetIntegrationResourcePropertyResult).value
|
|
102
|
+
|
|
103
|
+
return AwaitableGetIntegrationResourcePropertyResult(
|
|
104
|
+
resource_property_arn=pulumi.get(__ret__, 'resource_property_arn'),
|
|
105
|
+
source_processing_properties=pulumi.get(__ret__, 'source_processing_properties'),
|
|
106
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
107
|
+
target_processing_properties=pulumi.get(__ret__, 'target_processing_properties'))
|
|
108
|
+
def get_integration_resource_property_output(resource_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
109
|
+
resource_property_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
110
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIntegrationResourcePropertyResult]:
|
|
111
|
+
"""
|
|
112
|
+
Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
:param _builtins.str resource_arn: The connection ARN of the source, or the database ARN of the target.
|
|
116
|
+
:param _builtins.str resource_property_arn: The integration resource property ARN.
|
|
117
|
+
"""
|
|
118
|
+
__args__ = dict()
|
|
119
|
+
__args__['resourceArn'] = resource_arn
|
|
120
|
+
__args__['resourcePropertyArn'] = resource_property_arn
|
|
121
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
122
|
+
__ret__ = pulumi.runtime.invoke_output('aws-native:glue:getIntegrationResourceProperty', __args__, opts=opts, typ=GetIntegrationResourcePropertyResult)
|
|
123
|
+
return __ret__.apply(lambda __response__: GetIntegrationResourcePropertyResult(
|
|
124
|
+
resource_property_arn=pulumi.get(__response__, 'resource_property_arn'),
|
|
125
|
+
source_processing_properties=pulumi.get(__response__, 'source_processing_properties'),
|
|
126
|
+
tags=pulumi.get(__response__, 'tags'),
|
|
127
|
+
target_processing_properties=pulumi.get(__response__, 'target_processing_properties')))
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from .. import _inputs as _root_inputs
|
|
18
|
+
from .. import outputs as _root_outputs
|
|
19
|
+
from ._inputs import *
|
|
20
|
+
|
|
21
|
+
__all__ = ['IntegrationResourcePropertyArgs', 'IntegrationResourceProperty']
|
|
22
|
+
|
|
23
|
+
@pulumi.input_type
|
|
24
|
+
class IntegrationResourcePropertyArgs:
|
|
25
|
+
def __init__(__self__, *,
|
|
26
|
+
resource_arn: pulumi.Input[_builtins.str],
|
|
27
|
+
source_processing_properties: Optional[pulumi.Input['SourceProcessingPropertiesPropertiesArgs']] = None,
|
|
28
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None,
|
|
29
|
+
target_processing_properties: Optional[pulumi.Input['TargetProcessingPropertiesPropertiesArgs']] = None):
|
|
30
|
+
"""
|
|
31
|
+
The set of arguments for constructing a IntegrationResourceProperty resource.
|
|
32
|
+
:param pulumi.Input[_builtins.str] resource_arn: The connection ARN of the source, or the database ARN of the target.
|
|
33
|
+
:param pulumi.Input['SourceProcessingPropertiesPropertiesArgs'] source_processing_properties: The resource properties associated with the integration source.
|
|
34
|
+
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: An array of key-value pairs to apply to this resource.
|
|
35
|
+
:param pulumi.Input['TargetProcessingPropertiesPropertiesArgs'] target_processing_properties: The resource properties associated with the integration target.
|
|
36
|
+
"""
|
|
37
|
+
pulumi.set(__self__, "resource_arn", resource_arn)
|
|
38
|
+
if source_processing_properties is not None:
|
|
39
|
+
pulumi.set(__self__, "source_processing_properties", source_processing_properties)
|
|
40
|
+
if tags is not None:
|
|
41
|
+
pulumi.set(__self__, "tags", tags)
|
|
42
|
+
if target_processing_properties is not None:
|
|
43
|
+
pulumi.set(__self__, "target_processing_properties", target_processing_properties)
|
|
44
|
+
|
|
45
|
+
@_builtins.property
|
|
46
|
+
@pulumi.getter(name="resourceArn")
|
|
47
|
+
def resource_arn(self) -> pulumi.Input[_builtins.str]:
|
|
48
|
+
"""
|
|
49
|
+
The connection ARN of the source, or the database ARN of the target.
|
|
50
|
+
"""
|
|
51
|
+
return pulumi.get(self, "resource_arn")
|
|
52
|
+
|
|
53
|
+
@resource_arn.setter
|
|
54
|
+
def resource_arn(self, value: pulumi.Input[_builtins.str]):
|
|
55
|
+
pulumi.set(self, "resource_arn", value)
|
|
56
|
+
|
|
57
|
+
@_builtins.property
|
|
58
|
+
@pulumi.getter(name="sourceProcessingProperties")
|
|
59
|
+
def source_processing_properties(self) -> Optional[pulumi.Input['SourceProcessingPropertiesPropertiesArgs']]:
|
|
60
|
+
"""
|
|
61
|
+
The resource properties associated with the integration source.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "source_processing_properties")
|
|
64
|
+
|
|
65
|
+
@source_processing_properties.setter
|
|
66
|
+
def source_processing_properties(self, value: Optional[pulumi.Input['SourceProcessingPropertiesPropertiesArgs']]):
|
|
67
|
+
pulumi.set(self, "source_processing_properties", value)
|
|
68
|
+
|
|
69
|
+
@_builtins.property
|
|
70
|
+
@pulumi.getter
|
|
71
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
72
|
+
"""
|
|
73
|
+
An array of key-value pairs to apply to this resource.
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "tags")
|
|
76
|
+
|
|
77
|
+
@tags.setter
|
|
78
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]):
|
|
79
|
+
pulumi.set(self, "tags", value)
|
|
80
|
+
|
|
81
|
+
@_builtins.property
|
|
82
|
+
@pulumi.getter(name="targetProcessingProperties")
|
|
83
|
+
def target_processing_properties(self) -> Optional[pulumi.Input['TargetProcessingPropertiesPropertiesArgs']]:
|
|
84
|
+
"""
|
|
85
|
+
The resource properties associated with the integration target.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "target_processing_properties")
|
|
88
|
+
|
|
89
|
+
@target_processing_properties.setter
|
|
90
|
+
def target_processing_properties(self, value: Optional[pulumi.Input['TargetProcessingPropertiesPropertiesArgs']]):
|
|
91
|
+
pulumi.set(self, "target_processing_properties", value)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
@pulumi.type_token("aws-native:glue:IntegrationResourceProperty")
|
|
95
|
+
class IntegrationResourceProperty(pulumi.CustomResource):
|
|
96
|
+
@overload
|
|
97
|
+
def __init__(__self__,
|
|
98
|
+
resource_name: str,
|
|
99
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
100
|
+
resource_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
101
|
+
source_processing_properties: Optional[pulumi.Input[Union['SourceProcessingPropertiesPropertiesArgs', 'SourceProcessingPropertiesPropertiesArgsDict']]] = None,
|
|
102
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
103
|
+
target_processing_properties: Optional[pulumi.Input[Union['TargetProcessingPropertiesPropertiesArgs', 'TargetProcessingPropertiesPropertiesArgsDict']]] = None,
|
|
104
|
+
__props__=None):
|
|
105
|
+
"""
|
|
106
|
+
Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
107
|
+
|
|
108
|
+
:param str resource_name: The name of the resource.
|
|
109
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
110
|
+
:param pulumi.Input[_builtins.str] resource_arn: The connection ARN of the source, or the database ARN of the target.
|
|
111
|
+
:param pulumi.Input[Union['SourceProcessingPropertiesPropertiesArgs', 'SourceProcessingPropertiesPropertiesArgsDict']] source_processing_properties: The resource properties associated with the integration source.
|
|
112
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: An array of key-value pairs to apply to this resource.
|
|
113
|
+
:param pulumi.Input[Union['TargetProcessingPropertiesPropertiesArgs', 'TargetProcessingPropertiesPropertiesArgsDict']] target_processing_properties: The resource properties associated with the integration target.
|
|
114
|
+
"""
|
|
115
|
+
...
|
|
116
|
+
@overload
|
|
117
|
+
def __init__(__self__,
|
|
118
|
+
resource_name: str,
|
|
119
|
+
args: IntegrationResourcePropertyArgs,
|
|
120
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
121
|
+
"""
|
|
122
|
+
Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
123
|
+
|
|
124
|
+
:param str resource_name: The name of the resource.
|
|
125
|
+
:param IntegrationResourcePropertyArgs args: The arguments to use to populate this resource's properties.
|
|
126
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
127
|
+
"""
|
|
128
|
+
...
|
|
129
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
130
|
+
resource_args, opts = _utilities.get_resource_args_opts(IntegrationResourcePropertyArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
131
|
+
if resource_args is not None:
|
|
132
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
133
|
+
else:
|
|
134
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
135
|
+
|
|
136
|
+
def _internal_init(__self__,
|
|
137
|
+
resource_name: str,
|
|
138
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
139
|
+
resource_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
140
|
+
source_processing_properties: Optional[pulumi.Input[Union['SourceProcessingPropertiesPropertiesArgs', 'SourceProcessingPropertiesPropertiesArgsDict']]] = None,
|
|
141
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
142
|
+
target_processing_properties: Optional[pulumi.Input[Union['TargetProcessingPropertiesPropertiesArgs', 'TargetProcessingPropertiesPropertiesArgsDict']]] = None,
|
|
143
|
+
__props__=None):
|
|
144
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
145
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
146
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
147
|
+
if opts.id is None:
|
|
148
|
+
if __props__ is not None:
|
|
149
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
150
|
+
__props__ = IntegrationResourcePropertyArgs.__new__(IntegrationResourcePropertyArgs)
|
|
151
|
+
|
|
152
|
+
if resource_arn is None and not opts.urn:
|
|
153
|
+
raise TypeError("Missing required property 'resource_arn'")
|
|
154
|
+
__props__.__dict__["resource_arn"] = resource_arn
|
|
155
|
+
__props__.__dict__["source_processing_properties"] = source_processing_properties
|
|
156
|
+
__props__.__dict__["tags"] = tags
|
|
157
|
+
__props__.__dict__["target_processing_properties"] = target_processing_properties
|
|
158
|
+
__props__.__dict__["resource_property_arn"] = None
|
|
159
|
+
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["resourceArn"])
|
|
160
|
+
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
161
|
+
super(IntegrationResourceProperty, __self__).__init__(
|
|
162
|
+
'aws-native:glue:IntegrationResourceProperty',
|
|
163
|
+
resource_name,
|
|
164
|
+
__props__,
|
|
165
|
+
opts)
|
|
166
|
+
|
|
167
|
+
@staticmethod
|
|
168
|
+
def get(resource_name: str,
|
|
169
|
+
id: pulumi.Input[str],
|
|
170
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'IntegrationResourceProperty':
|
|
171
|
+
"""
|
|
172
|
+
Get an existing IntegrationResourceProperty resource's state with the given name, id, and optional extra
|
|
173
|
+
properties used to qualify the lookup.
|
|
174
|
+
|
|
175
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
176
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
177
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
178
|
+
"""
|
|
179
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
180
|
+
|
|
181
|
+
__props__ = IntegrationResourcePropertyArgs.__new__(IntegrationResourcePropertyArgs)
|
|
182
|
+
|
|
183
|
+
__props__.__dict__["resource_arn"] = None
|
|
184
|
+
__props__.__dict__["resource_property_arn"] = None
|
|
185
|
+
__props__.__dict__["source_processing_properties"] = None
|
|
186
|
+
__props__.__dict__["tags"] = None
|
|
187
|
+
__props__.__dict__["target_processing_properties"] = None
|
|
188
|
+
return IntegrationResourceProperty(resource_name, opts=opts, __props__=__props__)
|
|
189
|
+
|
|
190
|
+
@_builtins.property
|
|
191
|
+
@pulumi.getter(name="resourceArn")
|
|
192
|
+
def resource_arn(self) -> pulumi.Output[_builtins.str]:
|
|
193
|
+
"""
|
|
194
|
+
The connection ARN of the source, or the database ARN of the target.
|
|
195
|
+
"""
|
|
196
|
+
return pulumi.get(self, "resource_arn")
|
|
197
|
+
|
|
198
|
+
@_builtins.property
|
|
199
|
+
@pulumi.getter(name="resourcePropertyArn")
|
|
200
|
+
def resource_property_arn(self) -> pulumi.Output[_builtins.str]:
|
|
201
|
+
"""
|
|
202
|
+
The integration resource property ARN.
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "resource_property_arn")
|
|
205
|
+
|
|
206
|
+
@_builtins.property
|
|
207
|
+
@pulumi.getter(name="sourceProcessingProperties")
|
|
208
|
+
def source_processing_properties(self) -> pulumi.Output[Optional['outputs.SourceProcessingPropertiesProperties']]:
|
|
209
|
+
"""
|
|
210
|
+
The resource properties associated with the integration source.
|
|
211
|
+
"""
|
|
212
|
+
return pulumi.get(self, "source_processing_properties")
|
|
213
|
+
|
|
214
|
+
@_builtins.property
|
|
215
|
+
@pulumi.getter
|
|
216
|
+
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
217
|
+
"""
|
|
218
|
+
An array of key-value pairs to apply to this resource.
|
|
219
|
+
"""
|
|
220
|
+
return pulumi.get(self, "tags")
|
|
221
|
+
|
|
222
|
+
@_builtins.property
|
|
223
|
+
@pulumi.getter(name="targetProcessingProperties")
|
|
224
|
+
def target_processing_properties(self) -> pulumi.Output[Optional['outputs.TargetProcessingPropertiesProperties']]:
|
|
225
|
+
"""
|
|
226
|
+
The resource properties associated with the integration target.
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "target_processing_properties")
|
|
229
|
+
|
|
@@ -42,6 +42,8 @@ __all__ = [
|
|
|
42
42
|
'SchemaRegistry',
|
|
43
43
|
'SchemaVersion',
|
|
44
44
|
'SchemaVersionSchema',
|
|
45
|
+
'SourceProcessingPropertiesProperties',
|
|
46
|
+
'TargetProcessingPropertiesProperties',
|
|
45
47
|
'TriggerAction',
|
|
46
48
|
'TriggerCondition',
|
|
47
49
|
'TriggerEventBatchingCondition',
|
|
@@ -1652,6 +1654,126 @@ class SchemaVersionSchema(dict):
|
|
|
1652
1654
|
return pulumi.get(self, "schema_name")
|
|
1653
1655
|
|
|
1654
1656
|
|
|
1657
|
+
@pulumi.output_type
|
|
1658
|
+
class SourceProcessingPropertiesProperties(dict):
|
|
1659
|
+
"""
|
|
1660
|
+
The resource properties associated with the integration source.
|
|
1661
|
+
"""
|
|
1662
|
+
@staticmethod
|
|
1663
|
+
def __key_warning(key: str):
|
|
1664
|
+
suggest = None
|
|
1665
|
+
if key == "roleArn":
|
|
1666
|
+
suggest = "role_arn"
|
|
1667
|
+
|
|
1668
|
+
if suggest:
|
|
1669
|
+
pulumi.log.warn(f"Key '{key}' not found in SourceProcessingPropertiesProperties. Access the value via the '{suggest}' property getter instead.")
|
|
1670
|
+
|
|
1671
|
+
def __getitem__(self, key: str) -> Any:
|
|
1672
|
+
SourceProcessingPropertiesProperties.__key_warning(key)
|
|
1673
|
+
return super().__getitem__(key)
|
|
1674
|
+
|
|
1675
|
+
def get(self, key: str, default = None) -> Any:
|
|
1676
|
+
SourceProcessingPropertiesProperties.__key_warning(key)
|
|
1677
|
+
return super().get(key, default)
|
|
1678
|
+
|
|
1679
|
+
def __init__(__self__, *,
|
|
1680
|
+
role_arn: _builtins.str):
|
|
1681
|
+
"""
|
|
1682
|
+
The resource properties associated with the integration source.
|
|
1683
|
+
:param _builtins.str role_arn: The IAM role to access the Glue connection.
|
|
1684
|
+
"""
|
|
1685
|
+
pulumi.set(__self__, "role_arn", role_arn)
|
|
1686
|
+
|
|
1687
|
+
@_builtins.property
|
|
1688
|
+
@pulumi.getter(name="roleArn")
|
|
1689
|
+
def role_arn(self) -> _builtins.str:
|
|
1690
|
+
"""
|
|
1691
|
+
The IAM role to access the Glue connection.
|
|
1692
|
+
"""
|
|
1693
|
+
return pulumi.get(self, "role_arn")
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
@pulumi.output_type
|
|
1697
|
+
class TargetProcessingPropertiesProperties(dict):
|
|
1698
|
+
"""
|
|
1699
|
+
The resource properties associated with the integration target.
|
|
1700
|
+
"""
|
|
1701
|
+
@staticmethod
|
|
1702
|
+
def __key_warning(key: str):
|
|
1703
|
+
suggest = None
|
|
1704
|
+
if key == "roleArn":
|
|
1705
|
+
suggest = "role_arn"
|
|
1706
|
+
elif key == "connectionName":
|
|
1707
|
+
suggest = "connection_name"
|
|
1708
|
+
elif key == "eventBusArn":
|
|
1709
|
+
suggest = "event_bus_arn"
|
|
1710
|
+
elif key == "kmsArn":
|
|
1711
|
+
suggest = "kms_arn"
|
|
1712
|
+
|
|
1713
|
+
if suggest:
|
|
1714
|
+
pulumi.log.warn(f"Key '{key}' not found in TargetProcessingPropertiesProperties. Access the value via the '{suggest}' property getter instead.")
|
|
1715
|
+
|
|
1716
|
+
def __getitem__(self, key: str) -> Any:
|
|
1717
|
+
TargetProcessingPropertiesProperties.__key_warning(key)
|
|
1718
|
+
return super().__getitem__(key)
|
|
1719
|
+
|
|
1720
|
+
def get(self, key: str, default = None) -> Any:
|
|
1721
|
+
TargetProcessingPropertiesProperties.__key_warning(key)
|
|
1722
|
+
return super().get(key, default)
|
|
1723
|
+
|
|
1724
|
+
def __init__(__self__, *,
|
|
1725
|
+
role_arn: _builtins.str,
|
|
1726
|
+
connection_name: Optional[_builtins.str] = None,
|
|
1727
|
+
event_bus_arn: Optional[_builtins.str] = None,
|
|
1728
|
+
kms_arn: Optional[_builtins.str] = None):
|
|
1729
|
+
"""
|
|
1730
|
+
The resource properties associated with the integration target.
|
|
1731
|
+
:param _builtins.str role_arn: The IAM role to access the Glue database.
|
|
1732
|
+
:param _builtins.str connection_name: The Glue network connection to configure the Glue job running in the customer VPC.
|
|
1733
|
+
:param _builtins.str event_bus_arn: The ARN of an Eventbridge event bus to receive the integration status notification.
|
|
1734
|
+
:param _builtins.str kms_arn: The ARN of the KMS key used for encryption.
|
|
1735
|
+
"""
|
|
1736
|
+
pulumi.set(__self__, "role_arn", role_arn)
|
|
1737
|
+
if connection_name is not None:
|
|
1738
|
+
pulumi.set(__self__, "connection_name", connection_name)
|
|
1739
|
+
if event_bus_arn is not None:
|
|
1740
|
+
pulumi.set(__self__, "event_bus_arn", event_bus_arn)
|
|
1741
|
+
if kms_arn is not None:
|
|
1742
|
+
pulumi.set(__self__, "kms_arn", kms_arn)
|
|
1743
|
+
|
|
1744
|
+
@_builtins.property
|
|
1745
|
+
@pulumi.getter(name="roleArn")
|
|
1746
|
+
def role_arn(self) -> _builtins.str:
|
|
1747
|
+
"""
|
|
1748
|
+
The IAM role to access the Glue database.
|
|
1749
|
+
"""
|
|
1750
|
+
return pulumi.get(self, "role_arn")
|
|
1751
|
+
|
|
1752
|
+
@_builtins.property
|
|
1753
|
+
@pulumi.getter(name="connectionName")
|
|
1754
|
+
def connection_name(self) -> Optional[_builtins.str]:
|
|
1755
|
+
"""
|
|
1756
|
+
The Glue network connection to configure the Glue job running in the customer VPC.
|
|
1757
|
+
"""
|
|
1758
|
+
return pulumi.get(self, "connection_name")
|
|
1759
|
+
|
|
1760
|
+
@_builtins.property
|
|
1761
|
+
@pulumi.getter(name="eventBusArn")
|
|
1762
|
+
def event_bus_arn(self) -> Optional[_builtins.str]:
|
|
1763
|
+
"""
|
|
1764
|
+
The ARN of an Eventbridge event bus to receive the integration status notification.
|
|
1765
|
+
"""
|
|
1766
|
+
return pulumi.get(self, "event_bus_arn")
|
|
1767
|
+
|
|
1768
|
+
@_builtins.property
|
|
1769
|
+
@pulumi.getter(name="kmsArn")
|
|
1770
|
+
def kms_arn(self) -> Optional[_builtins.str]:
|
|
1771
|
+
"""
|
|
1772
|
+
The ARN of the KMS key used for encryption.
|
|
1773
|
+
"""
|
|
1774
|
+
return pulumi.get(self, "kms_arn")
|
|
1775
|
+
|
|
1776
|
+
|
|
1655
1777
|
@pulumi.output_type
|
|
1656
1778
|
class TriggerAction(dict):
|
|
1657
1779
|
"""
|
|
@@ -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
|
|