pulumi-aws-native 1.38.0a1761284362__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.0a1761284362.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/RECORD +104 -92
- {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/top_level.txt +0 -0
|
@@ -25,7 +25,7 @@ __all__ = [
|
|
|
25
25
|
|
|
26
26
|
@pulumi.output_type
|
|
27
27
|
class GetAccountResult:
|
|
28
|
-
def __init__(__self__, account_id=None, account_name=None, arn=None, email=None, joined_method=None, joined_timestamp=None, parent_ids=None, status=None, tags=None):
|
|
28
|
+
def __init__(__self__, account_id=None, account_name=None, arn=None, email=None, joined_method=None, joined_timestamp=None, parent_ids=None, state=None, status=None, tags=None):
|
|
29
29
|
if account_id and not isinstance(account_id, str):
|
|
30
30
|
raise TypeError("Expected argument 'account_id' to be a str")
|
|
31
31
|
pulumi.set(__self__, "account_id", account_id)
|
|
@@ -47,6 +47,9 @@ class GetAccountResult:
|
|
|
47
47
|
if parent_ids and not isinstance(parent_ids, list):
|
|
48
48
|
raise TypeError("Expected argument 'parent_ids' to be a list")
|
|
49
49
|
pulumi.set(__self__, "parent_ids", parent_ids)
|
|
50
|
+
if state and not isinstance(state, str):
|
|
51
|
+
raise TypeError("Expected argument 'state' to be a str")
|
|
52
|
+
pulumi.set(__self__, "state", state)
|
|
50
53
|
if status and not isinstance(status, str):
|
|
51
54
|
raise TypeError("Expected argument 'status' to be a str")
|
|
52
55
|
pulumi.set(__self__, "status", status)
|
|
@@ -110,6 +113,14 @@ class GetAccountResult:
|
|
|
110
113
|
"""
|
|
111
114
|
return pulumi.get(self, "parent_ids")
|
|
112
115
|
|
|
116
|
+
@_builtins.property
|
|
117
|
+
@pulumi.getter
|
|
118
|
+
def state(self) -> Optional['AccountState']:
|
|
119
|
+
"""
|
|
120
|
+
The state of the account in the organization.
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "state")
|
|
123
|
+
|
|
113
124
|
@_builtins.property
|
|
114
125
|
@pulumi.getter
|
|
115
126
|
def status(self) -> Optional['AccountStatus']:
|
|
@@ -140,6 +151,7 @@ class AwaitableGetAccountResult(GetAccountResult):
|
|
|
140
151
|
joined_method=self.joined_method,
|
|
141
152
|
joined_timestamp=self.joined_timestamp,
|
|
142
153
|
parent_ids=self.parent_ids,
|
|
154
|
+
state=self.state,
|
|
143
155
|
status=self.status,
|
|
144
156
|
tags=self.tags)
|
|
145
157
|
|
|
@@ -165,6 +177,7 @@ def get_account(account_id: Optional[_builtins.str] = None,
|
|
|
165
177
|
joined_method=pulumi.get(__ret__, 'joined_method'),
|
|
166
178
|
joined_timestamp=pulumi.get(__ret__, 'joined_timestamp'),
|
|
167
179
|
parent_ids=pulumi.get(__ret__, 'parent_ids'),
|
|
180
|
+
state=pulumi.get(__ret__, 'state'),
|
|
168
181
|
status=pulumi.get(__ret__, 'status'),
|
|
169
182
|
tags=pulumi.get(__ret__, 'tags'))
|
|
170
183
|
def get_account_output(account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -187,5 +200,6 @@ def get_account_output(account_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
187
200
|
joined_method=pulumi.get(__response__, 'joined_method'),
|
|
188
201
|
joined_timestamp=pulumi.get(__response__, 'joined_timestamp'),
|
|
189
202
|
parent_ids=pulumi.get(__response__, 'parent_ids'),
|
|
203
|
+
state=pulumi.get(__response__, 'state'),
|
|
190
204
|
status=pulumi.get(__response__, 'status'),
|
|
191
205
|
tags=pulumi.get(__response__, 'tags')))
|
|
@@ -24,6 +24,8 @@ __all__ = [
|
|
|
24
24
|
'PipelineLogPublishingOptionsCloudWatchLogDestinationPropertiesArgsDict',
|
|
25
25
|
'PipelineLogPublishingOptionsArgs',
|
|
26
26
|
'PipelineLogPublishingOptionsArgsDict',
|
|
27
|
+
'PipelineResourcePolicyArgs',
|
|
28
|
+
'PipelineResourcePolicyArgsDict',
|
|
27
29
|
'PipelineVpcOptionsVpcAttachmentOptionsPropertiesArgs',
|
|
28
30
|
'PipelineVpcOptionsVpcAttachmentOptionsPropertiesArgsDict',
|
|
29
31
|
'PipelineVpcOptionsArgs',
|
|
@@ -186,6 +188,28 @@ class PipelineLogPublishingOptionsArgs:
|
|
|
186
188
|
pulumi.set(self, "is_logging_enabled", value)
|
|
187
189
|
|
|
188
190
|
|
|
191
|
+
if not MYPY:
|
|
192
|
+
class PipelineResourcePolicyArgsDict(TypedDict):
|
|
193
|
+
policy: Any
|
|
194
|
+
elif False:
|
|
195
|
+
PipelineResourcePolicyArgsDict: TypeAlias = Mapping[str, Any]
|
|
196
|
+
|
|
197
|
+
@pulumi.input_type
|
|
198
|
+
class PipelineResourcePolicyArgs:
|
|
199
|
+
def __init__(__self__, *,
|
|
200
|
+
policy: Any):
|
|
201
|
+
pulumi.set(__self__, "policy", policy)
|
|
202
|
+
|
|
203
|
+
@_builtins.property
|
|
204
|
+
@pulumi.getter
|
|
205
|
+
def policy(self) -> Any:
|
|
206
|
+
return pulumi.get(self, "policy")
|
|
207
|
+
|
|
208
|
+
@policy.setter
|
|
209
|
+
def policy(self, value: Any):
|
|
210
|
+
pulumi.set(self, "policy", value)
|
|
211
|
+
|
|
212
|
+
|
|
189
213
|
if not MYPY:
|
|
190
214
|
class PipelineVpcOptionsVpcAttachmentOptionsPropertiesArgsDict(TypedDict):
|
|
191
215
|
"""
|
|
@@ -26,7 +26,7 @@ __all__ = [
|
|
|
26
26
|
|
|
27
27
|
@pulumi.output_type
|
|
28
28
|
class GetPipelineResult:
|
|
29
|
-
def __init__(__self__, buffer_options=None, encryption_at_rest_options=None, ingest_endpoint_urls=None, log_publishing_options=None, max_units=None, min_units=None, pipeline_arn=None, pipeline_configuration_body=None, tags=None, vpc_endpoint_service=None, vpc_endpoints=None):
|
|
29
|
+
def __init__(__self__, buffer_options=None, encryption_at_rest_options=None, ingest_endpoint_urls=None, log_publishing_options=None, max_units=None, min_units=None, pipeline_arn=None, pipeline_configuration_body=None, pipeline_role_arn=None, resource_policy=None, tags=None, vpc_endpoint_service=None, vpc_endpoints=None):
|
|
30
30
|
if buffer_options and not isinstance(buffer_options, dict):
|
|
31
31
|
raise TypeError("Expected argument 'buffer_options' to be a dict")
|
|
32
32
|
pulumi.set(__self__, "buffer_options", buffer_options)
|
|
@@ -51,6 +51,12 @@ class GetPipelineResult:
|
|
|
51
51
|
if pipeline_configuration_body and not isinstance(pipeline_configuration_body, str):
|
|
52
52
|
raise TypeError("Expected argument 'pipeline_configuration_body' to be a str")
|
|
53
53
|
pulumi.set(__self__, "pipeline_configuration_body", pipeline_configuration_body)
|
|
54
|
+
if pipeline_role_arn and not isinstance(pipeline_role_arn, str):
|
|
55
|
+
raise TypeError("Expected argument 'pipeline_role_arn' to be a str")
|
|
56
|
+
pulumi.set(__self__, "pipeline_role_arn", pipeline_role_arn)
|
|
57
|
+
if resource_policy and not isinstance(resource_policy, dict):
|
|
58
|
+
raise TypeError("Expected argument 'resource_policy' to be a dict")
|
|
59
|
+
pulumi.set(__self__, "resource_policy", resource_policy)
|
|
54
60
|
if tags and not isinstance(tags, list):
|
|
55
61
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
56
62
|
pulumi.set(__self__, "tags", tags)
|
|
@@ -125,6 +131,19 @@ class GetPipelineResult:
|
|
|
125
131
|
"""
|
|
126
132
|
return pulumi.get(self, "pipeline_configuration_body")
|
|
127
133
|
|
|
134
|
+
@_builtins.property
|
|
135
|
+
@pulumi.getter(name="pipelineRoleArn")
|
|
136
|
+
def pipeline_role_arn(self) -> Optional[_builtins.str]:
|
|
137
|
+
"""
|
|
138
|
+
The Pipeline Role (ARN) for the pipeline.
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "pipeline_role_arn")
|
|
141
|
+
|
|
142
|
+
@_builtins.property
|
|
143
|
+
@pulumi.getter(name="resourcePolicy")
|
|
144
|
+
def resource_policy(self) -> Optional['outputs.PipelineResourcePolicy']:
|
|
145
|
+
return pulumi.get(self, "resource_policy")
|
|
146
|
+
|
|
128
147
|
@_builtins.property
|
|
129
148
|
@pulumi.getter
|
|
130
149
|
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
@@ -164,6 +183,8 @@ class AwaitableGetPipelineResult(GetPipelineResult):
|
|
|
164
183
|
min_units=self.min_units,
|
|
165
184
|
pipeline_arn=self.pipeline_arn,
|
|
166
185
|
pipeline_configuration_body=self.pipeline_configuration_body,
|
|
186
|
+
pipeline_role_arn=self.pipeline_role_arn,
|
|
187
|
+
resource_policy=self.resource_policy,
|
|
167
188
|
tags=self.tags,
|
|
168
189
|
vpc_endpoint_service=self.vpc_endpoint_service,
|
|
169
190
|
vpc_endpoints=self.vpc_endpoints)
|
|
@@ -191,6 +212,8 @@ def get_pipeline(pipeline_arn: Optional[_builtins.str] = None,
|
|
|
191
212
|
min_units=pulumi.get(__ret__, 'min_units'),
|
|
192
213
|
pipeline_arn=pulumi.get(__ret__, 'pipeline_arn'),
|
|
193
214
|
pipeline_configuration_body=pulumi.get(__ret__, 'pipeline_configuration_body'),
|
|
215
|
+
pipeline_role_arn=pulumi.get(__ret__, 'pipeline_role_arn'),
|
|
216
|
+
resource_policy=pulumi.get(__ret__, 'resource_policy'),
|
|
194
217
|
tags=pulumi.get(__ret__, 'tags'),
|
|
195
218
|
vpc_endpoint_service=pulumi.get(__ret__, 'vpc_endpoint_service'),
|
|
196
219
|
vpc_endpoints=pulumi.get(__ret__, 'vpc_endpoints'))
|
|
@@ -215,6 +238,8 @@ def get_pipeline_output(pipeline_arn: Optional[pulumi.Input[_builtins.str]] = No
|
|
|
215
238
|
min_units=pulumi.get(__response__, 'min_units'),
|
|
216
239
|
pipeline_arn=pulumi.get(__response__, 'pipeline_arn'),
|
|
217
240
|
pipeline_configuration_body=pulumi.get(__response__, 'pipeline_configuration_body'),
|
|
241
|
+
pipeline_role_arn=pulumi.get(__response__, 'pipeline_role_arn'),
|
|
242
|
+
resource_policy=pulumi.get(__response__, 'resource_policy'),
|
|
218
243
|
tags=pulumi.get(__response__, 'tags'),
|
|
219
244
|
vpc_endpoint_service=pulumi.get(__response__, 'vpc_endpoint_service'),
|
|
220
245
|
vpc_endpoints=pulumi.get(__response__, 'vpc_endpoints')))
|
|
@@ -21,6 +21,7 @@ __all__ = [
|
|
|
21
21
|
'PipelineEncryptionAtRestOptions',
|
|
22
22
|
'PipelineLogPublishingOptions',
|
|
23
23
|
'PipelineLogPublishingOptionsCloudWatchLogDestinationProperties',
|
|
24
|
+
'PipelineResourcePolicy',
|
|
24
25
|
'PipelineVpcEndpoint',
|
|
25
26
|
'PipelineVpcOptions',
|
|
26
27
|
'PipelineVpcOptionsVpcAttachmentOptionsProperties',
|
|
@@ -193,6 +194,18 @@ class PipelineLogPublishingOptionsCloudWatchLogDestinationProperties(dict):
|
|
|
193
194
|
return pulumi.get(self, "log_group")
|
|
194
195
|
|
|
195
196
|
|
|
197
|
+
@pulumi.output_type
|
|
198
|
+
class PipelineResourcePolicy(dict):
|
|
199
|
+
def __init__(__self__, *,
|
|
200
|
+
policy: Any):
|
|
201
|
+
pulumi.set(__self__, "policy", policy)
|
|
202
|
+
|
|
203
|
+
@_builtins.property
|
|
204
|
+
@pulumi.getter
|
|
205
|
+
def policy(self) -> Any:
|
|
206
|
+
return pulumi.get(self, "policy")
|
|
207
|
+
|
|
208
|
+
|
|
196
209
|
@pulumi.output_type
|
|
197
210
|
class PipelineVpcEndpoint(dict):
|
|
198
211
|
"""
|
|
@@ -31,6 +31,8 @@ class PipelineArgs:
|
|
|
31
31
|
encryption_at_rest_options: Optional[pulumi.Input['PipelineEncryptionAtRestOptionsArgs']] = None,
|
|
32
32
|
log_publishing_options: Optional[pulumi.Input['PipelineLogPublishingOptionsArgs']] = None,
|
|
33
33
|
pipeline_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
34
|
+
pipeline_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
35
|
+
resource_policy: Optional[pulumi.Input['PipelineResourcePolicyArgs']] = None,
|
|
34
36
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None,
|
|
35
37
|
vpc_options: Optional[pulumi.Input['PipelineVpcOptionsArgs']] = None):
|
|
36
38
|
"""
|
|
@@ -42,6 +44,7 @@ class PipelineArgs:
|
|
|
42
44
|
:param pulumi.Input['PipelineEncryptionAtRestOptionsArgs'] encryption_at_rest_options: Options to control how OpenSearch encrypts buffer data.
|
|
43
45
|
:param pulumi.Input['PipelineLogPublishingOptionsArgs'] log_publishing_options: Key-value pairs that represent log publishing settings.
|
|
44
46
|
:param pulumi.Input[_builtins.str] pipeline_name: Name of the OpenSearch Ingestion Service pipeline to create. Pipeline names are unique across the pipelines owned by an account within an AWS Region.
|
|
47
|
+
:param pulumi.Input[_builtins.str] pipeline_role_arn: The Pipeline Role (ARN) for the pipeline.
|
|
45
48
|
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: An array of key-value pairs to apply to this resource.
|
|
46
49
|
:param pulumi.Input['PipelineVpcOptionsArgs'] vpc_options: Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.
|
|
47
50
|
"""
|
|
@@ -56,6 +59,10 @@ class PipelineArgs:
|
|
|
56
59
|
pulumi.set(__self__, "log_publishing_options", log_publishing_options)
|
|
57
60
|
if pipeline_name is not None:
|
|
58
61
|
pulumi.set(__self__, "pipeline_name", pipeline_name)
|
|
62
|
+
if pipeline_role_arn is not None:
|
|
63
|
+
pulumi.set(__self__, "pipeline_role_arn", pipeline_role_arn)
|
|
64
|
+
if resource_policy is not None:
|
|
65
|
+
pulumi.set(__self__, "resource_policy", resource_policy)
|
|
59
66
|
if tags is not None:
|
|
60
67
|
pulumi.set(__self__, "tags", tags)
|
|
61
68
|
if vpc_options is not None:
|
|
@@ -145,6 +152,27 @@ class PipelineArgs:
|
|
|
145
152
|
def pipeline_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
146
153
|
pulumi.set(self, "pipeline_name", value)
|
|
147
154
|
|
|
155
|
+
@_builtins.property
|
|
156
|
+
@pulumi.getter(name="pipelineRoleArn")
|
|
157
|
+
def pipeline_role_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
158
|
+
"""
|
|
159
|
+
The Pipeline Role (ARN) for the pipeline.
|
|
160
|
+
"""
|
|
161
|
+
return pulumi.get(self, "pipeline_role_arn")
|
|
162
|
+
|
|
163
|
+
@pipeline_role_arn.setter
|
|
164
|
+
def pipeline_role_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
165
|
+
pulumi.set(self, "pipeline_role_arn", value)
|
|
166
|
+
|
|
167
|
+
@_builtins.property
|
|
168
|
+
@pulumi.getter(name="resourcePolicy")
|
|
169
|
+
def resource_policy(self) -> Optional[pulumi.Input['PipelineResourcePolicyArgs']]:
|
|
170
|
+
return pulumi.get(self, "resource_policy")
|
|
171
|
+
|
|
172
|
+
@resource_policy.setter
|
|
173
|
+
def resource_policy(self, value: Optional[pulumi.Input['PipelineResourcePolicyArgs']]):
|
|
174
|
+
pulumi.set(self, "resource_policy", value)
|
|
175
|
+
|
|
148
176
|
@_builtins.property
|
|
149
177
|
@pulumi.getter
|
|
150
178
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
@@ -183,6 +211,8 @@ class Pipeline(pulumi.CustomResource):
|
|
|
183
211
|
min_units: Optional[pulumi.Input[_builtins.int]] = None,
|
|
184
212
|
pipeline_configuration_body: Optional[pulumi.Input[_builtins.str]] = None,
|
|
185
213
|
pipeline_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
214
|
+
pipeline_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
215
|
+
resource_policy: Optional[pulumi.Input[Union['PipelineResourcePolicyArgs', 'PipelineResourcePolicyArgsDict']]] = None,
|
|
186
216
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
187
217
|
vpc_options: Optional[pulumi.Input[Union['PipelineVpcOptionsArgs', 'PipelineVpcOptionsArgsDict']]] = None,
|
|
188
218
|
__props__=None):
|
|
@@ -198,6 +228,7 @@ class Pipeline(pulumi.CustomResource):
|
|
|
198
228
|
:param pulumi.Input[_builtins.int] min_units: The minimum pipeline capacity, in Ingestion OpenSearch Compute Units (OCUs).
|
|
199
229
|
:param pulumi.Input[_builtins.str] pipeline_configuration_body: The Data Prepper pipeline configuration.
|
|
200
230
|
:param pulumi.Input[_builtins.str] pipeline_name: Name of the OpenSearch Ingestion Service pipeline to create. Pipeline names are unique across the pipelines owned by an account within an AWS Region.
|
|
231
|
+
:param pulumi.Input[_builtins.str] pipeline_role_arn: The Pipeline Role (ARN) for the pipeline.
|
|
201
232
|
: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.
|
|
202
233
|
:param pulumi.Input[Union['PipelineVpcOptionsArgs', 'PipelineVpcOptionsArgsDict']] vpc_options: Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.
|
|
203
234
|
"""
|
|
@@ -232,6 +263,8 @@ class Pipeline(pulumi.CustomResource):
|
|
|
232
263
|
min_units: Optional[pulumi.Input[_builtins.int]] = None,
|
|
233
264
|
pipeline_configuration_body: Optional[pulumi.Input[_builtins.str]] = None,
|
|
234
265
|
pipeline_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
266
|
+
pipeline_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
267
|
+
resource_policy: Optional[pulumi.Input[Union['PipelineResourcePolicyArgs', 'PipelineResourcePolicyArgsDict']]] = None,
|
|
235
268
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
236
269
|
vpc_options: Optional[pulumi.Input[Union['PipelineVpcOptionsArgs', 'PipelineVpcOptionsArgsDict']]] = None,
|
|
237
270
|
__props__=None):
|
|
@@ -256,6 +289,8 @@ class Pipeline(pulumi.CustomResource):
|
|
|
256
289
|
raise TypeError("Missing required property 'pipeline_configuration_body'")
|
|
257
290
|
__props__.__dict__["pipeline_configuration_body"] = pipeline_configuration_body
|
|
258
291
|
__props__.__dict__["pipeline_name"] = pipeline_name
|
|
292
|
+
__props__.__dict__["pipeline_role_arn"] = pipeline_role_arn
|
|
293
|
+
__props__.__dict__["resource_policy"] = resource_policy
|
|
259
294
|
__props__.__dict__["tags"] = tags
|
|
260
295
|
__props__.__dict__["vpc_options"] = vpc_options
|
|
261
296
|
__props__.__dict__["ingest_endpoint_urls"] = None
|
|
@@ -295,6 +330,8 @@ class Pipeline(pulumi.CustomResource):
|
|
|
295
330
|
__props__.__dict__["pipeline_arn"] = None
|
|
296
331
|
__props__.__dict__["pipeline_configuration_body"] = None
|
|
297
332
|
__props__.__dict__["pipeline_name"] = None
|
|
333
|
+
__props__.__dict__["pipeline_role_arn"] = None
|
|
334
|
+
__props__.__dict__["resource_policy"] = None
|
|
298
335
|
__props__.__dict__["tags"] = None
|
|
299
336
|
__props__.__dict__["vpc_endpoint_service"] = None
|
|
300
337
|
__props__.__dict__["vpc_endpoints"] = None
|
|
@@ -373,6 +410,19 @@ class Pipeline(pulumi.CustomResource):
|
|
|
373
410
|
"""
|
|
374
411
|
return pulumi.get(self, "pipeline_name")
|
|
375
412
|
|
|
413
|
+
@_builtins.property
|
|
414
|
+
@pulumi.getter(name="pipelineRoleArn")
|
|
415
|
+
def pipeline_role_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
416
|
+
"""
|
|
417
|
+
The Pipeline Role (ARN) for the pipeline.
|
|
418
|
+
"""
|
|
419
|
+
return pulumi.get(self, "pipeline_role_arn")
|
|
420
|
+
|
|
421
|
+
@_builtins.property
|
|
422
|
+
@pulumi.getter(name="resourcePolicy")
|
|
423
|
+
def resource_policy(self) -> pulumi.Output[Optional['outputs.PipelineResourcePolicy']]:
|
|
424
|
+
return pulumi.get(self, "resource_policy")
|
|
425
|
+
|
|
376
426
|
@_builtins.property
|
|
377
427
|
@pulumi.getter
|
|
378
428
|
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
@@ -2551,7 +2551,7 @@ class RefreshScheduleMapRefreshType(_builtins.str, Enum):
|
|
|
2551
2551
|
- `FULL_REFRESH` : A complete refresh of a dataset.
|
|
2552
2552
|
- `INCREMENTAL_REFRESH` : A partial refresh of some rows of a dataset, based on the time window specified.
|
|
2553
2553
|
|
|
2554
|
-
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *
|
|
2554
|
+
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *Quick Suite User Guide* .
|
|
2555
2555
|
"""
|
|
2556
2556
|
FULL_REFRESH = "FULL_REFRESH"
|
|
2557
2557
|
INCREMENTAL_REFRESH = "INCREMENTAL_REFRESH"
|
|
@@ -99108,7 +99108,7 @@ if not MYPY:
|
|
|
99108
99108
|
- `FULL_REFRESH` : A complete refresh of a dataset.
|
|
99109
99109
|
- `INCREMENTAL_REFRESH` : A partial refresh of some rows of a dataset, based on the time window specified.
|
|
99110
99110
|
|
|
99111
|
-
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *
|
|
99111
|
+
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *Quick Suite User Guide* .
|
|
99112
99112
|
"""
|
|
99113
99113
|
schedule_frequency: NotRequired[pulumi.Input['RefreshScheduleMapScheduleFrequencyPropertiesArgsDict']]
|
|
99114
99114
|
"""
|
|
@@ -99138,7 +99138,7 @@ class RefreshScheduleMapArgs:
|
|
|
99138
99138
|
- `FULL_REFRESH` : A complete refresh of a dataset.
|
|
99139
99139
|
- `INCREMENTAL_REFRESH` : A partial refresh of some rows of a dataset, based on the time window specified.
|
|
99140
99140
|
|
|
99141
|
-
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *
|
|
99141
|
+
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *Quick Suite User Guide* .
|
|
99142
99142
|
:param pulumi.Input['RefreshScheduleMapScheduleFrequencyPropertiesArgs'] schedule_frequency: <p>Information about the schedule frequency.</p>
|
|
99143
99143
|
:param pulumi.Input[_builtins.str] schedule_id: <p>An unique identifier for the refresh schedule.</p>
|
|
99144
99144
|
:param pulumi.Input[_builtins.str] start_after_date_time: <p>The date time after which refresh is to be scheduled</p>
|
|
@@ -99161,7 +99161,7 @@ class RefreshScheduleMapArgs:
|
|
|
99161
99161
|
- `FULL_REFRESH` : A complete refresh of a dataset.
|
|
99162
99162
|
- `INCREMENTAL_REFRESH` : A partial refresh of some rows of a dataset, based on the time window specified.
|
|
99163
99163
|
|
|
99164
|
-
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *
|
|
99164
|
+
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *Quick Suite User Guide* .
|
|
99165
99165
|
"""
|
|
99166
99166
|
return pulumi.get(self, "refresh_type")
|
|
99167
99167
|
|
|
@@ -80162,7 +80162,7 @@ class RefreshScheduleMap(dict):
|
|
|
80162
80162
|
- `FULL_REFRESH` : A complete refresh of a dataset.
|
|
80163
80163
|
- `INCREMENTAL_REFRESH` : A partial refresh of some rows of a dataset, based on the time window specified.
|
|
80164
80164
|
|
|
80165
|
-
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *
|
|
80165
|
+
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *Quick Suite User Guide* .
|
|
80166
80166
|
:param 'RefreshScheduleMapScheduleFrequencyProperties' schedule_frequency: <p>Information about the schedule frequency.</p>
|
|
80167
80167
|
:param _builtins.str schedule_id: <p>An unique identifier for the refresh schedule.</p>
|
|
80168
80168
|
:param _builtins.str start_after_date_time: <p>The date time after which refresh is to be scheduled</p>
|
|
@@ -80185,7 +80185,7 @@ class RefreshScheduleMap(dict):
|
|
|
80185
80185
|
- `FULL_REFRESH` : A complete refresh of a dataset.
|
|
80186
80186
|
- `INCREMENTAL_REFRESH` : A partial refresh of some rows of a dataset, based on the time window specified.
|
|
80187
80187
|
|
|
80188
|
-
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *
|
|
80188
|
+
For more information on full and incremental refreshes, see [Refreshing SPICE data](https://docs.aws.amazon.com/quicksight/latest/user/refreshing-imported-data.html) in the *Quick Suite User Guide* .
|
|
80189
80189
|
"""
|
|
80190
80190
|
return pulumi.get(self, "refresh_type")
|
|
80191
80191
|
|
|
@@ -308,17 +308,13 @@ class DbClusterArgs:
|
|
|
308
308
|
Constraints: Minimum 30-minute window.
|
|
309
309
|
Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
310
310
|
:param pulumi.Input[_builtins.bool] publicly_accessible: Specifies whether the DB cluster is publicly accessible.
|
|
311
|
-
When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
|
|
312
|
-
When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
|
|
313
311
|
Valid for Cluster Type: Multi-AZ DB clusters only
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
If ``
|
|
320
|
-
+ If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.
|
|
321
|
-
+ If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.
|
|
312
|
+
When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.
|
|
313
|
+
When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
|
|
314
|
+
The default behavior when ``PubliclyAccessible`` is not specified depends on whether a ``DBSubnetGroup`` is specified.
|
|
315
|
+
If ``DBSubnetGroup`` isn't specified, ``PubliclyAccessible`` defaults to ``true``.
|
|
316
|
+
If ``DBSubnetGroup`` is specified, ``PubliclyAccessible`` defaults to ``false`` unless the value of ``DBSubnetGroup`` is ``default``, in which case ``PubliclyAccessible`` defaults to ``true``.
|
|
317
|
+
If ``PubliclyAccessible`` is true and the VPC that the ``DBSubnetGroup`` is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.
|
|
322
318
|
:param pulumi.Input[_builtins.str] replication_source_identifier: The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a read replica.
|
|
323
319
|
Valid for: Aurora DB clusters only
|
|
324
320
|
:param pulumi.Input[_builtins.str] restore_to_time: The date and time to restore the DB cluster to.
|
|
@@ -1255,17 +1251,13 @@ class DbClusterArgs:
|
|
|
1255
1251
|
def publicly_accessible(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1256
1252
|
"""
|
|
1257
1253
|
Specifies whether the DB cluster is publicly accessible.
|
|
1258
|
-
When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
|
|
1259
|
-
When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
|
|
1260
1254
|
Valid for Cluster Type: Multi-AZ DB clusters only
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
If ``
|
|
1267
|
-
+ If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.
|
|
1268
|
-
+ If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.
|
|
1255
|
+
When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.
|
|
1256
|
+
When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
|
|
1257
|
+
The default behavior when ``PubliclyAccessible`` is not specified depends on whether a ``DBSubnetGroup`` is specified.
|
|
1258
|
+
If ``DBSubnetGroup`` isn't specified, ``PubliclyAccessible`` defaults to ``true``.
|
|
1259
|
+
If ``DBSubnetGroup`` is specified, ``PubliclyAccessible`` defaults to ``false`` unless the value of ``DBSubnetGroup`` is ``default``, in which case ``PubliclyAccessible`` defaults to ``true``.
|
|
1260
|
+
If ``PubliclyAccessible`` is true and the VPC that the ``DBSubnetGroup`` is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.
|
|
1269
1261
|
"""
|
|
1270
1262
|
return pulumi.get(self, "publicly_accessible")
|
|
1271
1263
|
|
|
@@ -1819,17 +1811,13 @@ class DbCluster(pulumi.CustomResource):
|
|
|
1819
1811
|
Constraints: Minimum 30-minute window.
|
|
1820
1812
|
Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
1821
1813
|
:param pulumi.Input[_builtins.bool] publicly_accessible: Specifies whether the DB cluster is publicly accessible.
|
|
1822
|
-
When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
|
|
1823
|
-
When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
|
|
1824
1814
|
Valid for Cluster Type: Multi-AZ DB clusters only
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
If ``
|
|
1831
|
-
+ If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.
|
|
1832
|
-
+ If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.
|
|
1815
|
+
When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.
|
|
1816
|
+
When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
|
|
1817
|
+
The default behavior when ``PubliclyAccessible`` is not specified depends on whether a ``DBSubnetGroup`` is specified.
|
|
1818
|
+
If ``DBSubnetGroup`` isn't specified, ``PubliclyAccessible`` defaults to ``true``.
|
|
1819
|
+
If ``DBSubnetGroup`` is specified, ``PubliclyAccessible`` defaults to ``false`` unless the value of ``DBSubnetGroup`` is ``default``, in which case ``PubliclyAccessible`` defaults to ``true``.
|
|
1820
|
+
If ``PubliclyAccessible`` is true and the VPC that the ``DBSubnetGroup`` is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.
|
|
1833
1821
|
:param pulumi.Input[_builtins.str] replication_source_identifier: The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a read replica.
|
|
1834
1822
|
Valid for: Aurora DB clusters only
|
|
1835
1823
|
:param pulumi.Input[_builtins.str] restore_to_time: The date and time to restore the DB cluster to.
|
|
@@ -2748,17 +2736,13 @@ class DbCluster(pulumi.CustomResource):
|
|
|
2748
2736
|
def publicly_accessible(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
2749
2737
|
"""
|
|
2750
2738
|
Specifies whether the DB cluster is publicly accessible.
|
|
2751
|
-
When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
|
|
2752
|
-
When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
|
|
2753
2739
|
Valid for Cluster Type: Multi-AZ DB clusters only
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
If ``
|
|
2760
|
-
+ If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.
|
|
2761
|
-
+ If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.
|
|
2740
|
+
When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.
|
|
2741
|
+
When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
|
|
2742
|
+
The default behavior when ``PubliclyAccessible`` is not specified depends on whether a ``DBSubnetGroup`` is specified.
|
|
2743
|
+
If ``DBSubnetGroup`` isn't specified, ``PubliclyAccessible`` defaults to ``true``.
|
|
2744
|
+
If ``DBSubnetGroup`` is specified, ``PubliclyAccessible`` defaults to ``false`` unless the value of ``DBSubnetGroup`` is ``default``, in which case ``PubliclyAccessible`` defaults to ``true``.
|
|
2745
|
+
If ``PubliclyAccessible`` is true and the VPC that the ``DBSubnetGroup`` is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.
|
|
2762
2746
|
"""
|
|
2763
2747
|
return pulumi.get(self, "publicly_accessible")
|
|
2764
2748
|
|
|
@@ -187,7 +187,9 @@ if not MYPY:
|
|
|
187
187
|
"""
|
|
188
188
|
The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
|
|
189
189
|
|
|
190
|
-
|
|
190
|
+
`FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
191
|
+
|
|
192
|
+
Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
|
|
191
193
|
"""
|
|
192
194
|
fully_qualified_domain_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
193
195
|
"""
|
|
@@ -263,6 +265,8 @@ if not MYPY:
|
|
|
263
265
|
"""
|
|
264
266
|
Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
|
|
265
267
|
|
|
268
|
+
`MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
269
|
+
|
|
266
270
|
> You can't change the value of `MeasureLatency` after you create a health check.
|
|
267
271
|
"""
|
|
268
272
|
port: NotRequired[pulumi.Input[_builtins.int]]
|
|
@@ -283,6 +287,8 @@ if not MYPY:
|
|
|
283
287
|
"""
|
|
284
288
|
The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
|
|
285
289
|
|
|
290
|
+
`RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
291
|
+
|
|
286
292
|
> You can't change the value of `RequestInterval` after you create a health check.
|
|
287
293
|
|
|
288
294
|
If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
|
|
@@ -360,7 +366,9 @@ class HealthCheckConfigPropertiesArgs:
|
|
|
360
366
|
The SSL/TLS certificate on your endpoint includes a domain name in the `Common Name` field and possibly several more in the `Subject Alternative Names` field. One of the domain names in the certificate should match the value that you specify for `FullyQualifiedDomainName` . If the endpoint responds to the `client_hello` message with a certificate that does not include the domain name that you specified in `FullyQualifiedDomainName` , a health checker will retry the handshake. In the second attempt, the health checker will omit `FullyQualifiedDomainName` from the `client_hello` message.
|
|
361
367
|
:param pulumi.Input[_builtins.int] failure_threshold: The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
|
|
362
368
|
|
|
363
|
-
|
|
369
|
+
`FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
370
|
+
|
|
371
|
+
Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
|
|
364
372
|
:param pulumi.Input[_builtins.str] fully_qualified_domain_name: Amazon Route 53 behavior depends on whether you specify a value for `IPAddress` .
|
|
365
373
|
|
|
366
374
|
*If you specify a value for* `IPAddress` :
|
|
@@ -418,6 +426,8 @@ class HealthCheckConfigPropertiesArgs:
|
|
|
418
426
|
When the value of `Type` is `CALCULATED` or `CLOUDWATCH_METRIC` , omit `IPAddress` .
|
|
419
427
|
:param pulumi.Input[_builtins.bool] measure_latency: Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
|
|
420
428
|
|
|
429
|
+
`MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
430
|
+
|
|
421
431
|
> You can't change the value of `MeasureLatency` after you create a health check.
|
|
422
432
|
:param pulumi.Input[_builtins.int] port: The port on the endpoint that you want Amazon Route 53 to perform health checks on.
|
|
423
433
|
|
|
@@ -429,6 +439,8 @@ class HealthCheckConfigPropertiesArgs:
|
|
|
429
439
|
If you update a health check to remove a region that has been performing health checks, Route 53 will briefly continue to perform checks from that region to ensure that some health checkers are always checking the endpoint (for example, if you replace three regions with four different regions).
|
|
430
440
|
:param pulumi.Input[_builtins.int] request_interval: The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
|
|
431
441
|
|
|
442
|
+
`RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
443
|
+
|
|
432
444
|
> You can't change the value of `RequestInterval` after you create a health check.
|
|
433
445
|
|
|
434
446
|
If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
|
|
@@ -554,7 +566,9 @@ class HealthCheckConfigPropertiesArgs:
|
|
|
554
566
|
"""
|
|
555
567
|
The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
|
|
556
568
|
|
|
557
|
-
|
|
569
|
+
`FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
570
|
+
|
|
571
|
+
Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
|
|
558
572
|
"""
|
|
559
573
|
return pulumi.get(self, "failure_threshold")
|
|
560
574
|
|
|
@@ -678,6 +692,8 @@ class HealthCheckConfigPropertiesArgs:
|
|
|
678
692
|
"""
|
|
679
693
|
Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
|
|
680
694
|
|
|
695
|
+
`MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
696
|
+
|
|
681
697
|
> You can't change the value of `MeasureLatency` after you create a health check.
|
|
682
698
|
"""
|
|
683
699
|
return pulumi.get(self, "measure_latency")
|
|
@@ -722,6 +738,8 @@ class HealthCheckConfigPropertiesArgs:
|
|
|
722
738
|
"""
|
|
723
739
|
The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
|
|
724
740
|
|
|
741
|
+
`RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
|
|
742
|
+
|
|
725
743
|
> You can't change the value of `RequestInterval` after you create a health check.
|
|
726
744
|
|
|
727
745
|
If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
|