pulumi-aws 7.11.1__py3-none-any.whl → 7.12.0__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/__init__.py +57 -0
- pulumi_aws/acm/certificate.py +20 -20
- pulumi_aws/acmpca/certificate.py +8 -8
- pulumi_aws/apigateway/account.py +0 -4
- pulumi_aws/appflow/_inputs.py +33 -0
- pulumi_aws/appflow/outputs.py +22 -0
- pulumi_aws/appsync/graph_ql_api.py +84 -0
- pulumi_aws/bedrock/_inputs.py +97 -21
- pulumi_aws/bedrock/agent_agent_alias.py +94 -0
- pulumi_aws/bedrock/agentcore_agent_runtime.py +4 -4
- pulumi_aws/bedrock/agentcore_browser.py +42 -0
- pulumi_aws/bedrock/agentcore_gateway_target.py +217 -7
- pulumi_aws/bedrock/agentcore_memory.py +37 -9
- pulumi_aws/bedrock/agentcore_oauth2_credential_provider.py +38 -0
- pulumi_aws/bedrock/outputs.py +64 -17
- pulumi_aws/cloudfront/_inputs.py +15 -14
- pulumi_aws/cloudfront/distribution.py +28 -0
- pulumi_aws/cloudfront/outputs.py +10 -9
- pulumi_aws/cloudhsmv2/cluster.py +64 -0
- pulumi_aws/cloudwatch/_inputs.py +9 -8
- pulumi_aws/cloudwatch/contributor_managed_insight_rule.py +20 -0
- pulumi_aws/cloudwatch/log_delivery_destination.py +53 -12
- pulumi_aws/cloudwatch/outputs.py +6 -5
- pulumi_aws/codebuild/webhook.py +16 -16
- pulumi_aws/codepipeline/webhook.py +16 -16
- pulumi_aws/connect/_inputs.py +50 -4
- pulumi_aws/connect/outputs.py +95 -4
- pulumi_aws/connect/routing_profile.py +42 -18
- pulumi_aws/datasync/location_fsx_ontap_file_system.py +34 -0
- pulumi_aws/datazone/project.py +24 -0
- pulumi_aws/detective/organization_configuration.py +20 -0
- pulumi_aws/dms/_inputs.py +3 -3
- pulumi_aws/dms/outputs.py +2 -2
- pulumi_aws/ec2/__init__.py +1 -0
- pulumi_aws/ec2/_inputs.py +182 -0
- pulumi_aws/ec2/allowed_images_settings.py +338 -0
- pulumi_aws/ec2/get_coip_pools.py +24 -0
- pulumi_aws/ec2/image_block_public_access.py +48 -1
- pulumi_aws/ec2/outputs.py +167 -0
- pulumi_aws/ec2/security_group.py +6 -6
- pulumi_aws/ec2/serial_console_access.py +50 -3
- pulumi_aws/ec2/vpc_endpoint.py +92 -0
- pulumi_aws/ec2clientvpn/authorization_rule.py +7 -7
- pulumi_aws/ec2clientvpn/route.py +7 -7
- pulumi_aws/ec2transitgateway/instance_connect_endpoint.py +47 -0
- pulumi_aws/ecrpublic/get_images.py +24 -0
- pulumi_aws/ecs/_inputs.py +172 -33
- pulumi_aws/ecs/get_service.py +318 -7
- pulumi_aws/ecs/outputs.py +957 -86
- pulumi_aws/ecs/service.py +76 -0
- pulumi_aws/eks/_inputs.py +195 -5
- pulumi_aws/eks/outputs.py +164 -4
- pulumi_aws/elasticache/_inputs.py +154 -0
- pulumi_aws/elasticache/get_replication_group.py +23 -9
- pulumi_aws/elasticache/outputs.py +204 -0
- pulumi_aws/elasticache/replication_group.py +115 -0
- pulumi_aws/elasticache/reserved_cache_node.py +28 -0
- pulumi_aws/finspace/kx_cluster.py +76 -0
- pulumi_aws/fis/__init__.py +1 -0
- pulumi_aws/fis/target_account_configuration.py +401 -0
- pulumi_aws/glue/job.py +7 -7
- pulumi_aws/guardduty/malware_protection_plan.py +50 -0
- pulumi_aws/guardduty/member_detector_feature.py +42 -0
- pulumi_aws/invoicing/__init__.py +11 -0
- pulumi_aws/invoicing/_inputs.py +128 -0
- pulumi_aws/invoicing/invoice_unit.py +620 -0
- pulumi_aws/invoicing/outputs.py +99 -0
- pulumi_aws/iot/ca_certificate.py +32 -32
- pulumi_aws/iot/get_registration_code.py +8 -8
- pulumi_aws/ivschat/logging_configuration.py +28 -0
- pulumi_aws/kinesis/get_stream.py +15 -1
- pulumi_aws/kinesis/stream.py +47 -0
- pulumi_aws/kms/key.py +7 -7
- pulumi_aws/licensemanager/license_grant.py +36 -0
- pulumi_aws/m2/environment.py +150 -0
- pulumi_aws/networkfirewall/tls_inspection_configuration.py +84 -0
- pulumi_aws/networkflowmonitor/__init__.py +12 -0
- pulumi_aws/networkflowmonitor/_inputs.py +412 -0
- pulumi_aws/networkflowmonitor/monitor.py +568 -0
- pulumi_aws/networkflowmonitor/outputs.py +302 -0
- pulumi_aws/networkflowmonitor/scope.py +443 -0
- pulumi_aws/observabilityadmin/__init__.py +11 -0
- pulumi_aws/observabilityadmin/_inputs.py +506 -0
- pulumi_aws/observabilityadmin/centralization_rule_for_organization.py +637 -0
- pulumi_aws/observabilityadmin/outputs.py +415 -0
- pulumi_aws/opensearch/_inputs.py +92 -133
- pulumi_aws/opensearch/authorize_vpc_endpoint_access.py +4 -4
- pulumi_aws/opensearch/domain.py +60 -0
- pulumi_aws/opensearch/get_domain.py +16 -9
- pulumi_aws/opensearch/outputs.py +131 -2
- pulumi_aws/organizations/get_policies.py +2 -2
- pulumi_aws/organizations/get_policies_for_target.py +2 -2
- pulumi_aws/organizations/get_policy.py +1 -1
- pulumi_aws/organizations/organization.py +7 -7
- pulumi_aws/organizations/policy.py +35 -7
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/quicksight/analysis.py +108 -0
- pulumi_aws/quicksight/dashboard.py +110 -0
- pulumi_aws/quicksight/template.py +126 -0
- pulumi_aws/redshift/cluster_snapshot.py +28 -0
- pulumi_aws/redshift/get_cluster.py +52 -0
- pulumi_aws/redshift/snapshot_copy_grant.py +22 -0
- pulumi_aws/route53/profiles_association.py +30 -0
- pulumi_aws/route53/profiles_resource_association.py +34 -0
- pulumi_aws/s3control/multi_region_access_point_policy.py +76 -0
- pulumi_aws/s3tables/table.py +76 -1
- pulumi_aws/s3tables/table_bucket.py +78 -3
- pulumi_aws/sagemaker/_inputs.py +225 -232
- pulumi_aws/sagemaker/endpoint_configuration.py +111 -64
- pulumi_aws/sagemaker/outputs.py +154 -158
- pulumi_aws/ssmincidents/get_response_plan.py +14 -0
- pulumi_aws/ssoadmin/account_assignment.py +4 -4
- pulumi_aws/transfer/profile.py +20 -0
- pulumi_aws/transfer/server.py +7 -0
- pulumi_aws/transfer/ssh_key.py +6 -6
- pulumi_aws/wafv2/rule_group.py +440 -0
- pulumi_aws/workspacesweb/session_logger_association.py +80 -0
- pulumi_aws/workspacesweb/trust_store_association.py +24 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/RECORD +122 -107
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/top_level.txt +0 -0
|
@@ -24,6 +24,7 @@ class EndpointConfigurationArgs:
|
|
|
24
24
|
production_variants: pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationProductionVariantArgs']]],
|
|
25
25
|
async_inference_config: Optional[pulumi.Input['EndpointConfigurationAsyncInferenceConfigArgs']] = None,
|
|
26
26
|
data_capture_config: Optional[pulumi.Input['EndpointConfigurationDataCaptureConfigArgs']] = None,
|
|
27
|
+
execution_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
28
|
kms_key_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
29
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
30
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -32,21 +33,24 @@ class EndpointConfigurationArgs:
|
|
|
32
33
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
33
34
|
"""
|
|
34
35
|
The set of arguments for constructing a EndpointConfiguration resource.
|
|
35
|
-
:param pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationProductionVariantArgs']]] production_variants:
|
|
36
|
-
:param pulumi.Input['EndpointConfigurationAsyncInferenceConfigArgs'] async_inference_config:
|
|
37
|
-
:param pulumi.Input['EndpointConfigurationDataCaptureConfigArgs'] data_capture_config:
|
|
38
|
-
:param pulumi.Input[_builtins.str]
|
|
39
|
-
:param pulumi.Input[_builtins.str]
|
|
40
|
-
:param pulumi.Input[_builtins.str]
|
|
36
|
+
:param pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationProductionVariantArgs']]] production_variants: List each model that you want to host at this endpoint. See below.
|
|
37
|
+
:param pulumi.Input['EndpointConfigurationAsyncInferenceConfigArgs'] async_inference_config: How an endpoint performs asynchronous inference.
|
|
38
|
+
:param pulumi.Input['EndpointConfigurationDataCaptureConfigArgs'] data_capture_config: Parameters to capture input/output of SageMaker AI models endpoints. Fields are documented below.
|
|
39
|
+
:param pulumi.Input[_builtins.str] execution_role_arn: ARN of an IAM role that SageMaker AI can assume to perform actions on your behalf. Required when `model_name` is not specified in `production_variants` to support Inference Components.
|
|
40
|
+
:param pulumi.Input[_builtins.str] kms_key_arn: ARN of a AWS KMS key that SageMaker AI uses to encrypt data on the storage volume attached to the ML compute instance that hosts the endpoint.
|
|
41
|
+
:param pulumi.Input[_builtins.str] name: Name of the endpoint configuration. If omitted, the provider will assign a random, unique name. Conflicts with `name_prefix`.
|
|
42
|
+
:param pulumi.Input[_builtins.str] name_prefix: Unique endpoint configuration name beginning with the specified prefix. Conflicts with `name`.
|
|
41
43
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
42
|
-
:param pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationShadowProductionVariantArgs']]] shadow_production_variants:
|
|
43
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags:
|
|
44
|
+
:param pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationShadowProductionVariantArgs']]] shadow_production_variants: Models that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified on `oroduction_variants`. If you use this field, you can only specify one variant for `production_variants` and one variant for `shadow_production_variants`. See below (same arguments as `production_variants`).
|
|
45
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
44
46
|
"""
|
|
45
47
|
pulumi.set(__self__, "production_variants", production_variants)
|
|
46
48
|
if async_inference_config is not None:
|
|
47
49
|
pulumi.set(__self__, "async_inference_config", async_inference_config)
|
|
48
50
|
if data_capture_config is not None:
|
|
49
51
|
pulumi.set(__self__, "data_capture_config", data_capture_config)
|
|
52
|
+
if execution_role_arn is not None:
|
|
53
|
+
pulumi.set(__self__, "execution_role_arn", execution_role_arn)
|
|
50
54
|
if kms_key_arn is not None:
|
|
51
55
|
pulumi.set(__self__, "kms_key_arn", kms_key_arn)
|
|
52
56
|
if name is not None:
|
|
@@ -64,7 +68,7 @@ class EndpointConfigurationArgs:
|
|
|
64
68
|
@pulumi.getter(name="productionVariants")
|
|
65
69
|
def production_variants(self) -> pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationProductionVariantArgs']]]:
|
|
66
70
|
"""
|
|
67
|
-
|
|
71
|
+
List each model that you want to host at this endpoint. See below.
|
|
68
72
|
"""
|
|
69
73
|
return pulumi.get(self, "production_variants")
|
|
70
74
|
|
|
@@ -76,7 +80,7 @@ class EndpointConfigurationArgs:
|
|
|
76
80
|
@pulumi.getter(name="asyncInferenceConfig")
|
|
77
81
|
def async_inference_config(self) -> Optional[pulumi.Input['EndpointConfigurationAsyncInferenceConfigArgs']]:
|
|
78
82
|
"""
|
|
79
|
-
|
|
83
|
+
How an endpoint performs asynchronous inference.
|
|
80
84
|
"""
|
|
81
85
|
return pulumi.get(self, "async_inference_config")
|
|
82
86
|
|
|
@@ -88,7 +92,7 @@ class EndpointConfigurationArgs:
|
|
|
88
92
|
@pulumi.getter(name="dataCaptureConfig")
|
|
89
93
|
def data_capture_config(self) -> Optional[pulumi.Input['EndpointConfigurationDataCaptureConfigArgs']]:
|
|
90
94
|
"""
|
|
91
|
-
|
|
95
|
+
Parameters to capture input/output of SageMaker AI models endpoints. Fields are documented below.
|
|
92
96
|
"""
|
|
93
97
|
return pulumi.get(self, "data_capture_config")
|
|
94
98
|
|
|
@@ -96,11 +100,23 @@ class EndpointConfigurationArgs:
|
|
|
96
100
|
def data_capture_config(self, value: Optional[pulumi.Input['EndpointConfigurationDataCaptureConfigArgs']]):
|
|
97
101
|
pulumi.set(self, "data_capture_config", value)
|
|
98
102
|
|
|
103
|
+
@_builtins.property
|
|
104
|
+
@pulumi.getter(name="executionRoleArn")
|
|
105
|
+
def execution_role_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
106
|
+
"""
|
|
107
|
+
ARN of an IAM role that SageMaker AI can assume to perform actions on your behalf. Required when `model_name` is not specified in `production_variants` to support Inference Components.
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "execution_role_arn")
|
|
110
|
+
|
|
111
|
+
@execution_role_arn.setter
|
|
112
|
+
def execution_role_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
113
|
+
pulumi.set(self, "execution_role_arn", value)
|
|
114
|
+
|
|
99
115
|
@_builtins.property
|
|
100
116
|
@pulumi.getter(name="kmsKeyArn")
|
|
101
117
|
def kms_key_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
102
118
|
"""
|
|
103
|
-
|
|
119
|
+
ARN of a AWS KMS key that SageMaker AI uses to encrypt data on the storage volume attached to the ML compute instance that hosts the endpoint.
|
|
104
120
|
"""
|
|
105
121
|
return pulumi.get(self, "kms_key_arn")
|
|
106
122
|
|
|
@@ -112,7 +128,7 @@ class EndpointConfigurationArgs:
|
|
|
112
128
|
@pulumi.getter
|
|
113
129
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
114
130
|
"""
|
|
115
|
-
|
|
131
|
+
Name of the endpoint configuration. If omitted, the provider will assign a random, unique name. Conflicts with `name_prefix`.
|
|
116
132
|
"""
|
|
117
133
|
return pulumi.get(self, "name")
|
|
118
134
|
|
|
@@ -124,7 +140,7 @@ class EndpointConfigurationArgs:
|
|
|
124
140
|
@pulumi.getter(name="namePrefix")
|
|
125
141
|
def name_prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
126
142
|
"""
|
|
127
|
-
|
|
143
|
+
Unique endpoint configuration name beginning with the specified prefix. Conflicts with `name`.
|
|
128
144
|
"""
|
|
129
145
|
return pulumi.get(self, "name_prefix")
|
|
130
146
|
|
|
@@ -148,7 +164,7 @@ class EndpointConfigurationArgs:
|
|
|
148
164
|
@pulumi.getter(name="shadowProductionVariants")
|
|
149
165
|
def shadow_production_variants(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationShadowProductionVariantArgs']]]]:
|
|
150
166
|
"""
|
|
151
|
-
|
|
167
|
+
Models that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified on `oroduction_variants`. If you use this field, you can only specify one variant for `production_variants` and one variant for `shadow_production_variants`. See below (same arguments as `production_variants`).
|
|
152
168
|
"""
|
|
153
169
|
return pulumi.get(self, "shadow_production_variants")
|
|
154
170
|
|
|
@@ -160,7 +176,7 @@ class EndpointConfigurationArgs:
|
|
|
160
176
|
@pulumi.getter
|
|
161
177
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
162
178
|
"""
|
|
163
|
-
|
|
179
|
+
Mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
164
180
|
"""
|
|
165
181
|
return pulumi.get(self, "tags")
|
|
166
182
|
|
|
@@ -175,6 +191,7 @@ class _EndpointConfigurationState:
|
|
|
175
191
|
arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
176
192
|
async_inference_config: Optional[pulumi.Input['EndpointConfigurationAsyncInferenceConfigArgs']] = None,
|
|
177
193
|
data_capture_config: Optional[pulumi.Input['EndpointConfigurationDataCaptureConfigArgs']] = None,
|
|
194
|
+
execution_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
178
195
|
kms_key_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
179
196
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
180
197
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -185,17 +202,18 @@ class _EndpointConfigurationState:
|
|
|
185
202
|
tags_all: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
186
203
|
"""
|
|
187
204
|
Input properties used for looking up and filtering EndpointConfiguration resources.
|
|
188
|
-
:param pulumi.Input[_builtins.str] arn:
|
|
189
|
-
:param pulumi.Input['EndpointConfigurationAsyncInferenceConfigArgs'] async_inference_config:
|
|
190
|
-
:param pulumi.Input['EndpointConfigurationDataCaptureConfigArgs'] data_capture_config:
|
|
191
|
-
:param pulumi.Input[_builtins.str]
|
|
192
|
-
:param pulumi.Input[_builtins.str]
|
|
193
|
-
:param pulumi.Input[_builtins.str]
|
|
194
|
-
:param pulumi.Input[
|
|
205
|
+
:param pulumi.Input[_builtins.str] arn: ARN assigned by AWS to this endpoint configuration.
|
|
206
|
+
:param pulumi.Input['EndpointConfigurationAsyncInferenceConfigArgs'] async_inference_config: How an endpoint performs asynchronous inference.
|
|
207
|
+
:param pulumi.Input['EndpointConfigurationDataCaptureConfigArgs'] data_capture_config: Parameters to capture input/output of SageMaker AI models endpoints. Fields are documented below.
|
|
208
|
+
:param pulumi.Input[_builtins.str] execution_role_arn: ARN of an IAM role that SageMaker AI can assume to perform actions on your behalf. Required when `model_name` is not specified in `production_variants` to support Inference Components.
|
|
209
|
+
:param pulumi.Input[_builtins.str] kms_key_arn: ARN of a AWS KMS key that SageMaker AI uses to encrypt data on the storage volume attached to the ML compute instance that hosts the endpoint.
|
|
210
|
+
:param pulumi.Input[_builtins.str] name: Name of the endpoint configuration. If omitted, the provider will assign a random, unique name. Conflicts with `name_prefix`.
|
|
211
|
+
:param pulumi.Input[_builtins.str] name_prefix: Unique endpoint configuration name beginning with the specified prefix. Conflicts with `name`.
|
|
212
|
+
:param pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationProductionVariantArgs']]] production_variants: List each model that you want to host at this endpoint. See below.
|
|
195
213
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
196
|
-
:param pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationShadowProductionVariantArgs']]] shadow_production_variants:
|
|
197
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags:
|
|
198
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags_all:
|
|
214
|
+
:param pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationShadowProductionVariantArgs']]] shadow_production_variants: Models that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified on `oroduction_variants`. If you use this field, you can only specify one variant for `production_variants` and one variant for `shadow_production_variants`. See below (same arguments as `production_variants`).
|
|
215
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
216
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags_all: Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
|
|
199
217
|
"""
|
|
200
218
|
if arn is not None:
|
|
201
219
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -203,6 +221,8 @@ class _EndpointConfigurationState:
|
|
|
203
221
|
pulumi.set(__self__, "async_inference_config", async_inference_config)
|
|
204
222
|
if data_capture_config is not None:
|
|
205
223
|
pulumi.set(__self__, "data_capture_config", data_capture_config)
|
|
224
|
+
if execution_role_arn is not None:
|
|
225
|
+
pulumi.set(__self__, "execution_role_arn", execution_role_arn)
|
|
206
226
|
if kms_key_arn is not None:
|
|
207
227
|
pulumi.set(__self__, "kms_key_arn", kms_key_arn)
|
|
208
228
|
if name is not None:
|
|
@@ -224,7 +244,7 @@ class _EndpointConfigurationState:
|
|
|
224
244
|
@pulumi.getter
|
|
225
245
|
def arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
226
246
|
"""
|
|
227
|
-
|
|
247
|
+
ARN assigned by AWS to this endpoint configuration.
|
|
228
248
|
"""
|
|
229
249
|
return pulumi.get(self, "arn")
|
|
230
250
|
|
|
@@ -236,7 +256,7 @@ class _EndpointConfigurationState:
|
|
|
236
256
|
@pulumi.getter(name="asyncInferenceConfig")
|
|
237
257
|
def async_inference_config(self) -> Optional[pulumi.Input['EndpointConfigurationAsyncInferenceConfigArgs']]:
|
|
238
258
|
"""
|
|
239
|
-
|
|
259
|
+
How an endpoint performs asynchronous inference.
|
|
240
260
|
"""
|
|
241
261
|
return pulumi.get(self, "async_inference_config")
|
|
242
262
|
|
|
@@ -248,7 +268,7 @@ class _EndpointConfigurationState:
|
|
|
248
268
|
@pulumi.getter(name="dataCaptureConfig")
|
|
249
269
|
def data_capture_config(self) -> Optional[pulumi.Input['EndpointConfigurationDataCaptureConfigArgs']]:
|
|
250
270
|
"""
|
|
251
|
-
|
|
271
|
+
Parameters to capture input/output of SageMaker AI models endpoints. Fields are documented below.
|
|
252
272
|
"""
|
|
253
273
|
return pulumi.get(self, "data_capture_config")
|
|
254
274
|
|
|
@@ -256,11 +276,23 @@ class _EndpointConfigurationState:
|
|
|
256
276
|
def data_capture_config(self, value: Optional[pulumi.Input['EndpointConfigurationDataCaptureConfigArgs']]):
|
|
257
277
|
pulumi.set(self, "data_capture_config", value)
|
|
258
278
|
|
|
279
|
+
@_builtins.property
|
|
280
|
+
@pulumi.getter(name="executionRoleArn")
|
|
281
|
+
def execution_role_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
282
|
+
"""
|
|
283
|
+
ARN of an IAM role that SageMaker AI can assume to perform actions on your behalf. Required when `model_name` is not specified in `production_variants` to support Inference Components.
|
|
284
|
+
"""
|
|
285
|
+
return pulumi.get(self, "execution_role_arn")
|
|
286
|
+
|
|
287
|
+
@execution_role_arn.setter
|
|
288
|
+
def execution_role_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
289
|
+
pulumi.set(self, "execution_role_arn", value)
|
|
290
|
+
|
|
259
291
|
@_builtins.property
|
|
260
292
|
@pulumi.getter(name="kmsKeyArn")
|
|
261
293
|
def kms_key_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
262
294
|
"""
|
|
263
|
-
|
|
295
|
+
ARN of a AWS KMS key that SageMaker AI uses to encrypt data on the storage volume attached to the ML compute instance that hosts the endpoint.
|
|
264
296
|
"""
|
|
265
297
|
return pulumi.get(self, "kms_key_arn")
|
|
266
298
|
|
|
@@ -272,7 +304,7 @@ class _EndpointConfigurationState:
|
|
|
272
304
|
@pulumi.getter
|
|
273
305
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
274
306
|
"""
|
|
275
|
-
|
|
307
|
+
Name of the endpoint configuration. If omitted, the provider will assign a random, unique name. Conflicts with `name_prefix`.
|
|
276
308
|
"""
|
|
277
309
|
return pulumi.get(self, "name")
|
|
278
310
|
|
|
@@ -284,7 +316,7 @@ class _EndpointConfigurationState:
|
|
|
284
316
|
@pulumi.getter(name="namePrefix")
|
|
285
317
|
def name_prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
286
318
|
"""
|
|
287
|
-
|
|
319
|
+
Unique endpoint configuration name beginning with the specified prefix. Conflicts with `name`.
|
|
288
320
|
"""
|
|
289
321
|
return pulumi.get(self, "name_prefix")
|
|
290
322
|
|
|
@@ -296,7 +328,7 @@ class _EndpointConfigurationState:
|
|
|
296
328
|
@pulumi.getter(name="productionVariants")
|
|
297
329
|
def production_variants(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationProductionVariantArgs']]]]:
|
|
298
330
|
"""
|
|
299
|
-
|
|
331
|
+
List each model that you want to host at this endpoint. See below.
|
|
300
332
|
"""
|
|
301
333
|
return pulumi.get(self, "production_variants")
|
|
302
334
|
|
|
@@ -320,7 +352,7 @@ class _EndpointConfigurationState:
|
|
|
320
352
|
@pulumi.getter(name="shadowProductionVariants")
|
|
321
353
|
def shadow_production_variants(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EndpointConfigurationShadowProductionVariantArgs']]]]:
|
|
322
354
|
"""
|
|
323
|
-
|
|
355
|
+
Models that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified on `oroduction_variants`. If you use this field, you can only specify one variant for `production_variants` and one variant for `shadow_production_variants`. See below (same arguments as `production_variants`).
|
|
324
356
|
"""
|
|
325
357
|
return pulumi.get(self, "shadow_production_variants")
|
|
326
358
|
|
|
@@ -332,7 +364,7 @@ class _EndpointConfigurationState:
|
|
|
332
364
|
@pulumi.getter
|
|
333
365
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
334
366
|
"""
|
|
335
|
-
|
|
367
|
+
Mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
336
368
|
"""
|
|
337
369
|
return pulumi.get(self, "tags")
|
|
338
370
|
|
|
@@ -344,7 +376,7 @@ class _EndpointConfigurationState:
|
|
|
344
376
|
@pulumi.getter(name="tagsAll")
|
|
345
377
|
def tags_all(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
346
378
|
"""
|
|
347
|
-
|
|
379
|
+
Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
|
|
348
380
|
"""
|
|
349
381
|
return pulumi.get(self, "tags_all")
|
|
350
382
|
|
|
@@ -361,6 +393,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
361
393
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
362
394
|
async_inference_config: Optional[pulumi.Input[Union['EndpointConfigurationAsyncInferenceConfigArgs', 'EndpointConfigurationAsyncInferenceConfigArgsDict']]] = None,
|
|
363
395
|
data_capture_config: Optional[pulumi.Input[Union['EndpointConfigurationDataCaptureConfigArgs', 'EndpointConfigurationDataCaptureConfigArgsDict']]] = None,
|
|
396
|
+
execution_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
364
397
|
kms_key_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
365
398
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
366
399
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -403,15 +436,16 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
403
436
|
|
|
404
437
|
:param str resource_name: The name of the resource.
|
|
405
438
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
406
|
-
:param pulumi.Input[Union['EndpointConfigurationAsyncInferenceConfigArgs', 'EndpointConfigurationAsyncInferenceConfigArgsDict']] async_inference_config:
|
|
407
|
-
:param pulumi.Input[Union['EndpointConfigurationDataCaptureConfigArgs', 'EndpointConfigurationDataCaptureConfigArgsDict']] data_capture_config:
|
|
408
|
-
:param pulumi.Input[_builtins.str]
|
|
409
|
-
:param pulumi.Input[_builtins.str]
|
|
410
|
-
:param pulumi.Input[_builtins.str]
|
|
411
|
-
:param pulumi.Input[
|
|
439
|
+
:param pulumi.Input[Union['EndpointConfigurationAsyncInferenceConfigArgs', 'EndpointConfigurationAsyncInferenceConfigArgsDict']] async_inference_config: How an endpoint performs asynchronous inference.
|
|
440
|
+
:param pulumi.Input[Union['EndpointConfigurationDataCaptureConfigArgs', 'EndpointConfigurationDataCaptureConfigArgsDict']] data_capture_config: Parameters to capture input/output of SageMaker AI models endpoints. Fields are documented below.
|
|
441
|
+
:param pulumi.Input[_builtins.str] execution_role_arn: ARN of an IAM role that SageMaker AI can assume to perform actions on your behalf. Required when `model_name` is not specified in `production_variants` to support Inference Components.
|
|
442
|
+
:param pulumi.Input[_builtins.str] kms_key_arn: ARN of a AWS KMS key that SageMaker AI uses to encrypt data on the storage volume attached to the ML compute instance that hosts the endpoint.
|
|
443
|
+
:param pulumi.Input[_builtins.str] name: Name of the endpoint configuration. If omitted, the provider will assign a random, unique name. Conflicts with `name_prefix`.
|
|
444
|
+
:param pulumi.Input[_builtins.str] name_prefix: Unique endpoint configuration name beginning with the specified prefix. Conflicts with `name`.
|
|
445
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['EndpointConfigurationProductionVariantArgs', 'EndpointConfigurationProductionVariantArgsDict']]]] production_variants: List each model that you want to host at this endpoint. See below.
|
|
412
446
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
413
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['EndpointConfigurationShadowProductionVariantArgs', 'EndpointConfigurationShadowProductionVariantArgsDict']]]] shadow_production_variants:
|
|
414
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags:
|
|
447
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['EndpointConfigurationShadowProductionVariantArgs', 'EndpointConfigurationShadowProductionVariantArgsDict']]]] shadow_production_variants: Models that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified on `oroduction_variants`. If you use this field, you can only specify one variant for `production_variants` and one variant for `shadow_production_variants`. See below (same arguments as `production_variants`).
|
|
448
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
415
449
|
"""
|
|
416
450
|
...
|
|
417
451
|
@overload
|
|
@@ -468,6 +502,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
468
502
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
469
503
|
async_inference_config: Optional[pulumi.Input[Union['EndpointConfigurationAsyncInferenceConfigArgs', 'EndpointConfigurationAsyncInferenceConfigArgsDict']]] = None,
|
|
470
504
|
data_capture_config: Optional[pulumi.Input[Union['EndpointConfigurationDataCaptureConfigArgs', 'EndpointConfigurationDataCaptureConfigArgsDict']]] = None,
|
|
505
|
+
execution_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
471
506
|
kms_key_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
472
507
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
473
508
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -486,6 +521,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
486
521
|
|
|
487
522
|
__props__.__dict__["async_inference_config"] = async_inference_config
|
|
488
523
|
__props__.__dict__["data_capture_config"] = data_capture_config
|
|
524
|
+
__props__.__dict__["execution_role_arn"] = execution_role_arn
|
|
489
525
|
__props__.__dict__["kms_key_arn"] = kms_key_arn
|
|
490
526
|
__props__.__dict__["name"] = name
|
|
491
527
|
__props__.__dict__["name_prefix"] = name_prefix
|
|
@@ -510,6 +546,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
510
546
|
arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
511
547
|
async_inference_config: Optional[pulumi.Input[Union['EndpointConfigurationAsyncInferenceConfigArgs', 'EndpointConfigurationAsyncInferenceConfigArgsDict']]] = None,
|
|
512
548
|
data_capture_config: Optional[pulumi.Input[Union['EndpointConfigurationDataCaptureConfigArgs', 'EndpointConfigurationDataCaptureConfigArgsDict']]] = None,
|
|
549
|
+
execution_role_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
513
550
|
kms_key_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
514
551
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
515
552
|
name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -525,17 +562,18 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
525
562
|
:param str resource_name: The unique name of the resulting resource.
|
|
526
563
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
527
564
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
528
|
-
:param pulumi.Input[_builtins.str] arn:
|
|
529
|
-
:param pulumi.Input[Union['EndpointConfigurationAsyncInferenceConfigArgs', 'EndpointConfigurationAsyncInferenceConfigArgsDict']] async_inference_config:
|
|
530
|
-
:param pulumi.Input[Union['EndpointConfigurationDataCaptureConfigArgs', 'EndpointConfigurationDataCaptureConfigArgsDict']] data_capture_config:
|
|
531
|
-
:param pulumi.Input[_builtins.str]
|
|
532
|
-
:param pulumi.Input[_builtins.str]
|
|
533
|
-
:param pulumi.Input[_builtins.str]
|
|
534
|
-
:param pulumi.Input[
|
|
565
|
+
:param pulumi.Input[_builtins.str] arn: ARN assigned by AWS to this endpoint configuration.
|
|
566
|
+
:param pulumi.Input[Union['EndpointConfigurationAsyncInferenceConfigArgs', 'EndpointConfigurationAsyncInferenceConfigArgsDict']] async_inference_config: How an endpoint performs asynchronous inference.
|
|
567
|
+
:param pulumi.Input[Union['EndpointConfigurationDataCaptureConfigArgs', 'EndpointConfigurationDataCaptureConfigArgsDict']] data_capture_config: Parameters to capture input/output of SageMaker AI models endpoints. Fields are documented below.
|
|
568
|
+
:param pulumi.Input[_builtins.str] execution_role_arn: ARN of an IAM role that SageMaker AI can assume to perform actions on your behalf. Required when `model_name` is not specified in `production_variants` to support Inference Components.
|
|
569
|
+
:param pulumi.Input[_builtins.str] kms_key_arn: ARN of a AWS KMS key that SageMaker AI uses to encrypt data on the storage volume attached to the ML compute instance that hosts the endpoint.
|
|
570
|
+
:param pulumi.Input[_builtins.str] name: Name of the endpoint configuration. If omitted, the provider will assign a random, unique name. Conflicts with `name_prefix`.
|
|
571
|
+
:param pulumi.Input[_builtins.str] name_prefix: Unique endpoint configuration name beginning with the specified prefix. Conflicts with `name`.
|
|
572
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['EndpointConfigurationProductionVariantArgs', 'EndpointConfigurationProductionVariantArgsDict']]]] production_variants: List each model that you want to host at this endpoint. See below.
|
|
535
573
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
536
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['EndpointConfigurationShadowProductionVariantArgs', 'EndpointConfigurationShadowProductionVariantArgsDict']]]] shadow_production_variants:
|
|
537
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags:
|
|
538
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags_all:
|
|
574
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['EndpointConfigurationShadowProductionVariantArgs', 'EndpointConfigurationShadowProductionVariantArgsDict']]]] shadow_production_variants: Models that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified on `oroduction_variants`. If you use this field, you can only specify one variant for `production_variants` and one variant for `shadow_production_variants`. See below (same arguments as `production_variants`).
|
|
575
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: Mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
576
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags_all: Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
|
|
539
577
|
"""
|
|
540
578
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
541
579
|
|
|
@@ -544,6 +582,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
544
582
|
__props__.__dict__["arn"] = arn
|
|
545
583
|
__props__.__dict__["async_inference_config"] = async_inference_config
|
|
546
584
|
__props__.__dict__["data_capture_config"] = data_capture_config
|
|
585
|
+
__props__.__dict__["execution_role_arn"] = execution_role_arn
|
|
547
586
|
__props__.__dict__["kms_key_arn"] = kms_key_arn
|
|
548
587
|
__props__.__dict__["name"] = name
|
|
549
588
|
__props__.__dict__["name_prefix"] = name_prefix
|
|
@@ -558,7 +597,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
558
597
|
@pulumi.getter
|
|
559
598
|
def arn(self) -> pulumi.Output[_builtins.str]:
|
|
560
599
|
"""
|
|
561
|
-
|
|
600
|
+
ARN assigned by AWS to this endpoint configuration.
|
|
562
601
|
"""
|
|
563
602
|
return pulumi.get(self, "arn")
|
|
564
603
|
|
|
@@ -566,7 +605,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
566
605
|
@pulumi.getter(name="asyncInferenceConfig")
|
|
567
606
|
def async_inference_config(self) -> pulumi.Output[Optional['outputs.EndpointConfigurationAsyncInferenceConfig']]:
|
|
568
607
|
"""
|
|
569
|
-
|
|
608
|
+
How an endpoint performs asynchronous inference.
|
|
570
609
|
"""
|
|
571
610
|
return pulumi.get(self, "async_inference_config")
|
|
572
611
|
|
|
@@ -574,15 +613,23 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
574
613
|
@pulumi.getter(name="dataCaptureConfig")
|
|
575
614
|
def data_capture_config(self) -> pulumi.Output[Optional['outputs.EndpointConfigurationDataCaptureConfig']]:
|
|
576
615
|
"""
|
|
577
|
-
|
|
616
|
+
Parameters to capture input/output of SageMaker AI models endpoints. Fields are documented below.
|
|
578
617
|
"""
|
|
579
618
|
return pulumi.get(self, "data_capture_config")
|
|
580
619
|
|
|
620
|
+
@_builtins.property
|
|
621
|
+
@pulumi.getter(name="executionRoleArn")
|
|
622
|
+
def execution_role_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
623
|
+
"""
|
|
624
|
+
ARN of an IAM role that SageMaker AI can assume to perform actions on your behalf. Required when `model_name` is not specified in `production_variants` to support Inference Components.
|
|
625
|
+
"""
|
|
626
|
+
return pulumi.get(self, "execution_role_arn")
|
|
627
|
+
|
|
581
628
|
@_builtins.property
|
|
582
629
|
@pulumi.getter(name="kmsKeyArn")
|
|
583
630
|
def kms_key_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
584
631
|
"""
|
|
585
|
-
|
|
632
|
+
ARN of a AWS KMS key that SageMaker AI uses to encrypt data on the storage volume attached to the ML compute instance that hosts the endpoint.
|
|
586
633
|
"""
|
|
587
634
|
return pulumi.get(self, "kms_key_arn")
|
|
588
635
|
|
|
@@ -590,7 +637,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
590
637
|
@pulumi.getter
|
|
591
638
|
def name(self) -> pulumi.Output[_builtins.str]:
|
|
592
639
|
"""
|
|
593
|
-
|
|
640
|
+
Name of the endpoint configuration. If omitted, the provider will assign a random, unique name. Conflicts with `name_prefix`.
|
|
594
641
|
"""
|
|
595
642
|
return pulumi.get(self, "name")
|
|
596
643
|
|
|
@@ -598,7 +645,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
598
645
|
@pulumi.getter(name="namePrefix")
|
|
599
646
|
def name_prefix(self) -> pulumi.Output[_builtins.str]:
|
|
600
647
|
"""
|
|
601
|
-
|
|
648
|
+
Unique endpoint configuration name beginning with the specified prefix. Conflicts with `name`.
|
|
602
649
|
"""
|
|
603
650
|
return pulumi.get(self, "name_prefix")
|
|
604
651
|
|
|
@@ -606,7 +653,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
606
653
|
@pulumi.getter(name="productionVariants")
|
|
607
654
|
def production_variants(self) -> pulumi.Output[Sequence['outputs.EndpointConfigurationProductionVariant']]:
|
|
608
655
|
"""
|
|
609
|
-
|
|
656
|
+
List each model that you want to host at this endpoint. See below.
|
|
610
657
|
"""
|
|
611
658
|
return pulumi.get(self, "production_variants")
|
|
612
659
|
|
|
@@ -622,7 +669,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
622
669
|
@pulumi.getter(name="shadowProductionVariants")
|
|
623
670
|
def shadow_production_variants(self) -> pulumi.Output[Optional[Sequence['outputs.EndpointConfigurationShadowProductionVariant']]]:
|
|
624
671
|
"""
|
|
625
|
-
|
|
672
|
+
Models that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified on `oroduction_variants`. If you use this field, you can only specify one variant for `production_variants` and one variant for `shadow_production_variants`. See below (same arguments as `production_variants`).
|
|
626
673
|
"""
|
|
627
674
|
return pulumi.get(self, "shadow_production_variants")
|
|
628
675
|
|
|
@@ -630,7 +677,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
630
677
|
@pulumi.getter
|
|
631
678
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|
|
632
679
|
"""
|
|
633
|
-
|
|
680
|
+
Mapping of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
634
681
|
"""
|
|
635
682
|
return pulumi.get(self, "tags")
|
|
636
683
|
|
|
@@ -638,7 +685,7 @@ class EndpointConfiguration(pulumi.CustomResource):
|
|
|
638
685
|
@pulumi.getter(name="tagsAll")
|
|
639
686
|
def tags_all(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
|
640
687
|
"""
|
|
641
|
-
|
|
688
|
+
Map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
|
|
642
689
|
"""
|
|
643
690
|
return pulumi.get(self, "tags_all")
|
|
644
691
|
|