pulumi-aws-native 1.38.0a1762236751__py3-none-any.whl → 1.38.0a1762321314__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.

Files changed (42) hide show
  1. pulumi_aws_native/__init__.py +4 -1
  2. pulumi_aws_native/appstream/get_image_builder.py +0 -4
  3. pulumi_aws_native/appstream/image_builder.py +0 -16
  4. pulumi_aws_native/aps/_inputs.py +58 -0
  5. pulumi_aws_native/aps/outputs.py +36 -0
  6. pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
  7. pulumi_aws_native/arcregionswitch/plan.py +0 -3
  8. pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
  9. pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
  10. pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
  11. pulumi_aws_native/cognito/__init__.py +2 -0
  12. pulumi_aws_native/cognito/_enums.py +12 -0
  13. pulumi_aws_native/cognito/get_terms.py +117 -0
  14. pulumi_aws_native/cognito/terms.py +236 -0
  15. pulumi_aws_native/ecs/_enums.py +1 -0
  16. pulumi_aws_native/glue/__init__.py +2 -0
  17. pulumi_aws_native/glue/_inputs.py +134 -0
  18. pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
  19. pulumi_aws_native/glue/integration_resource_property.py +229 -0
  20. pulumi_aws_native/glue/outputs.py +122 -0
  21. pulumi_aws_native/kendra/_inputs.py +21 -21
  22. pulumi_aws_native/kendra/outputs.py +14 -14
  23. pulumi_aws_native/pulumi-plugin.json +1 -1
  24. pulumi_aws_native/qbusiness/_inputs.py +3 -3
  25. pulumi_aws_native/qbusiness/application.py +4 -4
  26. pulumi_aws_native/qbusiness/outputs.py +2 -2
  27. pulumi_aws_native/quicksight/_inputs.py +9 -9
  28. pulumi_aws_native/quicksight/outputs.py +6 -6
  29. pulumi_aws_native/s3vectors/get_index.py +20 -0
  30. pulumi_aws_native/s3vectors/get_vector_bucket.py +20 -0
  31. pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +9 -0
  32. pulumi_aws_native/s3vectors/index.py +102 -0
  33. pulumi_aws_native/s3vectors/vector_bucket.py +42 -0
  34. pulumi_aws_native/s3vectors/vector_bucket_policy.py +24 -0
  35. pulumi_aws_native/wafv2/_inputs.py +72 -0
  36. pulumi_aws_native/wafv2/get_web_acl.py +15 -1
  37. pulumi_aws_native/wafv2/outputs.py +45 -0
  38. pulumi_aws_native/wafv2/web_acl.py +29 -0
  39. {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/METADATA +1 -1
  40. {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/RECORD +42 -36
  41. {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/WHEEL +0 -0
  42. {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/top_level.txt +0 -0
@@ -66,6 +66,10 @@ __all__ = [
66
66
  'SchemaVersionSchemaArgsDict',
67
67
  'SchemaVersionArgs',
68
68
  'SchemaVersionArgsDict',
69
+ 'SourceProcessingPropertiesPropertiesArgs',
70
+ 'SourceProcessingPropertiesPropertiesArgsDict',
71
+ 'TargetProcessingPropertiesPropertiesArgs',
72
+ 'TargetProcessingPropertiesPropertiesArgsDict',
69
73
  'TriggerActionArgs',
70
74
  'TriggerActionArgsDict',
71
75
  'TriggerConditionArgs',
@@ -1980,6 +1984,136 @@ class SchemaVersionArgs:
1980
1984
  pulumi.set(self, "version_number", value)
1981
1985
 
1982
1986
 
1987
+ if not MYPY:
1988
+ class SourceProcessingPropertiesPropertiesArgsDict(TypedDict):
1989
+ """
1990
+ The resource properties associated with the integration source.
1991
+ """
1992
+ role_arn: pulumi.Input[_builtins.str]
1993
+ """
1994
+ The IAM role to access the Glue connection.
1995
+ """
1996
+ elif False:
1997
+ SourceProcessingPropertiesPropertiesArgsDict: TypeAlias = Mapping[str, Any]
1998
+
1999
+ @pulumi.input_type
2000
+ class SourceProcessingPropertiesPropertiesArgs:
2001
+ def __init__(__self__, *,
2002
+ role_arn: pulumi.Input[_builtins.str]):
2003
+ """
2004
+ The resource properties associated with the integration source.
2005
+ :param pulumi.Input[_builtins.str] role_arn: The IAM role to access the Glue connection.
2006
+ """
2007
+ pulumi.set(__self__, "role_arn", role_arn)
2008
+
2009
+ @_builtins.property
2010
+ @pulumi.getter(name="roleArn")
2011
+ def role_arn(self) -> pulumi.Input[_builtins.str]:
2012
+ """
2013
+ The IAM role to access the Glue connection.
2014
+ """
2015
+ return pulumi.get(self, "role_arn")
2016
+
2017
+ @role_arn.setter
2018
+ def role_arn(self, value: pulumi.Input[_builtins.str]):
2019
+ pulumi.set(self, "role_arn", value)
2020
+
2021
+
2022
+ if not MYPY:
2023
+ class TargetProcessingPropertiesPropertiesArgsDict(TypedDict):
2024
+ """
2025
+ The resource properties associated with the integration target.
2026
+ """
2027
+ role_arn: pulumi.Input[_builtins.str]
2028
+ """
2029
+ The IAM role to access the Glue database.
2030
+ """
2031
+ connection_name: NotRequired[pulumi.Input[_builtins.str]]
2032
+ """
2033
+ The Glue network connection to configure the Glue job running in the customer VPC.
2034
+ """
2035
+ event_bus_arn: NotRequired[pulumi.Input[_builtins.str]]
2036
+ """
2037
+ The ARN of an Eventbridge event bus to receive the integration status notification.
2038
+ """
2039
+ kms_arn: NotRequired[pulumi.Input[_builtins.str]]
2040
+ """
2041
+ The ARN of the KMS key used for encryption.
2042
+ """
2043
+ elif False:
2044
+ TargetProcessingPropertiesPropertiesArgsDict: TypeAlias = Mapping[str, Any]
2045
+
2046
+ @pulumi.input_type
2047
+ class TargetProcessingPropertiesPropertiesArgs:
2048
+ def __init__(__self__, *,
2049
+ role_arn: pulumi.Input[_builtins.str],
2050
+ connection_name: Optional[pulumi.Input[_builtins.str]] = None,
2051
+ event_bus_arn: Optional[pulumi.Input[_builtins.str]] = None,
2052
+ kms_arn: Optional[pulumi.Input[_builtins.str]] = None):
2053
+ """
2054
+ The resource properties associated with the integration target.
2055
+ :param pulumi.Input[_builtins.str] role_arn: The IAM role to access the Glue database.
2056
+ :param pulumi.Input[_builtins.str] connection_name: The Glue network connection to configure the Glue job running in the customer VPC.
2057
+ :param pulumi.Input[_builtins.str] event_bus_arn: The ARN of an Eventbridge event bus to receive the integration status notification.
2058
+ :param pulumi.Input[_builtins.str] kms_arn: The ARN of the KMS key used for encryption.
2059
+ """
2060
+ pulumi.set(__self__, "role_arn", role_arn)
2061
+ if connection_name is not None:
2062
+ pulumi.set(__self__, "connection_name", connection_name)
2063
+ if event_bus_arn is not None:
2064
+ pulumi.set(__self__, "event_bus_arn", event_bus_arn)
2065
+ if kms_arn is not None:
2066
+ pulumi.set(__self__, "kms_arn", kms_arn)
2067
+
2068
+ @_builtins.property
2069
+ @pulumi.getter(name="roleArn")
2070
+ def role_arn(self) -> pulumi.Input[_builtins.str]:
2071
+ """
2072
+ The IAM role to access the Glue database.
2073
+ """
2074
+ return pulumi.get(self, "role_arn")
2075
+
2076
+ @role_arn.setter
2077
+ def role_arn(self, value: pulumi.Input[_builtins.str]):
2078
+ pulumi.set(self, "role_arn", value)
2079
+
2080
+ @_builtins.property
2081
+ @pulumi.getter(name="connectionName")
2082
+ def connection_name(self) -> Optional[pulumi.Input[_builtins.str]]:
2083
+ """
2084
+ The Glue network connection to configure the Glue job running in the customer VPC.
2085
+ """
2086
+ return pulumi.get(self, "connection_name")
2087
+
2088
+ @connection_name.setter
2089
+ def connection_name(self, value: Optional[pulumi.Input[_builtins.str]]):
2090
+ pulumi.set(self, "connection_name", value)
2091
+
2092
+ @_builtins.property
2093
+ @pulumi.getter(name="eventBusArn")
2094
+ def event_bus_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
2095
+ """
2096
+ The ARN of an Eventbridge event bus to receive the integration status notification.
2097
+ """
2098
+ return pulumi.get(self, "event_bus_arn")
2099
+
2100
+ @event_bus_arn.setter
2101
+ def event_bus_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
2102
+ pulumi.set(self, "event_bus_arn", value)
2103
+
2104
+ @_builtins.property
2105
+ @pulumi.getter(name="kmsArn")
2106
+ def kms_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
2107
+ """
2108
+ The ARN of the KMS key used for encryption.
2109
+ """
2110
+ return pulumi.get(self, "kms_arn")
2111
+
2112
+ @kms_arn.setter
2113
+ def kms_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
2114
+ pulumi.set(self, "kms_arn", value)
2115
+
2116
+
1983
2117
  if not MYPY:
1984
2118
  class TriggerActionArgsDict(TypedDict):
1985
2119
  """
@@ -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
  """