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
|
@@ -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
|
"""
|
|
@@ -48,6 +48,8 @@ __all__ = [
|
|
|
48
48
|
'DistributionConfigurationSsmParameterConfigurationArgsDict',
|
|
49
49
|
'DistributionConfigurationTargetContainerRepositoryArgs',
|
|
50
50
|
'DistributionConfigurationTargetContainerRepositoryArgsDict',
|
|
51
|
+
'ImageDeletionSettingsArgs',
|
|
52
|
+
'ImageDeletionSettingsArgsDict',
|
|
51
53
|
'ImageEcrConfigurationArgs',
|
|
52
54
|
'ImageEcrConfigurationArgsDict',
|
|
53
55
|
'ImageLoggingConfigurationArgs',
|
|
@@ -1512,6 +1514,41 @@ class DistributionConfigurationTargetContainerRepositoryArgs:
|
|
|
1512
1514
|
pulumi.set(self, "service", value)
|
|
1513
1515
|
|
|
1514
1516
|
|
|
1517
|
+
if not MYPY:
|
|
1518
|
+
class ImageDeletionSettingsArgsDict(TypedDict):
|
|
1519
|
+
"""
|
|
1520
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
1521
|
+
"""
|
|
1522
|
+
execution_role: pulumi.Input[_builtins.str]
|
|
1523
|
+
"""
|
|
1524
|
+
The execution role to use for deleting the image, as well as underlying resources.
|
|
1525
|
+
"""
|
|
1526
|
+
elif False:
|
|
1527
|
+
ImageDeletionSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
|
1528
|
+
|
|
1529
|
+
@pulumi.input_type
|
|
1530
|
+
class ImageDeletionSettingsArgs:
|
|
1531
|
+
def __init__(__self__, *,
|
|
1532
|
+
execution_role: pulumi.Input[_builtins.str]):
|
|
1533
|
+
"""
|
|
1534
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
1535
|
+
:param pulumi.Input[_builtins.str] execution_role: The execution role to use for deleting the image, as well as underlying resources.
|
|
1536
|
+
"""
|
|
1537
|
+
pulumi.set(__self__, "execution_role", execution_role)
|
|
1538
|
+
|
|
1539
|
+
@_builtins.property
|
|
1540
|
+
@pulumi.getter(name="executionRole")
|
|
1541
|
+
def execution_role(self) -> pulumi.Input[_builtins.str]:
|
|
1542
|
+
"""
|
|
1543
|
+
The execution role to use for deleting the image, as well as underlying resources.
|
|
1544
|
+
"""
|
|
1545
|
+
return pulumi.get(self, "execution_role")
|
|
1546
|
+
|
|
1547
|
+
@execution_role.setter
|
|
1548
|
+
def execution_role(self, value: pulumi.Input[_builtins.str]):
|
|
1549
|
+
pulumi.set(self, "execution_role", value)
|
|
1550
|
+
|
|
1551
|
+
|
|
1515
1552
|
if not MYPY:
|
|
1516
1553
|
class ImageEcrConfigurationArgsDict(TypedDict):
|
|
1517
1554
|
"""
|
|
@@ -23,6 +23,7 @@ __all__ = ['ImageArgs', 'Image']
|
|
|
23
23
|
class ImageArgs:
|
|
24
24
|
def __init__(__self__, *,
|
|
25
25
|
container_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
|
+
deletion_settings: Optional[pulumi.Input['ImageDeletionSettingsArgs']] = None,
|
|
26
27
|
distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
28
|
enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
28
29
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -37,6 +38,7 @@ class ImageArgs:
|
|
|
37
38
|
"""
|
|
38
39
|
The set of arguments for constructing a Image resource.
|
|
39
40
|
:param pulumi.Input[_builtins.str] container_recipe_arn: The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
|
|
41
|
+
:param pulumi.Input['ImageDeletionSettingsArgs'] deletion_settings: The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
40
42
|
:param pulumi.Input[_builtins.str] distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration.
|
|
41
43
|
:param pulumi.Input[_builtins.bool] enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list.
|
|
42
44
|
:param pulumi.Input[_builtins.str] execution_role: The execution role name/ARN for the image build, if provided
|
|
@@ -51,6 +53,8 @@ class ImageArgs:
|
|
|
51
53
|
"""
|
|
52
54
|
if container_recipe_arn is not None:
|
|
53
55
|
pulumi.set(__self__, "container_recipe_arn", container_recipe_arn)
|
|
56
|
+
if deletion_settings is not None:
|
|
57
|
+
pulumi.set(__self__, "deletion_settings", deletion_settings)
|
|
54
58
|
if distribution_configuration_arn is not None:
|
|
55
59
|
pulumi.set(__self__, "distribution_configuration_arn", distribution_configuration_arn)
|
|
56
60
|
if enhanced_image_metadata_enabled is not None:
|
|
@@ -86,6 +90,18 @@ class ImageArgs:
|
|
|
86
90
|
def container_recipe_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
87
91
|
pulumi.set(self, "container_recipe_arn", value)
|
|
88
92
|
|
|
93
|
+
@_builtins.property
|
|
94
|
+
@pulumi.getter(name="deletionSettings")
|
|
95
|
+
def deletion_settings(self) -> Optional[pulumi.Input['ImageDeletionSettingsArgs']]:
|
|
96
|
+
"""
|
|
97
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "deletion_settings")
|
|
100
|
+
|
|
101
|
+
@deletion_settings.setter
|
|
102
|
+
def deletion_settings(self, value: Optional[pulumi.Input['ImageDeletionSettingsArgs']]):
|
|
103
|
+
pulumi.set(self, "deletion_settings", value)
|
|
104
|
+
|
|
89
105
|
@_builtins.property
|
|
90
106
|
@pulumi.getter(name="distributionConfigurationArn")
|
|
91
107
|
def distribution_configuration_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -226,6 +242,7 @@ class Image(pulumi.CustomResource):
|
|
|
226
242
|
resource_name: str,
|
|
227
243
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
228
244
|
container_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
245
|
+
deletion_settings: Optional[pulumi.Input[Union['ImageDeletionSettingsArgs', 'ImageDeletionSettingsArgsDict']]] = None,
|
|
229
246
|
distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
230
247
|
enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
231
248
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -244,6 +261,7 @@ class Image(pulumi.CustomResource):
|
|
|
244
261
|
:param str resource_name: The name of the resource.
|
|
245
262
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
246
263
|
:param pulumi.Input[_builtins.str] container_recipe_arn: The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
|
|
264
|
+
:param pulumi.Input[Union['ImageDeletionSettingsArgs', 'ImageDeletionSettingsArgsDict']] deletion_settings: The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
247
265
|
:param pulumi.Input[_builtins.str] distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration.
|
|
248
266
|
:param pulumi.Input[_builtins.bool] enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list.
|
|
249
267
|
:param pulumi.Input[_builtins.str] execution_role: The execution role name/ARN for the image build, if provided
|
|
@@ -281,6 +299,7 @@ class Image(pulumi.CustomResource):
|
|
|
281
299
|
resource_name: str,
|
|
282
300
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
283
301
|
container_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
302
|
+
deletion_settings: Optional[pulumi.Input[Union['ImageDeletionSettingsArgs', 'ImageDeletionSettingsArgsDict']]] = None,
|
|
284
303
|
distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
285
304
|
enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
286
305
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -302,6 +321,7 @@ class Image(pulumi.CustomResource):
|
|
|
302
321
|
__props__ = ImageArgs.__new__(ImageArgs)
|
|
303
322
|
|
|
304
323
|
__props__.__dict__["container_recipe_arn"] = container_recipe_arn
|
|
324
|
+
__props__.__dict__["deletion_settings"] = deletion_settings
|
|
305
325
|
__props__.__dict__["distribution_configuration_arn"] = distribution_configuration_arn
|
|
306
326
|
__props__.__dict__["enhanced_image_metadata_enabled"] = enhanced_image_metadata_enabled
|
|
307
327
|
__props__.__dict__["execution_role"] = execution_role
|
|
@@ -344,6 +364,7 @@ class Image(pulumi.CustomResource):
|
|
|
344
364
|
|
|
345
365
|
__props__.__dict__["arn"] = None
|
|
346
366
|
__props__.__dict__["container_recipe_arn"] = None
|
|
367
|
+
__props__.__dict__["deletion_settings"] = None
|
|
347
368
|
__props__.__dict__["distribution_configuration_arn"] = None
|
|
348
369
|
__props__.__dict__["enhanced_image_metadata_enabled"] = None
|
|
349
370
|
__props__.__dict__["execution_role"] = None
|
|
@@ -377,6 +398,14 @@ class Image(pulumi.CustomResource):
|
|
|
377
398
|
"""
|
|
378
399
|
return pulumi.get(self, "container_recipe_arn")
|
|
379
400
|
|
|
401
|
+
@_builtins.property
|
|
402
|
+
@pulumi.getter(name="deletionSettings")
|
|
403
|
+
def deletion_settings(self) -> pulumi.Output[Optional['outputs.ImageDeletionSettings']]:
|
|
404
|
+
"""
|
|
405
|
+
The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
406
|
+
"""
|
|
407
|
+
return pulumi.get(self, "deletion_settings")
|
|
408
|
+
|
|
380
409
|
@_builtins.property
|
|
381
410
|
@pulumi.getter(name="distributionConfigurationArn")
|
|
382
411
|
def distribution_configuration_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
|