pulumi-aws-native 1.38.0a1761803003__py3-none-any.whl → 1.38.0a1762272920__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 +17 -1
- pulumi_aws_native/appstream/get_image_builder.py +0 -4
- pulumi_aws_native/appstream/image_builder.py +0 -16
- pulumi_aws_native/aps/_inputs.py +58 -0
- pulumi_aws_native/aps/outputs.py +36 -0
- pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
- pulumi_aws_native/arcregionswitch/plan.py +0 -3
- pulumi_aws_native/batch/_inputs.py +9 -0
- pulumi_aws_native/batch/job_definition.py +8 -0
- pulumi_aws_native/batch/outputs.py +6 -0
- pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
- pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
- pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
- pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
- pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
- pulumi_aws_native/ce/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/configured_table.py +4 -4
- pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
- pulumi_aws_native/cognito/__init__.py +2 -0
- pulumi_aws_native/cognito/_enums.py +12 -0
- pulumi_aws_native/cognito/get_terms.py +117 -0
- pulumi_aws_native/cognito/terms.py +236 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +28 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +16 -0
- pulumi_aws_native/datazone/connection.py +30 -1
- pulumi_aws_native/ec2/get_volume.py +37 -15
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +9 -0
- pulumi_aws_native/ecs/_inputs.py +96 -15
- pulumi_aws_native/ecs/outputs.py +60 -10
- pulumi_aws_native/eks/_enums.py +11 -0
- pulumi_aws_native/eks/_inputs.py +199 -1
- pulumi_aws_native/eks/get_nodegroup.py +1 -0
- pulumi_aws_native/eks/nodegroup.py +1 -0
- pulumi_aws_native/eks/outputs.py +169 -1
- pulumi_aws_native/glue/__init__.py +2 -0
- pulumi_aws_native/glue/_inputs.py +134 -0
- pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
- pulumi_aws_native/glue/integration_resource_property.py +229 -0
- pulumi_aws_native/glue/outputs.py +122 -0
- pulumi_aws_native/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- pulumi_aws_native/networkfirewall/_inputs.py +7 -0
- pulumi_aws_native/networkfirewall/firewall.py +3 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +3 -0
- pulumi_aws_native/networkfirewall/outputs.py +4 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/qbusiness/_inputs.py +3 -3
- pulumi_aws_native/qbusiness/application.py +4 -4
- pulumi_aws_native/qbusiness/outputs.py +2 -2
- pulumi_aws_native/quicksight/_inputs.py +9 -9
- pulumi_aws_native/quicksight/outputs.py +6 -6
- pulumi_aws_native/rtbfabric/_enums.py +3 -0
- pulumi_aws_native/rtbfabric/_inputs.py +70 -0
- pulumi_aws_native/rtbfabric/get_link.py +18 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +15 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +30 -0
- pulumi_aws_native/rtbfabric/link.py +51 -0
- pulumi_aws_native/rtbfabric/outputs.py +46 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +40 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +80 -0
- pulumi_aws_native/s3/_enums.py +1 -1
- pulumi_aws_native/s3/_inputs.py +11 -5
- pulumi_aws_native/s3/outputs.py +10 -4
- pulumi_aws_native/s3vectors/__init__.py +17 -0
- pulumi_aws_native/s3vectors/_enums.py +39 -0
- pulumi_aws_native/s3vectors/_inputs.py +138 -0
- pulumi_aws_native/s3vectors/get_index.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
- pulumi_aws_native/s3vectors/index.py +367 -0
- pulumi_aws_native/s3vectors/outputs.py +129 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
- pulumi_aws_native/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_inputs.py +9 -0
- pulumi_aws_native/transfer/connector.py +3 -0
- pulumi_aws_native/transfer/get_connector.py +3 -0
- pulumi_aws_native/transfer/outputs.py +6 -0
- pulumi_aws_native/wafv2/_inputs.py +72 -0
- pulumi_aws_native/wafv2/get_web_acl.py +15 -1
- pulumi_aws_native/wafv2/outputs.py +45 -0
- pulumi_aws_native/wafv2/web_acl.py +29 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/RECORD +88 -72
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/top_level.txt +0 -0
|
@@ -36,6 +36,16 @@ class ResponderGatewayArgs:
|
|
|
36
36
|
trust_store_configuration: Optional[pulumi.Input['ResponderGatewayTrustStoreConfigurationArgs']] = None):
|
|
37
37
|
"""
|
|
38
38
|
The set of arguments for constructing a ResponderGateway resource.
|
|
39
|
+
:param pulumi.Input[_builtins.int] port: The networking port to use.
|
|
40
|
+
:param pulumi.Input['ResponderGatewayProtocol'] protocol: The networking protocol to use.
|
|
41
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_group_ids: The unique identifiers of the security groups.
|
|
42
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: The unique identifiers of the subnets.
|
|
43
|
+
:param pulumi.Input[_builtins.str] vpc_id: The unique identifier of the Virtual Private Cloud (VPC).
|
|
44
|
+
:param pulumi.Input[_builtins.str] description: An optional description for the responder gateway.
|
|
45
|
+
:param pulumi.Input[_builtins.str] domain_name: The domain name for the responder gateway.
|
|
46
|
+
:param pulumi.Input['ResponderGatewayManagedEndpointConfigurationArgs'] managed_endpoint_configuration: The configuration for the managed endpoint.
|
|
47
|
+
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
48
|
+
:param pulumi.Input['ResponderGatewayTrustStoreConfigurationArgs'] trust_store_configuration: The configuration of the trust store.
|
|
39
49
|
"""
|
|
40
50
|
pulumi.set(__self__, "port", port)
|
|
41
51
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -56,6 +66,9 @@ class ResponderGatewayArgs:
|
|
|
56
66
|
@_builtins.property
|
|
57
67
|
@pulumi.getter
|
|
58
68
|
def port(self) -> pulumi.Input[_builtins.int]:
|
|
69
|
+
"""
|
|
70
|
+
The networking port to use.
|
|
71
|
+
"""
|
|
59
72
|
return pulumi.get(self, "port")
|
|
60
73
|
|
|
61
74
|
@port.setter
|
|
@@ -65,6 +78,9 @@ class ResponderGatewayArgs:
|
|
|
65
78
|
@_builtins.property
|
|
66
79
|
@pulumi.getter
|
|
67
80
|
def protocol(self) -> pulumi.Input['ResponderGatewayProtocol']:
|
|
81
|
+
"""
|
|
82
|
+
The networking protocol to use.
|
|
83
|
+
"""
|
|
68
84
|
return pulumi.get(self, "protocol")
|
|
69
85
|
|
|
70
86
|
@protocol.setter
|
|
@@ -74,6 +90,9 @@ class ResponderGatewayArgs:
|
|
|
74
90
|
@_builtins.property
|
|
75
91
|
@pulumi.getter(name="securityGroupIds")
|
|
76
92
|
def security_group_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
93
|
+
"""
|
|
94
|
+
The unique identifiers of the security groups.
|
|
95
|
+
"""
|
|
77
96
|
return pulumi.get(self, "security_group_ids")
|
|
78
97
|
|
|
79
98
|
@security_group_ids.setter
|
|
@@ -83,6 +102,9 @@ class ResponderGatewayArgs:
|
|
|
83
102
|
@_builtins.property
|
|
84
103
|
@pulumi.getter(name="subnetIds")
|
|
85
104
|
def subnet_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
105
|
+
"""
|
|
106
|
+
The unique identifiers of the subnets.
|
|
107
|
+
"""
|
|
86
108
|
return pulumi.get(self, "subnet_ids")
|
|
87
109
|
|
|
88
110
|
@subnet_ids.setter
|
|
@@ -92,6 +114,9 @@ class ResponderGatewayArgs:
|
|
|
92
114
|
@_builtins.property
|
|
93
115
|
@pulumi.getter(name="vpcId")
|
|
94
116
|
def vpc_id(self) -> pulumi.Input[_builtins.str]:
|
|
117
|
+
"""
|
|
118
|
+
The unique identifier of the Virtual Private Cloud (VPC).
|
|
119
|
+
"""
|
|
95
120
|
return pulumi.get(self, "vpc_id")
|
|
96
121
|
|
|
97
122
|
@vpc_id.setter
|
|
@@ -101,6 +126,9 @@ class ResponderGatewayArgs:
|
|
|
101
126
|
@_builtins.property
|
|
102
127
|
@pulumi.getter
|
|
103
128
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
129
|
+
"""
|
|
130
|
+
An optional description for the responder gateway.
|
|
131
|
+
"""
|
|
104
132
|
return pulumi.get(self, "description")
|
|
105
133
|
|
|
106
134
|
@description.setter
|
|
@@ -110,6 +138,9 @@ class ResponderGatewayArgs:
|
|
|
110
138
|
@_builtins.property
|
|
111
139
|
@pulumi.getter(name="domainName")
|
|
112
140
|
def domain_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
141
|
+
"""
|
|
142
|
+
The domain name for the responder gateway.
|
|
143
|
+
"""
|
|
113
144
|
return pulumi.get(self, "domain_name")
|
|
114
145
|
|
|
115
146
|
@domain_name.setter
|
|
@@ -119,6 +150,9 @@ class ResponderGatewayArgs:
|
|
|
119
150
|
@_builtins.property
|
|
120
151
|
@pulumi.getter(name="managedEndpointConfiguration")
|
|
121
152
|
def managed_endpoint_configuration(self) -> Optional[pulumi.Input['ResponderGatewayManagedEndpointConfigurationArgs']]:
|
|
153
|
+
"""
|
|
154
|
+
The configuration for the managed endpoint.
|
|
155
|
+
"""
|
|
122
156
|
return pulumi.get(self, "managed_endpoint_configuration")
|
|
123
157
|
|
|
124
158
|
@managed_endpoint_configuration.setter
|
|
@@ -128,6 +162,9 @@ class ResponderGatewayArgs:
|
|
|
128
162
|
@_builtins.property
|
|
129
163
|
@pulumi.getter
|
|
130
164
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
165
|
+
"""
|
|
166
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
167
|
+
"""
|
|
131
168
|
return pulumi.get(self, "tags")
|
|
132
169
|
|
|
133
170
|
@tags.setter
|
|
@@ -137,6 +174,9 @@ class ResponderGatewayArgs:
|
|
|
137
174
|
@_builtins.property
|
|
138
175
|
@pulumi.getter(name="trustStoreConfiguration")
|
|
139
176
|
def trust_store_configuration(self) -> Optional[pulumi.Input['ResponderGatewayTrustStoreConfigurationArgs']]:
|
|
177
|
+
"""
|
|
178
|
+
The configuration of the trust store.
|
|
179
|
+
"""
|
|
140
180
|
return pulumi.get(self, "trust_store_configuration")
|
|
141
181
|
|
|
142
182
|
@trust_store_configuration.setter
|
|
@@ -166,6 +206,16 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
166
206
|
|
|
167
207
|
:param str resource_name: The name of the resource.
|
|
168
208
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
209
|
+
:param pulumi.Input[_builtins.str] description: An optional description for the responder gateway.
|
|
210
|
+
:param pulumi.Input[_builtins.str] domain_name: The domain name for the responder gateway.
|
|
211
|
+
:param pulumi.Input[Union['ResponderGatewayManagedEndpointConfigurationArgs', 'ResponderGatewayManagedEndpointConfigurationArgsDict']] managed_endpoint_configuration: The configuration for the managed endpoint.
|
|
212
|
+
:param pulumi.Input[_builtins.int] port: The networking port to use.
|
|
213
|
+
:param pulumi.Input['ResponderGatewayProtocol'] protocol: The networking protocol to use.
|
|
214
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_group_ids: The unique identifiers of the security groups.
|
|
215
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: The unique identifiers of the subnets.
|
|
216
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
217
|
+
:param pulumi.Input[Union['ResponderGatewayTrustStoreConfigurationArgs', 'ResponderGatewayTrustStoreConfigurationArgsDict']] trust_store_configuration: The configuration of the trust store.
|
|
218
|
+
:param pulumi.Input[_builtins.str] vpc_id: The unique identifier of the Virtual Private Cloud (VPC).
|
|
169
219
|
"""
|
|
170
220
|
...
|
|
171
221
|
@overload
|
|
@@ -287,11 +337,17 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
287
337
|
@_builtins.property
|
|
288
338
|
@pulumi.getter
|
|
289
339
|
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
340
|
+
"""
|
|
341
|
+
An optional description for the responder gateway.
|
|
342
|
+
"""
|
|
290
343
|
return pulumi.get(self, "description")
|
|
291
344
|
|
|
292
345
|
@_builtins.property
|
|
293
346
|
@pulumi.getter(name="domainName")
|
|
294
347
|
def domain_name(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
348
|
+
"""
|
|
349
|
+
The domain name for the responder gateway.
|
|
350
|
+
"""
|
|
295
351
|
return pulumi.get(self, "domain_name")
|
|
296
352
|
|
|
297
353
|
@_builtins.property
|
|
@@ -302,16 +358,25 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
302
358
|
@_builtins.property
|
|
303
359
|
@pulumi.getter(name="managedEndpointConfiguration")
|
|
304
360
|
def managed_endpoint_configuration(self) -> pulumi.Output[Optional['outputs.ResponderGatewayManagedEndpointConfiguration']]:
|
|
361
|
+
"""
|
|
362
|
+
The configuration for the managed endpoint.
|
|
363
|
+
"""
|
|
305
364
|
return pulumi.get(self, "managed_endpoint_configuration")
|
|
306
365
|
|
|
307
366
|
@_builtins.property
|
|
308
367
|
@pulumi.getter
|
|
309
368
|
def port(self) -> pulumi.Output[_builtins.int]:
|
|
369
|
+
"""
|
|
370
|
+
The networking port to use.
|
|
371
|
+
"""
|
|
310
372
|
return pulumi.get(self, "port")
|
|
311
373
|
|
|
312
374
|
@_builtins.property
|
|
313
375
|
@pulumi.getter
|
|
314
376
|
def protocol(self) -> pulumi.Output['ResponderGatewayProtocol']:
|
|
377
|
+
"""
|
|
378
|
+
The networking protocol to use.
|
|
379
|
+
"""
|
|
315
380
|
return pulumi.get(self, "protocol")
|
|
316
381
|
|
|
317
382
|
@_builtins.property
|
|
@@ -322,21 +387,33 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
322
387
|
@_builtins.property
|
|
323
388
|
@pulumi.getter(name="securityGroupIds")
|
|
324
389
|
def security_group_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
390
|
+
"""
|
|
391
|
+
The unique identifiers of the security groups.
|
|
392
|
+
"""
|
|
325
393
|
return pulumi.get(self, "security_group_ids")
|
|
326
394
|
|
|
327
395
|
@_builtins.property
|
|
328
396
|
@pulumi.getter(name="subnetIds")
|
|
329
397
|
def subnet_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
398
|
+
"""
|
|
399
|
+
The unique identifiers of the subnets.
|
|
400
|
+
"""
|
|
330
401
|
return pulumi.get(self, "subnet_ids")
|
|
331
402
|
|
|
332
403
|
@_builtins.property
|
|
333
404
|
@pulumi.getter
|
|
334
405
|
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
406
|
+
"""
|
|
407
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
408
|
+
"""
|
|
335
409
|
return pulumi.get(self, "tags")
|
|
336
410
|
|
|
337
411
|
@_builtins.property
|
|
338
412
|
@pulumi.getter(name="trustStoreConfiguration")
|
|
339
413
|
def trust_store_configuration(self) -> pulumi.Output[Optional['outputs.ResponderGatewayTrustStoreConfiguration']]:
|
|
414
|
+
"""
|
|
415
|
+
The configuration of the trust store.
|
|
416
|
+
"""
|
|
340
417
|
return pulumi.get(self, "trust_store_configuration")
|
|
341
418
|
|
|
342
419
|
@_builtins.property
|
|
@@ -347,5 +424,8 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
347
424
|
@_builtins.property
|
|
348
425
|
@pulumi.getter(name="vpcId")
|
|
349
426
|
def vpc_id(self) -> pulumi.Output[_builtins.str]:
|
|
427
|
+
"""
|
|
428
|
+
The unique identifier of the Virtual Private Cloud (VPC).
|
|
429
|
+
"""
|
|
350
430
|
return pulumi.get(self, "vpc_id")
|
|
351
431
|
|
pulumi_aws_native/s3/_enums.py
CHANGED
|
@@ -132,7 +132,7 @@ class BucketDefaultRetentionMode(_builtins.str, Enum):
|
|
|
132
132
|
@pulumi.type_token("aws-native:s3:BucketDeleteMarkerReplicationStatus")
|
|
133
133
|
class BucketDeleteMarkerReplicationStatus(_builtins.str, Enum):
|
|
134
134
|
"""
|
|
135
|
-
Indicates whether to replicate delete markers.
|
|
135
|
+
Indicates whether to replicate delete markers.
|
|
136
136
|
"""
|
|
137
137
|
DISABLED = "Disabled"
|
|
138
138
|
ENABLED = "Enabled"
|
pulumi_aws_native/s3/_inputs.py
CHANGED
|
@@ -951,7 +951,7 @@ if not MYPY:
|
|
|
951
951
|
"""
|
|
952
952
|
status: NotRequired[pulumi.Input['BucketDeleteMarkerReplicationStatus']]
|
|
953
953
|
"""
|
|
954
|
-
Indicates whether to replicate delete markers.
|
|
954
|
+
Indicates whether to replicate delete markers.
|
|
955
955
|
"""
|
|
956
956
|
elif False:
|
|
957
957
|
BucketDeleteMarkerReplicationArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -964,7 +964,7 @@ class BucketDeleteMarkerReplicationArgs:
|
|
|
964
964
|
Specifies whether Amazon S3 replicates delete markers. If you specify a ``Filter`` in your replication configuration, you must also include a ``DeleteMarkerReplication`` element. If your ``Filter`` includes a ``Tag`` element, the ``DeleteMarkerReplication````Status`` must be set to Disabled, because Amazon S3 does not support replicating delete markers for tag-based rules. For an example configuration, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-config-min-rule-config).
|
|
965
965
|
For more information about delete marker replication, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/delete-marker-replication.html).
|
|
966
966
|
If you are using an earlier version of the replication configuration, Amazon S3 handles replication of delete markers differently. For more information, see [Backward Compatibility](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-backward-compat-considerations).
|
|
967
|
-
:param pulumi.Input['BucketDeleteMarkerReplicationStatus'] status: Indicates whether to replicate delete markers.
|
|
967
|
+
:param pulumi.Input['BucketDeleteMarkerReplicationStatus'] status: Indicates whether to replicate delete markers.
|
|
968
968
|
"""
|
|
969
969
|
if status is not None:
|
|
970
970
|
pulumi.set(__self__, "status", status)
|
|
@@ -973,7 +973,7 @@ class BucketDeleteMarkerReplicationArgs:
|
|
|
973
973
|
@pulumi.getter
|
|
974
974
|
def status(self) -> Optional[pulumi.Input['BucketDeleteMarkerReplicationStatus']]:
|
|
975
975
|
"""
|
|
976
|
-
Indicates whether to replicate delete markers.
|
|
976
|
+
Indicates whether to replicate delete markers.
|
|
977
977
|
"""
|
|
978
978
|
return pulumi.get(self, "status")
|
|
979
979
|
|
|
@@ -5028,7 +5028,10 @@ if not MYPY:
|
|
|
5028
5028
|
class BucketVersioningConfigurationArgsDict(TypedDict):
|
|
5029
5029
|
"""
|
|
5030
5030
|
Describes the versioning state of an Amazon S3 bucket. For more information, see [PUT Bucket versioning](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html) in the *Amazon S3 API Reference*.
|
|
5031
|
-
|
|
5031
|
+
Keep the following timing in mind when enabling, suspending, or transitioning between versioning states:
|
|
5032
|
+
+ *Enabling versioning* - Changes may take up to 15 minutes to propagate across all AWS regions for full consistency.
|
|
5033
|
+
+ *Suspending versioning* - Takes effect immediately with no propagation delay.
|
|
5034
|
+
+ *Transitioning between states* - Any change from Suspended to Enabled has a 15-minute delay.
|
|
5032
5035
|
"""
|
|
5033
5036
|
status: pulumi.Input['BucketVersioningConfigurationStatus']
|
|
5034
5037
|
"""
|
|
@@ -5043,7 +5046,10 @@ class BucketVersioningConfigurationArgs:
|
|
|
5043
5046
|
status: pulumi.Input['BucketVersioningConfigurationStatus']):
|
|
5044
5047
|
"""
|
|
5045
5048
|
Describes the versioning state of an Amazon S3 bucket. For more information, see [PUT Bucket versioning](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html) in the *Amazon S3 API Reference*.
|
|
5046
|
-
|
|
5049
|
+
Keep the following timing in mind when enabling, suspending, or transitioning between versioning states:
|
|
5050
|
+
+ *Enabling versioning* - Changes may take up to 15 minutes to propagate across all AWS regions for full consistency.
|
|
5051
|
+
+ *Suspending versioning* - Takes effect immediately with no propagation delay.
|
|
5052
|
+
+ *Transitioning between states* - Any change from Suspended to Enabled has a 15-minute delay.
|
|
5047
5053
|
:param pulumi.Input['BucketVersioningConfigurationStatus'] status: The versioning state of the bucket.
|
|
5048
5054
|
"""
|
|
5049
5055
|
pulumi.set(__self__, "status", status)
|
pulumi_aws_native/s3/outputs.py
CHANGED
|
@@ -765,7 +765,7 @@ class BucketDeleteMarkerReplication(dict):
|
|
|
765
765
|
Specifies whether Amazon S3 replicates delete markers. If you specify a ``Filter`` in your replication configuration, you must also include a ``DeleteMarkerReplication`` element. If your ``Filter`` includes a ``Tag`` element, the ``DeleteMarkerReplication````Status`` must be set to Disabled, because Amazon S3 does not support replicating delete markers for tag-based rules. For an example configuration, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-config-min-rule-config).
|
|
766
766
|
For more information about delete marker replication, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/delete-marker-replication.html).
|
|
767
767
|
If you are using an earlier version of the replication configuration, Amazon S3 handles replication of delete markers differently. For more information, see [Backward Compatibility](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-backward-compat-considerations).
|
|
768
|
-
:param 'BucketDeleteMarkerReplicationStatus' status: Indicates whether to replicate delete markers.
|
|
768
|
+
:param 'BucketDeleteMarkerReplicationStatus' status: Indicates whether to replicate delete markers.
|
|
769
769
|
"""
|
|
770
770
|
if status is not None:
|
|
771
771
|
pulumi.set(__self__, "status", status)
|
|
@@ -774,7 +774,7 @@ class BucketDeleteMarkerReplication(dict):
|
|
|
774
774
|
@pulumi.getter
|
|
775
775
|
def status(self) -> Optional['BucketDeleteMarkerReplicationStatus']:
|
|
776
776
|
"""
|
|
777
|
-
Indicates whether to replicate delete markers.
|
|
777
|
+
Indicates whether to replicate delete markers.
|
|
778
778
|
"""
|
|
779
779
|
return pulumi.get(self, "status")
|
|
780
780
|
|
|
@@ -4074,13 +4074,19 @@ class BucketTransition(dict):
|
|
|
4074
4074
|
class BucketVersioningConfiguration(dict):
|
|
4075
4075
|
"""
|
|
4076
4076
|
Describes the versioning state of an Amazon S3 bucket. For more information, see [PUT Bucket versioning](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html) in the *Amazon S3 API Reference*.
|
|
4077
|
-
|
|
4077
|
+
Keep the following timing in mind when enabling, suspending, or transitioning between versioning states:
|
|
4078
|
+
+ *Enabling versioning* - Changes may take up to 15 minutes to propagate across all AWS regions for full consistency.
|
|
4079
|
+
+ *Suspending versioning* - Takes effect immediately with no propagation delay.
|
|
4080
|
+
+ *Transitioning between states* - Any change from Suspended to Enabled has a 15-minute delay.
|
|
4078
4081
|
"""
|
|
4079
4082
|
def __init__(__self__, *,
|
|
4080
4083
|
status: 'BucketVersioningConfigurationStatus'):
|
|
4081
4084
|
"""
|
|
4082
4085
|
Describes the versioning state of an Amazon S3 bucket. For more information, see [PUT Bucket versioning](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html) in the *Amazon S3 API Reference*.
|
|
4083
|
-
|
|
4086
|
+
Keep the following timing in mind when enabling, suspending, or transitioning between versioning states:
|
|
4087
|
+
+ *Enabling versioning* - Changes may take up to 15 minutes to propagate across all AWS regions for full consistency.
|
|
4088
|
+
+ *Suspending versioning* - Takes effect immediately with no propagation delay.
|
|
4089
|
+
+ *Transitioning between states* - Any change from Suspended to Enabled has a 15-minute delay.
|
|
4084
4090
|
:param 'BucketVersioningConfigurationStatus' status: The versioning state of the bucket.
|
|
4085
4091
|
"""
|
|
4086
4092
|
pulumi.set(__self__, "status", status)
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
from .. import _utilities
|
|
7
|
+
import typing
|
|
8
|
+
# Export this package's modules as members:
|
|
9
|
+
from ._enums import *
|
|
10
|
+
from .get_index import *
|
|
11
|
+
from .get_vector_bucket import *
|
|
12
|
+
from .get_vector_bucket_policy import *
|
|
13
|
+
from .index import *
|
|
14
|
+
from .vector_bucket import *
|
|
15
|
+
from .vector_bucket_policy import *
|
|
16
|
+
from ._inputs import *
|
|
17
|
+
from . import outputs
|
|
@@ -0,0 +1,39 @@
|
|
|
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 pulumi
|
|
7
|
+
from enum import Enum
|
|
8
|
+
|
|
9
|
+
__all__ = [
|
|
10
|
+
'IndexDataType',
|
|
11
|
+
'IndexDistanceMetric',
|
|
12
|
+
'VectorBucketEncryptionConfigurationSseType',
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
@pulumi.type_token("aws-native:s3vectors:IndexDataType")
|
|
17
|
+
class IndexDataType(_builtins.str, Enum):
|
|
18
|
+
"""
|
|
19
|
+
The data type of the vectors to be inserted into the vector index.
|
|
20
|
+
"""
|
|
21
|
+
FLOAT32 = "float32"
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
@pulumi.type_token("aws-native:s3vectors:IndexDistanceMetric")
|
|
25
|
+
class IndexDistanceMetric(_builtins.str, Enum):
|
|
26
|
+
"""
|
|
27
|
+
The distance metric to be used for similarity search.
|
|
28
|
+
"""
|
|
29
|
+
COSINE = "cosine"
|
|
30
|
+
EUCLIDEAN = "euclidean"
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
@pulumi.type_token("aws-native:s3vectors:VectorBucketEncryptionConfigurationSseType")
|
|
34
|
+
class VectorBucketEncryptionConfigurationSseType(_builtins.str, Enum):
|
|
35
|
+
"""
|
|
36
|
+
The server-side encryption type to use for the encryption configuration of the vector bucket. By default, if you don't specify, all new vectors in Amazon S3 vector buckets use server-side encryption with Amazon S3 managed keys (SSE-S3), specifically AES256.
|
|
37
|
+
"""
|
|
38
|
+
AES256 = "AES256"
|
|
39
|
+
AWSKMS = "aws:kms"
|
|
@@ -0,0 +1,138 @@
|
|
|
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 ._enums import *
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'IndexMetadataConfigurationArgs',
|
|
20
|
+
'IndexMetadataConfigurationArgsDict',
|
|
21
|
+
'VectorBucketEncryptionConfigurationArgs',
|
|
22
|
+
'VectorBucketEncryptionConfigurationArgsDict',
|
|
23
|
+
'VectorBucketPolicyPolicyArgs',
|
|
24
|
+
'VectorBucketPolicyPolicyArgsDict',
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
MYPY = False
|
|
28
|
+
|
|
29
|
+
if not MYPY:
|
|
30
|
+
class IndexMetadataConfigurationArgsDict(TypedDict):
|
|
31
|
+
"""
|
|
32
|
+
The metadata configuration for the vector index.
|
|
33
|
+
"""
|
|
34
|
+
non_filterable_metadata_keys: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
35
|
+
"""
|
|
36
|
+
Non-filterable metadata keys allow you to enrich vectors with additional context during storage and retrieval. Unlike default metadata keys, these keys cannot be used as query filters. Non-filterable metadata keys can be retrieved but cannot be searched, queried, or filtered. You can access non-filterable metadata keys of your vectors after finding the vectors.
|
|
37
|
+
"""
|
|
38
|
+
elif False:
|
|
39
|
+
IndexMetadataConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
40
|
+
|
|
41
|
+
@pulumi.input_type
|
|
42
|
+
class IndexMetadataConfigurationArgs:
|
|
43
|
+
def __init__(__self__, *,
|
|
44
|
+
non_filterable_metadata_keys: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
45
|
+
"""
|
|
46
|
+
The metadata configuration for the vector index.
|
|
47
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] non_filterable_metadata_keys: Non-filterable metadata keys allow you to enrich vectors with additional context during storage and retrieval. Unlike default metadata keys, these keys cannot be used as query filters. Non-filterable metadata keys can be retrieved but cannot be searched, queried, or filtered. You can access non-filterable metadata keys of your vectors after finding the vectors.
|
|
48
|
+
"""
|
|
49
|
+
if non_filterable_metadata_keys is not None:
|
|
50
|
+
pulumi.set(__self__, "non_filterable_metadata_keys", non_filterable_metadata_keys)
|
|
51
|
+
|
|
52
|
+
@_builtins.property
|
|
53
|
+
@pulumi.getter(name="nonFilterableMetadataKeys")
|
|
54
|
+
def non_filterable_metadata_keys(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
55
|
+
"""
|
|
56
|
+
Non-filterable metadata keys allow you to enrich vectors with additional context during storage and retrieval. Unlike default metadata keys, these keys cannot be used as query filters. Non-filterable metadata keys can be retrieved but cannot be searched, queried, or filtered. You can access non-filterable metadata keys of your vectors after finding the vectors.
|
|
57
|
+
"""
|
|
58
|
+
return pulumi.get(self, "non_filterable_metadata_keys")
|
|
59
|
+
|
|
60
|
+
@non_filterable_metadata_keys.setter
|
|
61
|
+
def non_filterable_metadata_keys(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
62
|
+
pulumi.set(self, "non_filterable_metadata_keys", value)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
if not MYPY:
|
|
66
|
+
class VectorBucketEncryptionConfigurationArgsDict(TypedDict):
|
|
67
|
+
"""
|
|
68
|
+
The encryption configuration for the vector bucket.
|
|
69
|
+
"""
|
|
70
|
+
kms_key_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
71
|
+
"""
|
|
72
|
+
AWS Key Management Service (KMS) customer managed key ID to use for the encryption configuration. This parameter is allowed if and only if sseType is set to aws:kms
|
|
73
|
+
"""
|
|
74
|
+
sse_type: NotRequired[pulumi.Input['VectorBucketEncryptionConfigurationSseType']]
|
|
75
|
+
"""
|
|
76
|
+
The server-side encryption type to use for the encryption configuration of the vector bucket. By default, if you don't specify, all new vectors in Amazon S3 vector buckets use server-side encryption with Amazon S3 managed keys (SSE-S3), specifically AES256.
|
|
77
|
+
"""
|
|
78
|
+
elif False:
|
|
79
|
+
VectorBucketEncryptionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
80
|
+
|
|
81
|
+
@pulumi.input_type
|
|
82
|
+
class VectorBucketEncryptionConfigurationArgs:
|
|
83
|
+
def __init__(__self__, *,
|
|
84
|
+
kms_key_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
85
|
+
sse_type: Optional[pulumi.Input['VectorBucketEncryptionConfigurationSseType']] = None):
|
|
86
|
+
"""
|
|
87
|
+
The encryption configuration for the vector bucket.
|
|
88
|
+
:param pulumi.Input[_builtins.str] kms_key_arn: AWS Key Management Service (KMS) customer managed key ID to use for the encryption configuration. This parameter is allowed if and only if sseType is set to aws:kms
|
|
89
|
+
:param pulumi.Input['VectorBucketEncryptionConfigurationSseType'] sse_type: The server-side encryption type to use for the encryption configuration of the vector bucket. By default, if you don't specify, all new vectors in Amazon S3 vector buckets use server-side encryption with Amazon S3 managed keys (SSE-S3), specifically AES256.
|
|
90
|
+
"""
|
|
91
|
+
if kms_key_arn is not None:
|
|
92
|
+
pulumi.set(__self__, "kms_key_arn", kms_key_arn)
|
|
93
|
+
if sse_type is not None:
|
|
94
|
+
pulumi.set(__self__, "sse_type", sse_type)
|
|
95
|
+
|
|
96
|
+
@_builtins.property
|
|
97
|
+
@pulumi.getter(name="kmsKeyArn")
|
|
98
|
+
def kms_key_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
99
|
+
"""
|
|
100
|
+
AWS Key Management Service (KMS) customer managed key ID to use for the encryption configuration. This parameter is allowed if and only if sseType is set to aws:kms
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "kms_key_arn")
|
|
103
|
+
|
|
104
|
+
@kms_key_arn.setter
|
|
105
|
+
def kms_key_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
106
|
+
pulumi.set(self, "kms_key_arn", value)
|
|
107
|
+
|
|
108
|
+
@_builtins.property
|
|
109
|
+
@pulumi.getter(name="sseType")
|
|
110
|
+
def sse_type(self) -> Optional[pulumi.Input['VectorBucketEncryptionConfigurationSseType']]:
|
|
111
|
+
"""
|
|
112
|
+
The server-side encryption type to use for the encryption configuration of the vector bucket. By default, if you don't specify, all new vectors in Amazon S3 vector buckets use server-side encryption with Amazon S3 managed keys (SSE-S3), specifically AES256.
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "sse_type")
|
|
115
|
+
|
|
116
|
+
@sse_type.setter
|
|
117
|
+
def sse_type(self, value: Optional[pulumi.Input['VectorBucketEncryptionConfigurationSseType']]):
|
|
118
|
+
pulumi.set(self, "sse_type", value)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
if not MYPY:
|
|
122
|
+
class VectorBucketPolicyPolicyArgsDict(TypedDict):
|
|
123
|
+
"""
|
|
124
|
+
A policy document containing permissions to add to the specified vector bucket. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
|
|
125
|
+
"""
|
|
126
|
+
pass
|
|
127
|
+
elif False:
|
|
128
|
+
VectorBucketPolicyPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
|
129
|
+
|
|
130
|
+
@pulumi.input_type
|
|
131
|
+
class VectorBucketPolicyPolicyArgs:
|
|
132
|
+
def __init__(__self__):
|
|
133
|
+
"""
|
|
134
|
+
A policy document containing permissions to add to the specified vector bucket. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
|
|
135
|
+
"""
|
|
136
|
+
pass
|
|
137
|
+
|
|
138
|
+
|
|
@@ -0,0 +1,99 @@
|
|
|
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
|
+
'GetIndexResult',
|
|
19
|
+
'AwaitableGetIndexResult',
|
|
20
|
+
'get_index',
|
|
21
|
+
'get_index_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetIndexResult:
|
|
26
|
+
def __init__(__self__, creation_time=None, index_arn=None):
|
|
27
|
+
if creation_time and not isinstance(creation_time, str):
|
|
28
|
+
raise TypeError("Expected argument 'creation_time' to be a str")
|
|
29
|
+
pulumi.set(__self__, "creation_time", creation_time)
|
|
30
|
+
if index_arn and not isinstance(index_arn, str):
|
|
31
|
+
raise TypeError("Expected argument 'index_arn' to be a str")
|
|
32
|
+
pulumi.set(__self__, "index_arn", index_arn)
|
|
33
|
+
|
|
34
|
+
@_builtins.property
|
|
35
|
+
@pulumi.getter(name="creationTime")
|
|
36
|
+
def creation_time(self) -> Optional[_builtins.str]:
|
|
37
|
+
"""
|
|
38
|
+
Returns the date and time when the vector index was created.
|
|
39
|
+
|
|
40
|
+
Example: `2024-12-21T10:30:00Z`
|
|
41
|
+
"""
|
|
42
|
+
return pulumi.get(self, "creation_time")
|
|
43
|
+
|
|
44
|
+
@_builtins.property
|
|
45
|
+
@pulumi.getter(name="indexArn")
|
|
46
|
+
def index_arn(self) -> Optional[_builtins.str]:
|
|
47
|
+
"""
|
|
48
|
+
Returns the Amazon Resource Name (ARN) of the specified index.
|
|
49
|
+
|
|
50
|
+
Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket/index/my-index`
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "index_arn")
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
class AwaitableGetIndexResult(GetIndexResult):
|
|
56
|
+
# pylint: disable=using-constant-test
|
|
57
|
+
def __await__(self):
|
|
58
|
+
if False:
|
|
59
|
+
yield self
|
|
60
|
+
return GetIndexResult(
|
|
61
|
+
creation_time=self.creation_time,
|
|
62
|
+
index_arn=self.index_arn)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def get_index(index_arn: Optional[_builtins.str] = None,
|
|
66
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIndexResult:
|
|
67
|
+
"""
|
|
68
|
+
Resource Type definition for AWS::S3Vectors::Index
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
:param _builtins.str index_arn: Returns the Amazon Resource Name (ARN) of the specified index.
|
|
72
|
+
|
|
73
|
+
Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket/index/my-index`
|
|
74
|
+
"""
|
|
75
|
+
__args__ = dict()
|
|
76
|
+
__args__['indexArn'] = index_arn
|
|
77
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
78
|
+
__ret__ = pulumi.runtime.invoke('aws-native:s3vectors:getIndex', __args__, opts=opts, typ=GetIndexResult).value
|
|
79
|
+
|
|
80
|
+
return AwaitableGetIndexResult(
|
|
81
|
+
creation_time=pulumi.get(__ret__, 'creation_time'),
|
|
82
|
+
index_arn=pulumi.get(__ret__, 'index_arn'))
|
|
83
|
+
def get_index_output(index_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
84
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIndexResult]:
|
|
85
|
+
"""
|
|
86
|
+
Resource Type definition for AWS::S3Vectors::Index
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
:param _builtins.str index_arn: Returns the Amazon Resource Name (ARN) of the specified index.
|
|
90
|
+
|
|
91
|
+
Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket/index/my-index`
|
|
92
|
+
"""
|
|
93
|
+
__args__ = dict()
|
|
94
|
+
__args__['indexArn'] = index_arn
|
|
95
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
96
|
+
__ret__ = pulumi.runtime.invoke_output('aws-native:s3vectors:getIndex', __args__, opts=opts, typ=GetIndexResult)
|
|
97
|
+
return __ret__.apply(lambda __response__: GetIndexResult(
|
|
98
|
+
creation_time=pulumi.get(__response__, 'creation_time'),
|
|
99
|
+
index_arn=pulumi.get(__response__, 'index_arn')))
|