pulumi-aws-native 1.38.0a1761286050__py3-none-any.whl → 1.38.0a1761310773__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 +14 -0
- pulumi_aws_native/_enums.py +4 -0
- pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
- pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
- pulumi_aws_native/aps/__init__.py +2 -0
- pulumi_aws_native/aps/_inputs.py +232 -0
- pulumi_aws_native/aps/anomaly_detector.py +318 -0
- pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
- pulumi_aws_native/aps/outputs.py +193 -0
- pulumi_aws_native/cloudfront/_inputs.py +14 -1
- pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
- pulumi_aws_native/cloudfront/outputs.py +11 -1
- pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
- pulumi_aws_native/connect/_enums.py +68 -0
- pulumi_aws_native/connect/_inputs.py +581 -1
- pulumi_aws_native/connect/email_address.py +31 -0
- pulumi_aws_native/connect/get_email_address.py +16 -1
- pulumi_aws_native/connect/outputs.py +473 -3
- pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +99 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +102 -0
- pulumi_aws_native/ec2/capacity_reservation.py +6 -6
- pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
- pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
- pulumi_aws_native/ec2/nat_gateway.py +11 -0
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository.py +3 -2
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository.py +12 -8
- pulumi_aws_native/ecs/_enums.py +1 -0
- pulumi_aws_native/ecs/service.py +4 -0
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +201 -22
- pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
- pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +179 -16
- pulumi_aws_native/events/__init__.py +2 -0
- pulumi_aws_native/events/_inputs.py +78 -0
- pulumi_aws_native/events/event_bus_policy.py +275 -0
- pulumi_aws_native/events/get_event_bus_policy.py +85 -0
- pulumi_aws_native/events/outputs.py +48 -0
- pulumi_aws_native/gameliftstreams/application.py +4 -4
- pulumi_aws_native/imagebuilder/_inputs.py +58 -0
- pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
- pulumi_aws_native/imagebuilder/outputs.py +55 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/mediapackagev2/_enums.py +15 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +96 -0
- pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
- pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
- pulumi_aws_native/mediapackagev2/outputs.py +84 -0
- pulumi_aws_native/neptune/db_instance.py +29 -0
- pulumi_aws_native/neptune/get_db_instance.py +15 -1
- pulumi_aws_native/observabilityadmin/_enums.py +9 -0
- pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
- pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
- pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
- pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
- pulumi_aws_native/observabilityadmin/outputs.py +150 -0
- pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
- pulumi_aws_native/organizations/_enums.py +13 -0
- pulumi_aws_native/organizations/account.py +10 -0
- pulumi_aws_native/organizations/get_account.py +15 -1
- pulumi_aws_native/osis/_inputs.py +24 -0
- pulumi_aws_native/osis/get_pipeline.py +26 -1
- pulumi_aws_native/osis/outputs.py +13 -0
- pulumi_aws_native/osis/pipeline.py +50 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +1 -1
- pulumi_aws_native/quicksight/_inputs.py +3 -3
- pulumi_aws_native/quicksight/outputs.py +2 -2
- pulumi_aws_native/rds/db_cluster.py +24 -40
- pulumi_aws_native/route53/_inputs.py +21 -3
- pulumi_aws_native/route53/outputs.py +14 -2
- pulumi_aws_native/rtbfabric/__init__.py +15 -0
- pulumi_aws_native/rtbfabric/_enums.py +45 -0
- pulumi_aws_native/rtbfabric/_inputs.py +60 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +202 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +225 -0
- pulumi_aws_native/rtbfabric/outputs.py +57 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +263 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +351 -0
- pulumi_aws_native/s3/access_grants_location.py +15 -13
- pulumi_aws_native/sagemaker/_enums.py +10 -0
- pulumi_aws_native/sagemaker/_inputs.py +64 -0
- pulumi_aws_native/sagemaker/cluster.py +21 -0
- pulumi_aws_native/sagemaker/get_cluster.py +15 -4
- pulumi_aws_native/sagemaker/outputs.py +56 -0
- pulumi_aws_native/ssm/_inputs.py +15 -3
- pulumi_aws_native/ssm/outputs.py +10 -2
- pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
- pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
- pulumi_aws_native/synthetics/_inputs.py +52 -12
- pulumi_aws_native/synthetics/outputs.py +35 -8
- pulumi_aws_native/transfer/_inputs.py +9 -3
- pulumi_aws_native/transfer/outputs.py +6 -2
- pulumi_aws_native/wisdom/_enums.py +4 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/RECORD +104 -92
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,275 @@
|
|
|
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 ._inputs import *
|
|
18
|
+
|
|
19
|
+
__all__ = ['EventBusPolicyArgs', 'EventBusPolicy']
|
|
20
|
+
|
|
21
|
+
@pulumi.input_type
|
|
22
|
+
class EventBusPolicyArgs:
|
|
23
|
+
def __init__(__self__, *,
|
|
24
|
+
statement_id: pulumi.Input[_builtins.str],
|
|
25
|
+
action: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
|
+
condition: Optional[pulumi.Input['EventBusPolicyConditionArgs']] = None,
|
|
27
|
+
event_bus_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
|
+
principal: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
|
+
statement: Optional[Any] = None):
|
|
30
|
+
"""
|
|
31
|
+
The set of arguments for constructing a EventBusPolicy resource.
|
|
32
|
+
:param pulumi.Input[_builtins.str] statement_id: An identifier string for the external account that you are granting permissions to
|
|
33
|
+
:param pulumi.Input[_builtins.str] action: The action that you are enabling the other account to perform.
|
|
34
|
+
:param pulumi.Input[_builtins.str] event_bus_name: The name of the event bus associated with the rule. If you omit this, the default event bus is used.
|
|
35
|
+
:param pulumi.Input[_builtins.str] principal: The 12-digit AWS account ID that you are permitting to put events to your default event bus. Specify "*" to permit any account to put events to your default event bus.
|
|
36
|
+
:param Any statement: A JSON string that describes the permission policy statement. You can include a Policy parameter in the request instead of using the StatementId, Action, Principal, or Condition parameters.
|
|
37
|
+
|
|
38
|
+
Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::Events::EventBusPolicy` for more information about the expected schema for this property.
|
|
39
|
+
"""
|
|
40
|
+
pulumi.set(__self__, "statement_id", statement_id)
|
|
41
|
+
if action is not None:
|
|
42
|
+
pulumi.set(__self__, "action", action)
|
|
43
|
+
if condition is not None:
|
|
44
|
+
pulumi.set(__self__, "condition", condition)
|
|
45
|
+
if event_bus_name is not None:
|
|
46
|
+
pulumi.set(__self__, "event_bus_name", event_bus_name)
|
|
47
|
+
if principal is not None:
|
|
48
|
+
pulumi.set(__self__, "principal", principal)
|
|
49
|
+
if statement is not None:
|
|
50
|
+
pulumi.set(__self__, "statement", statement)
|
|
51
|
+
|
|
52
|
+
@_builtins.property
|
|
53
|
+
@pulumi.getter(name="statementId")
|
|
54
|
+
def statement_id(self) -> pulumi.Input[_builtins.str]:
|
|
55
|
+
"""
|
|
56
|
+
An identifier string for the external account that you are granting permissions to
|
|
57
|
+
"""
|
|
58
|
+
return pulumi.get(self, "statement_id")
|
|
59
|
+
|
|
60
|
+
@statement_id.setter
|
|
61
|
+
def statement_id(self, value: pulumi.Input[_builtins.str]):
|
|
62
|
+
pulumi.set(self, "statement_id", value)
|
|
63
|
+
|
|
64
|
+
@_builtins.property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def action(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
67
|
+
"""
|
|
68
|
+
The action that you are enabling the other account to perform.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "action")
|
|
71
|
+
|
|
72
|
+
@action.setter
|
|
73
|
+
def action(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
74
|
+
pulumi.set(self, "action", value)
|
|
75
|
+
|
|
76
|
+
@_builtins.property
|
|
77
|
+
@pulumi.getter
|
|
78
|
+
def condition(self) -> Optional[pulumi.Input['EventBusPolicyConditionArgs']]:
|
|
79
|
+
return pulumi.get(self, "condition")
|
|
80
|
+
|
|
81
|
+
@condition.setter
|
|
82
|
+
def condition(self, value: Optional[pulumi.Input['EventBusPolicyConditionArgs']]):
|
|
83
|
+
pulumi.set(self, "condition", value)
|
|
84
|
+
|
|
85
|
+
@_builtins.property
|
|
86
|
+
@pulumi.getter(name="eventBusName")
|
|
87
|
+
def event_bus_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
88
|
+
"""
|
|
89
|
+
The name of the event bus associated with the rule. If you omit this, the default event bus is used.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "event_bus_name")
|
|
92
|
+
|
|
93
|
+
@event_bus_name.setter
|
|
94
|
+
def event_bus_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
95
|
+
pulumi.set(self, "event_bus_name", value)
|
|
96
|
+
|
|
97
|
+
@_builtins.property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def principal(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
100
|
+
"""
|
|
101
|
+
The 12-digit AWS account ID that you are permitting to put events to your default event bus. Specify "*" to permit any account to put events to your default event bus.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "principal")
|
|
104
|
+
|
|
105
|
+
@principal.setter
|
|
106
|
+
def principal(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
107
|
+
pulumi.set(self, "principal", value)
|
|
108
|
+
|
|
109
|
+
@_builtins.property
|
|
110
|
+
@pulumi.getter
|
|
111
|
+
def statement(self) -> Optional[Any]:
|
|
112
|
+
"""
|
|
113
|
+
A JSON string that describes the permission policy statement. You can include a Policy parameter in the request instead of using the StatementId, Action, Principal, or Condition parameters.
|
|
114
|
+
|
|
115
|
+
Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::Events::EventBusPolicy` for more information about the expected schema for this property.
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "statement")
|
|
118
|
+
|
|
119
|
+
@statement.setter
|
|
120
|
+
def statement(self, value: Optional[Any]):
|
|
121
|
+
pulumi.set(self, "statement", value)
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
@pulumi.type_token("aws-native:events:EventBusPolicy")
|
|
125
|
+
class EventBusPolicy(pulumi.CustomResource):
|
|
126
|
+
@overload
|
|
127
|
+
def __init__(__self__,
|
|
128
|
+
resource_name: str,
|
|
129
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
130
|
+
action: Optional[pulumi.Input[_builtins.str]] = None,
|
|
131
|
+
condition: Optional[pulumi.Input[Union['EventBusPolicyConditionArgs', 'EventBusPolicyConditionArgsDict']]] = None,
|
|
132
|
+
event_bus_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
133
|
+
principal: Optional[pulumi.Input[_builtins.str]] = None,
|
|
134
|
+
statement: Optional[Any] = None,
|
|
135
|
+
statement_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
136
|
+
__props__=None):
|
|
137
|
+
"""
|
|
138
|
+
Resource Type definition for AWS::Events::EventBusPolicy
|
|
139
|
+
|
|
140
|
+
:param str resource_name: The name of the resource.
|
|
141
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
142
|
+
:param pulumi.Input[_builtins.str] action: The action that you are enabling the other account to perform.
|
|
143
|
+
:param pulumi.Input[_builtins.str] event_bus_name: The name of the event bus associated with the rule. If you omit this, the default event bus is used.
|
|
144
|
+
:param pulumi.Input[_builtins.str] principal: The 12-digit AWS account ID that you are permitting to put events to your default event bus. Specify "*" to permit any account to put events to your default event bus.
|
|
145
|
+
:param Any statement: A JSON string that describes the permission policy statement. You can include a Policy parameter in the request instead of using the StatementId, Action, Principal, or Condition parameters.
|
|
146
|
+
|
|
147
|
+
Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::Events::EventBusPolicy` for more information about the expected schema for this property.
|
|
148
|
+
:param pulumi.Input[_builtins.str] statement_id: An identifier string for the external account that you are granting permissions to
|
|
149
|
+
"""
|
|
150
|
+
...
|
|
151
|
+
@overload
|
|
152
|
+
def __init__(__self__,
|
|
153
|
+
resource_name: str,
|
|
154
|
+
args: EventBusPolicyArgs,
|
|
155
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
156
|
+
"""
|
|
157
|
+
Resource Type definition for AWS::Events::EventBusPolicy
|
|
158
|
+
|
|
159
|
+
:param str resource_name: The name of the resource.
|
|
160
|
+
:param EventBusPolicyArgs args: The arguments to use to populate this resource's properties.
|
|
161
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
162
|
+
"""
|
|
163
|
+
...
|
|
164
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
165
|
+
resource_args, opts = _utilities.get_resource_args_opts(EventBusPolicyArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
166
|
+
if resource_args is not None:
|
|
167
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
168
|
+
else:
|
|
169
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
170
|
+
|
|
171
|
+
def _internal_init(__self__,
|
|
172
|
+
resource_name: str,
|
|
173
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
174
|
+
action: Optional[pulumi.Input[_builtins.str]] = None,
|
|
175
|
+
condition: Optional[pulumi.Input[Union['EventBusPolicyConditionArgs', 'EventBusPolicyConditionArgsDict']]] = None,
|
|
176
|
+
event_bus_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
177
|
+
principal: Optional[pulumi.Input[_builtins.str]] = None,
|
|
178
|
+
statement: Optional[Any] = None,
|
|
179
|
+
statement_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
180
|
+
__props__=None):
|
|
181
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
182
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
183
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
184
|
+
if opts.id is None:
|
|
185
|
+
if __props__ is not None:
|
|
186
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
187
|
+
__props__ = EventBusPolicyArgs.__new__(EventBusPolicyArgs)
|
|
188
|
+
|
|
189
|
+
__props__.__dict__["action"] = action
|
|
190
|
+
__props__.__dict__["condition"] = condition
|
|
191
|
+
__props__.__dict__["event_bus_name"] = event_bus_name
|
|
192
|
+
__props__.__dict__["principal"] = principal
|
|
193
|
+
__props__.__dict__["statement"] = statement
|
|
194
|
+
if statement_id is None and not opts.urn:
|
|
195
|
+
raise TypeError("Missing required property 'statement_id'")
|
|
196
|
+
__props__.__dict__["statement_id"] = statement_id
|
|
197
|
+
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["eventBusName", "statementId"])
|
|
198
|
+
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
199
|
+
super(EventBusPolicy, __self__).__init__(
|
|
200
|
+
'aws-native:events:EventBusPolicy',
|
|
201
|
+
resource_name,
|
|
202
|
+
__props__,
|
|
203
|
+
opts)
|
|
204
|
+
|
|
205
|
+
@staticmethod
|
|
206
|
+
def get(resource_name: str,
|
|
207
|
+
id: pulumi.Input[str],
|
|
208
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'EventBusPolicy':
|
|
209
|
+
"""
|
|
210
|
+
Get an existing EventBusPolicy resource's state with the given name, id, and optional extra
|
|
211
|
+
properties used to qualify the lookup.
|
|
212
|
+
|
|
213
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
214
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
215
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
216
|
+
"""
|
|
217
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
218
|
+
|
|
219
|
+
__props__ = EventBusPolicyArgs.__new__(EventBusPolicyArgs)
|
|
220
|
+
|
|
221
|
+
__props__.__dict__["action"] = None
|
|
222
|
+
__props__.__dict__["condition"] = None
|
|
223
|
+
__props__.__dict__["event_bus_name"] = None
|
|
224
|
+
__props__.__dict__["principal"] = None
|
|
225
|
+
__props__.__dict__["statement"] = None
|
|
226
|
+
__props__.__dict__["statement_id"] = None
|
|
227
|
+
return EventBusPolicy(resource_name, opts=opts, __props__=__props__)
|
|
228
|
+
|
|
229
|
+
@_builtins.property
|
|
230
|
+
@pulumi.getter
|
|
231
|
+
def action(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
232
|
+
"""
|
|
233
|
+
The action that you are enabling the other account to perform.
|
|
234
|
+
"""
|
|
235
|
+
return pulumi.get(self, "action")
|
|
236
|
+
|
|
237
|
+
@_builtins.property
|
|
238
|
+
@pulumi.getter
|
|
239
|
+
def condition(self) -> pulumi.Output[Optional['outputs.EventBusPolicyCondition']]:
|
|
240
|
+
return pulumi.get(self, "condition")
|
|
241
|
+
|
|
242
|
+
@_builtins.property
|
|
243
|
+
@pulumi.getter(name="eventBusName")
|
|
244
|
+
def event_bus_name(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
245
|
+
"""
|
|
246
|
+
The name of the event bus associated with the rule. If you omit this, the default event bus is used.
|
|
247
|
+
"""
|
|
248
|
+
return pulumi.get(self, "event_bus_name")
|
|
249
|
+
|
|
250
|
+
@_builtins.property
|
|
251
|
+
@pulumi.getter
|
|
252
|
+
def principal(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
253
|
+
"""
|
|
254
|
+
The 12-digit AWS account ID that you are permitting to put events to your default event bus. Specify "*" to permit any account to put events to your default event bus.
|
|
255
|
+
"""
|
|
256
|
+
return pulumi.get(self, "principal")
|
|
257
|
+
|
|
258
|
+
@_builtins.property
|
|
259
|
+
@pulumi.getter
|
|
260
|
+
def statement(self) -> pulumi.Output[Optional[Any]]:
|
|
261
|
+
"""
|
|
262
|
+
A JSON string that describes the permission policy statement. You can include a Policy parameter in the request instead of using the StatementId, Action, Principal, or Condition parameters.
|
|
263
|
+
|
|
264
|
+
Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::Events::EventBusPolicy` for more information about the expected schema for this property.
|
|
265
|
+
"""
|
|
266
|
+
return pulumi.get(self, "statement")
|
|
267
|
+
|
|
268
|
+
@_builtins.property
|
|
269
|
+
@pulumi.getter(name="statementId")
|
|
270
|
+
def statement_id(self) -> pulumi.Output[_builtins.str]:
|
|
271
|
+
"""
|
|
272
|
+
An identifier string for the external account that you are granting permissions to
|
|
273
|
+
"""
|
|
274
|
+
return pulumi.get(self, "statement_id")
|
|
275
|
+
|
|
@@ -0,0 +1,85 @@
|
|
|
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
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
'GetEventBusPolicyResult',
|
|
19
|
+
'AwaitableGetEventBusPolicyResult',
|
|
20
|
+
'get_event_bus_policy',
|
|
21
|
+
'get_event_bus_policy_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetEventBusPolicyResult:
|
|
26
|
+
def __init__(__self__, statement=None):
|
|
27
|
+
if statement and not isinstance(statement, dict):
|
|
28
|
+
raise TypeError("Expected argument 'statement' to be a dict")
|
|
29
|
+
pulumi.set(__self__, "statement", statement)
|
|
30
|
+
|
|
31
|
+
@_builtins.property
|
|
32
|
+
@pulumi.getter
|
|
33
|
+
def statement(self) -> Optional[Any]:
|
|
34
|
+
"""
|
|
35
|
+
A JSON string that describes the permission policy statement. You can include a Policy parameter in the request instead of using the StatementId, Action, Principal, or Condition parameters.
|
|
36
|
+
|
|
37
|
+
Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::Events::EventBusPolicy` for more information about the expected schema for this property.
|
|
38
|
+
"""
|
|
39
|
+
return pulumi.get(self, "statement")
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
class AwaitableGetEventBusPolicyResult(GetEventBusPolicyResult):
|
|
43
|
+
# pylint: disable=using-constant-test
|
|
44
|
+
def __await__(self):
|
|
45
|
+
if False:
|
|
46
|
+
yield self
|
|
47
|
+
return GetEventBusPolicyResult(
|
|
48
|
+
statement=self.statement)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def get_event_bus_policy(event_bus_name: Optional[_builtins.str] = None,
|
|
52
|
+
statement_id: Optional[_builtins.str] = None,
|
|
53
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEventBusPolicyResult:
|
|
54
|
+
"""
|
|
55
|
+
Resource Type definition for AWS::Events::EventBusPolicy
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
:param _builtins.str event_bus_name: The name of the event bus associated with the rule. If you omit this, the default event bus is used.
|
|
59
|
+
:param _builtins.str statement_id: An identifier string for the external account that you are granting permissions to
|
|
60
|
+
"""
|
|
61
|
+
__args__ = dict()
|
|
62
|
+
__args__['eventBusName'] = event_bus_name
|
|
63
|
+
__args__['statementId'] = statement_id
|
|
64
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
65
|
+
__ret__ = pulumi.runtime.invoke('aws-native:events:getEventBusPolicy', __args__, opts=opts, typ=GetEventBusPolicyResult).value
|
|
66
|
+
|
|
67
|
+
return AwaitableGetEventBusPolicyResult(
|
|
68
|
+
statement=pulumi.get(__ret__, 'statement'))
|
|
69
|
+
def get_event_bus_policy_output(event_bus_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
70
|
+
statement_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
71
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEventBusPolicyResult]:
|
|
72
|
+
"""
|
|
73
|
+
Resource Type definition for AWS::Events::EventBusPolicy
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
:param _builtins.str event_bus_name: The name of the event bus associated with the rule. If you omit this, the default event bus is used.
|
|
77
|
+
:param _builtins.str statement_id: An identifier string for the external account that you are granting permissions to
|
|
78
|
+
"""
|
|
79
|
+
__args__ = dict()
|
|
80
|
+
__args__['eventBusName'] = event_bus_name
|
|
81
|
+
__args__['statementId'] = statement_id
|
|
82
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
83
|
+
__ret__ = pulumi.runtime.invoke_output('aws-native:events:getEventBusPolicy', __args__, opts=opts, typ=GetEventBusPolicyResult)
|
|
84
|
+
return __ret__.apply(lambda __response__: GetEventBusPolicyResult(
|
|
85
|
+
statement=pulumi.get(__response__, 'statement')))
|
|
@@ -33,6 +33,7 @@ __all__ = [
|
|
|
33
33
|
'EndpointReplicationConfig',
|
|
34
34
|
'EndpointRoutingConfig',
|
|
35
35
|
'EndpointSecondary',
|
|
36
|
+
'EventBusPolicyCondition',
|
|
36
37
|
'InvocationConnectivityParametersProperties',
|
|
37
38
|
'LogConfigProperties',
|
|
38
39
|
'RuleAppSyncParameters',
|
|
@@ -753,6 +754,53 @@ class EndpointSecondary(dict):
|
|
|
753
754
|
return pulumi.get(self, "route")
|
|
754
755
|
|
|
755
756
|
|
|
757
|
+
@pulumi.output_type
|
|
758
|
+
class EventBusPolicyCondition(dict):
|
|
759
|
+
"""
|
|
760
|
+
This parameter enables you to limit the permission to accounts that fulfill a certain condition, such as being a member of a certain AWS organization.
|
|
761
|
+
"""
|
|
762
|
+
def __init__(__self__, *,
|
|
763
|
+
key: Optional[_builtins.str] = None,
|
|
764
|
+
type: Optional[_builtins.str] = None,
|
|
765
|
+
value: Optional[_builtins.str] = None):
|
|
766
|
+
"""
|
|
767
|
+
This parameter enables you to limit the permission to accounts that fulfill a certain condition, such as being a member of a certain AWS organization.
|
|
768
|
+
:param _builtins.str key: Specifies the value for the key. Currently, this must be the ID of the organization.
|
|
769
|
+
:param _builtins.str type: Specifies the type of condition. Currently the only supported value is StringEquals.
|
|
770
|
+
:param _builtins.str value: Specifies the key for the condition. Currently the only supported key is aws:PrincipalOrgID.
|
|
771
|
+
"""
|
|
772
|
+
if key is not None:
|
|
773
|
+
pulumi.set(__self__, "key", key)
|
|
774
|
+
if type is not None:
|
|
775
|
+
pulumi.set(__self__, "type", type)
|
|
776
|
+
if value is not None:
|
|
777
|
+
pulumi.set(__self__, "value", value)
|
|
778
|
+
|
|
779
|
+
@_builtins.property
|
|
780
|
+
@pulumi.getter
|
|
781
|
+
def key(self) -> Optional[_builtins.str]:
|
|
782
|
+
"""
|
|
783
|
+
Specifies the value for the key. Currently, this must be the ID of the organization.
|
|
784
|
+
"""
|
|
785
|
+
return pulumi.get(self, "key")
|
|
786
|
+
|
|
787
|
+
@_builtins.property
|
|
788
|
+
@pulumi.getter
|
|
789
|
+
def type(self) -> Optional[_builtins.str]:
|
|
790
|
+
"""
|
|
791
|
+
Specifies the type of condition. Currently the only supported value is StringEquals.
|
|
792
|
+
"""
|
|
793
|
+
return pulumi.get(self, "type")
|
|
794
|
+
|
|
795
|
+
@_builtins.property
|
|
796
|
+
@pulumi.getter
|
|
797
|
+
def value(self) -> Optional[_builtins.str]:
|
|
798
|
+
"""
|
|
799
|
+
Specifies the key for the condition. Currently the only supported key is aws:PrincipalOrgID.
|
|
800
|
+
"""
|
|
801
|
+
return pulumi.get(self, "value")
|
|
802
|
+
|
|
803
|
+
|
|
756
804
|
@pulumi.output_type
|
|
757
805
|
class InvocationConnectivityParametersProperties(dict):
|
|
758
806
|
"""
|
|
@@ -36,7 +36,7 @@ class ApplicationArgs:
|
|
|
36
36
|
|
|
37
37
|
> The Amazon S3 bucket and the Amazon GameLift Streams application must be in the same AWS Region.
|
|
38
38
|
:param pulumi.Input[_builtins.str] description: A human-readable label for the application. You can update this value later.
|
|
39
|
-
:param pulumi.Input[_builtins.str] executable_path: The path and file name of the executable file that
|
|
39
|
+
:param pulumi.Input[_builtins.str] executable_path: The relative path and file name of the executable file that Amazon GameLift Streams will stream. Specify a path relative to the location set in `ApplicationSourceUri` . The file must be contained within the application's root folder. For Windows applications, the file must be a valid Windows executable or batch file with a filename ending in .exe, .cmd, or .bat. For Linux applications, the file must be a valid Linux binary executable or a script that contains an initial interpreter line starting with a shebang (' `#!` ').
|
|
40
40
|
:param pulumi.Input['ApplicationRuntimeEnvironmentArgs'] runtime_environment: A set of configuration settings to run the application on a stream group. This configures the operating system, and can include compatibility layers and other drivers.
|
|
41
41
|
:param pulumi.Input[_builtins.str] application_log_output_uri: An Amazon S3 URI to a bucket where you would like Amazon GameLift Streams to save application logs. Required if you specify one or more `ApplicationLogPaths` .
|
|
42
42
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] application_log_paths: Locations of log files that your content generates during a stream session. Enter path values that are relative to the `ApplicationSourceUri` location. You can specify up to 10 log paths. Amazon GameLift Streams uploads designated log files to the Amazon S3 bucket that you specify in `ApplicationLogOutputUri` at the end of a stream session. To retrieve stored log files, call [GetStreamSession](https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamSession.html) and get the `LogFileLocationUri` .
|
|
@@ -85,7 +85,7 @@ class ApplicationArgs:
|
|
|
85
85
|
@pulumi.getter(name="executablePath")
|
|
86
86
|
def executable_path(self) -> pulumi.Input[_builtins.str]:
|
|
87
87
|
"""
|
|
88
|
-
The path and file name of the executable file that
|
|
88
|
+
The relative path and file name of the executable file that Amazon GameLift Streams will stream. Specify a path relative to the location set in `ApplicationSourceUri` . The file must be contained within the application's root folder. For Windows applications, the file must be a valid Windows executable or batch file with a filename ending in .exe, .cmd, or .bat. For Linux applications, the file must be a valid Linux binary executable or a script that contains an initial interpreter line starting with a shebang (' `#!` ').
|
|
89
89
|
"""
|
|
90
90
|
return pulumi.get(self, "executable_path")
|
|
91
91
|
|
|
@@ -169,7 +169,7 @@ class Application(pulumi.CustomResource):
|
|
|
169
169
|
|
|
170
170
|
> The Amazon S3 bucket and the Amazon GameLift Streams application must be in the same AWS Region.
|
|
171
171
|
:param pulumi.Input[_builtins.str] description: A human-readable label for the application. You can update this value later.
|
|
172
|
-
:param pulumi.Input[_builtins.str] executable_path: The path and file name of the executable file that
|
|
172
|
+
:param pulumi.Input[_builtins.str] executable_path: The relative path and file name of the executable file that Amazon GameLift Streams will stream. Specify a path relative to the location set in `ApplicationSourceUri` . The file must be contained within the application's root folder. For Windows applications, the file must be a valid Windows executable or batch file with a filename ending in .exe, .cmd, or .bat. For Linux applications, the file must be a valid Linux binary executable or a script that contains an initial interpreter line starting with a shebang (' `#!` ').
|
|
173
173
|
:param pulumi.Input[Union['ApplicationRuntimeEnvironmentArgs', 'ApplicationRuntimeEnvironmentArgsDict']] runtime_environment: A set of configuration settings to run the application on a stream group. This configures the operating system, and can include compatibility layers and other drivers.
|
|
174
174
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A list of labels to assign to the new application resource. Tags are developer-defined key-value pairs. Tagging AWS resources is useful for resource management, access management and cost allocation. See [Tagging AWS Resources](https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html) in the *AWS General Reference* .
|
|
175
175
|
"""
|
|
@@ -323,7 +323,7 @@ class Application(pulumi.CustomResource):
|
|
|
323
323
|
@pulumi.getter(name="executablePath")
|
|
324
324
|
def executable_path(self) -> pulumi.Output[_builtins.str]:
|
|
325
325
|
"""
|
|
326
|
-
The path and file name of the executable file that
|
|
326
|
+
The relative path and file name of the executable file that Amazon GameLift Streams will stream. Specify a path relative to the location set in `ApplicationSourceUri` . The file must be contained within the application's root folder. For Windows applications, the file must be a valid Windows executable or batch file with a filename ending in .exe, .cmd, or .bat. For Linux applications, the file must be a valid Linux binary executable or a script that contains an initial interpreter line starting with a shebang (' `#!` ').
|
|
327
327
|
"""
|
|
328
328
|
return pulumi.get(self, "executable_path")
|
|
329
329
|
|
|
@@ -56,6 +56,8 @@ __all__ = [
|
|
|
56
56
|
'ImagePipelineAutoDisablePolicyArgsDict',
|
|
57
57
|
'ImagePipelineEcrConfigurationArgs',
|
|
58
58
|
'ImagePipelineEcrConfigurationArgsDict',
|
|
59
|
+
'ImagePipelineExecutionSettingsArgs',
|
|
60
|
+
'ImagePipelineExecutionSettingsArgsDict',
|
|
59
61
|
'ImagePipelineImageScanningConfigurationArgs',
|
|
60
62
|
'ImagePipelineImageScanningConfigurationArgsDict',
|
|
61
63
|
'ImagePipelineImageTestsConfigurationArgs',
|
|
@@ -1693,6 +1695,62 @@ class ImagePipelineEcrConfigurationArgs:
|
|
|
1693
1695
|
pulumi.set(self, "repository_name", value)
|
|
1694
1696
|
|
|
1695
1697
|
|
|
1698
|
+
if not MYPY:
|
|
1699
|
+
class ImagePipelineExecutionSettingsArgsDict(TypedDict):
|
|
1700
|
+
"""
|
|
1701
|
+
The settings for starting an image pipeline execution.
|
|
1702
|
+
"""
|
|
1703
|
+
deployment_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
1704
|
+
"""
|
|
1705
|
+
The deployment ID of the pipeline, used to trigger new image pipeline executions.
|
|
1706
|
+
"""
|
|
1707
|
+
on_update: NotRequired[pulumi.Input[_builtins.bool]]
|
|
1708
|
+
"""
|
|
1709
|
+
Whether to trigger the image pipeline when the pipeline is updated. False by default.
|
|
1710
|
+
"""
|
|
1711
|
+
elif False:
|
|
1712
|
+
ImagePipelineExecutionSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
|
1713
|
+
|
|
1714
|
+
@pulumi.input_type
|
|
1715
|
+
class ImagePipelineExecutionSettingsArgs:
|
|
1716
|
+
def __init__(__self__, *,
|
|
1717
|
+
deployment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1718
|
+
on_update: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
1719
|
+
"""
|
|
1720
|
+
The settings for starting an image pipeline execution.
|
|
1721
|
+
:param pulumi.Input[_builtins.str] deployment_id: The deployment ID of the pipeline, used to trigger new image pipeline executions.
|
|
1722
|
+
:param pulumi.Input[_builtins.bool] on_update: Whether to trigger the image pipeline when the pipeline is updated. False by default.
|
|
1723
|
+
"""
|
|
1724
|
+
if deployment_id is not None:
|
|
1725
|
+
pulumi.set(__self__, "deployment_id", deployment_id)
|
|
1726
|
+
if on_update is not None:
|
|
1727
|
+
pulumi.set(__self__, "on_update", on_update)
|
|
1728
|
+
|
|
1729
|
+
@_builtins.property
|
|
1730
|
+
@pulumi.getter(name="deploymentId")
|
|
1731
|
+
def deployment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1732
|
+
"""
|
|
1733
|
+
The deployment ID of the pipeline, used to trigger new image pipeline executions.
|
|
1734
|
+
"""
|
|
1735
|
+
return pulumi.get(self, "deployment_id")
|
|
1736
|
+
|
|
1737
|
+
@deployment_id.setter
|
|
1738
|
+
def deployment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1739
|
+
pulumi.set(self, "deployment_id", value)
|
|
1740
|
+
|
|
1741
|
+
@_builtins.property
|
|
1742
|
+
@pulumi.getter(name="onUpdate")
|
|
1743
|
+
def on_update(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1744
|
+
"""
|
|
1745
|
+
Whether to trigger the image pipeline when the pipeline is updated. False by default.
|
|
1746
|
+
"""
|
|
1747
|
+
return pulumi.get(self, "on_update")
|
|
1748
|
+
|
|
1749
|
+
@on_update.setter
|
|
1750
|
+
def on_update(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
1751
|
+
pulumi.set(self, "on_update", value)
|
|
1752
|
+
|
|
1753
|
+
|
|
1696
1754
|
if not MYPY:
|
|
1697
1755
|
class ImagePipelineImageScanningConfigurationArgsDict(TypedDict):
|
|
1698
1756
|
"""
|
|
@@ -25,13 +25,16 @@ __all__ = [
|
|
|
25
25
|
|
|
26
26
|
@pulumi.output_type
|
|
27
27
|
class GetImagePipelineResult:
|
|
28
|
-
def __init__(__self__, arn=None, container_recipe_arn=None, description=None, distribution_configuration_arn=None, enhanced_image_metadata_enabled=None, execution_role=None, image_recipe_arn=None, image_scanning_configuration=None, image_tests_configuration=None, infrastructure_configuration_arn=None, logging_configuration=None, schedule=None, status=None, tags=None, workflows=None):
|
|
28
|
+
def __init__(__self__, arn=None, container_recipe_arn=None, deployment_id=None, description=None, distribution_configuration_arn=None, enhanced_image_metadata_enabled=None, execution_role=None, image_recipe_arn=None, image_scanning_configuration=None, image_tests_configuration=None, infrastructure_configuration_arn=None, logging_configuration=None, schedule=None, status=None, tags=None, workflows=None):
|
|
29
29
|
if arn and not isinstance(arn, str):
|
|
30
30
|
raise TypeError("Expected argument 'arn' to be a str")
|
|
31
31
|
pulumi.set(__self__, "arn", arn)
|
|
32
32
|
if container_recipe_arn and not isinstance(container_recipe_arn, str):
|
|
33
33
|
raise TypeError("Expected argument 'container_recipe_arn' to be a str")
|
|
34
34
|
pulumi.set(__self__, "container_recipe_arn", container_recipe_arn)
|
|
35
|
+
if deployment_id and not isinstance(deployment_id, str):
|
|
36
|
+
raise TypeError("Expected argument 'deployment_id' to be a str")
|
|
37
|
+
pulumi.set(__self__, "deployment_id", deployment_id)
|
|
35
38
|
if description and not isinstance(description, str):
|
|
36
39
|
raise TypeError("Expected argument 'description' to be a str")
|
|
37
40
|
pulumi.set(__self__, "description", description)
|
|
@@ -88,6 +91,14 @@ class GetImagePipelineResult:
|
|
|
88
91
|
"""
|
|
89
92
|
return pulumi.get(self, "container_recipe_arn")
|
|
90
93
|
|
|
94
|
+
@_builtins.property
|
|
95
|
+
@pulumi.getter(name="deploymentId")
|
|
96
|
+
def deployment_id(self) -> Optional[_builtins.str]:
|
|
97
|
+
"""
|
|
98
|
+
The deployment ID of the pipeline, used for resource create/update triggers.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "deployment_id")
|
|
101
|
+
|
|
91
102
|
@_builtins.property
|
|
92
103
|
@pulumi.getter
|
|
93
104
|
def description(self) -> Optional[_builtins.str]:
|
|
@@ -201,6 +212,7 @@ class AwaitableGetImagePipelineResult(GetImagePipelineResult):
|
|
|
201
212
|
return GetImagePipelineResult(
|
|
202
213
|
arn=self.arn,
|
|
203
214
|
container_recipe_arn=self.container_recipe_arn,
|
|
215
|
+
deployment_id=self.deployment_id,
|
|
204
216
|
description=self.description,
|
|
205
217
|
distribution_configuration_arn=self.distribution_configuration_arn,
|
|
206
218
|
enhanced_image_metadata_enabled=self.enhanced_image_metadata_enabled,
|
|
@@ -232,6 +244,7 @@ def get_image_pipeline(arn: Optional[_builtins.str] = None,
|
|
|
232
244
|
return AwaitableGetImagePipelineResult(
|
|
233
245
|
arn=pulumi.get(__ret__, 'arn'),
|
|
234
246
|
container_recipe_arn=pulumi.get(__ret__, 'container_recipe_arn'),
|
|
247
|
+
deployment_id=pulumi.get(__ret__, 'deployment_id'),
|
|
235
248
|
description=pulumi.get(__ret__, 'description'),
|
|
236
249
|
distribution_configuration_arn=pulumi.get(__ret__, 'distribution_configuration_arn'),
|
|
237
250
|
enhanced_image_metadata_enabled=pulumi.get(__ret__, 'enhanced_image_metadata_enabled'),
|
|
@@ -260,6 +273,7 @@ def get_image_pipeline_output(arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
260
273
|
return __ret__.apply(lambda __response__: GetImagePipelineResult(
|
|
261
274
|
arn=pulumi.get(__response__, 'arn'),
|
|
262
275
|
container_recipe_arn=pulumi.get(__response__, 'container_recipe_arn'),
|
|
276
|
+
deployment_id=pulumi.get(__response__, 'deployment_id'),
|
|
263
277
|
description=pulumi.get(__response__, 'description'),
|
|
264
278
|
distribution_configuration_arn=pulumi.get(__response__, 'distribution_configuration_arn'),
|
|
265
279
|
enhanced_image_metadata_enabled=pulumi.get(__response__, 'enhanced_image_metadata_enabled'),
|