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
pulumi_aws/opensearch/_inputs.py
CHANGED
|
@@ -51,6 +51,8 @@ __all__ = [
|
|
|
51
51
|
'DomainEbsOptionsArgsDict',
|
|
52
52
|
'DomainEncryptAtRestArgs',
|
|
53
53
|
'DomainEncryptAtRestArgsDict',
|
|
54
|
+
'DomainIdentityCenterOptionsArgs',
|
|
55
|
+
'DomainIdentityCenterOptionsArgsDict',
|
|
54
56
|
'DomainLogPublishingOptionArgs',
|
|
55
57
|
'DomainLogPublishingOptionArgsDict',
|
|
56
58
|
'DomainNodeToNodeEncryptionArgs',
|
|
@@ -89,12 +91,6 @@ __all__ = [
|
|
|
89
91
|
'ServerlessVpcEndpointTimeoutsArgsDict',
|
|
90
92
|
'VpcEndpointVpcOptionsArgs',
|
|
91
93
|
'VpcEndpointVpcOptionsArgsDict',
|
|
92
|
-
'GetDomainOffPeakWindowOptionsArgs',
|
|
93
|
-
'GetDomainOffPeakWindowOptionsArgsDict',
|
|
94
|
-
'GetDomainOffPeakWindowOptionsOffPeakWindowArgs',
|
|
95
|
-
'GetDomainOffPeakWindowOptionsOffPeakWindowArgsDict',
|
|
96
|
-
'GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgs',
|
|
97
|
-
'GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgsDict',
|
|
98
94
|
'GetServerlessSecurityConfigSamlOptionArgs',
|
|
99
95
|
'GetServerlessSecurityConfigSamlOptionArgsDict',
|
|
100
96
|
]
|
|
@@ -317,7 +313,13 @@ class DomainAdvancedSecurityOptionsMasterUserOptionsArgs:
|
|
|
317
313
|
if not MYPY:
|
|
318
314
|
class DomainAimlOptionsArgsDict(TypedDict):
|
|
319
315
|
natural_language_query_generation_options: NotRequired[pulumi.Input['DomainAimlOptionsNaturalLanguageQueryGenerationOptionsArgsDict']]
|
|
316
|
+
"""
|
|
317
|
+
Configuration block for parameters required for natural language query generation on the specified domain.
|
|
318
|
+
"""
|
|
320
319
|
s3_vectors_engine: NotRequired[pulumi.Input['DomainAimlOptionsS3VectorsEngineArgsDict']]
|
|
320
|
+
"""
|
|
321
|
+
Configuration block for parameters required to enable S3 vectors engine features on the specified domain.
|
|
322
|
+
"""
|
|
321
323
|
elif False:
|
|
322
324
|
DomainAimlOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
323
325
|
|
|
@@ -326,6 +328,10 @@ class DomainAimlOptionsArgs:
|
|
|
326
328
|
def __init__(__self__, *,
|
|
327
329
|
natural_language_query_generation_options: Optional[pulumi.Input['DomainAimlOptionsNaturalLanguageQueryGenerationOptionsArgs']] = None,
|
|
328
330
|
s3_vectors_engine: Optional[pulumi.Input['DomainAimlOptionsS3VectorsEngineArgs']] = None):
|
|
331
|
+
"""
|
|
332
|
+
:param pulumi.Input['DomainAimlOptionsNaturalLanguageQueryGenerationOptionsArgs'] natural_language_query_generation_options: Configuration block for parameters required for natural language query generation on the specified domain.
|
|
333
|
+
:param pulumi.Input['DomainAimlOptionsS3VectorsEngineArgs'] s3_vectors_engine: Configuration block for parameters required to enable S3 vectors engine features on the specified domain.
|
|
334
|
+
"""
|
|
329
335
|
if natural_language_query_generation_options is not None:
|
|
330
336
|
pulumi.set(__self__, "natural_language_query_generation_options", natural_language_query_generation_options)
|
|
331
337
|
if s3_vectors_engine is not None:
|
|
@@ -334,6 +340,9 @@ class DomainAimlOptionsArgs:
|
|
|
334
340
|
@_builtins.property
|
|
335
341
|
@pulumi.getter(name="naturalLanguageQueryGenerationOptions")
|
|
336
342
|
def natural_language_query_generation_options(self) -> Optional[pulumi.Input['DomainAimlOptionsNaturalLanguageQueryGenerationOptionsArgs']]:
|
|
343
|
+
"""
|
|
344
|
+
Configuration block for parameters required for natural language query generation on the specified domain.
|
|
345
|
+
"""
|
|
337
346
|
return pulumi.get(self, "natural_language_query_generation_options")
|
|
338
347
|
|
|
339
348
|
@natural_language_query_generation_options.setter
|
|
@@ -343,6 +352,9 @@ class DomainAimlOptionsArgs:
|
|
|
343
352
|
@_builtins.property
|
|
344
353
|
@pulumi.getter(name="s3VectorsEngine")
|
|
345
354
|
def s3_vectors_engine(self) -> Optional[pulumi.Input['DomainAimlOptionsS3VectorsEngineArgs']]:
|
|
355
|
+
"""
|
|
356
|
+
Configuration block for parameters required to enable S3 vectors engine features on the specified domain.
|
|
357
|
+
"""
|
|
346
358
|
return pulumi.get(self, "s3_vectors_engine")
|
|
347
359
|
|
|
348
360
|
@s3_vectors_engine.setter
|
|
@@ -354,7 +366,7 @@ if not MYPY:
|
|
|
354
366
|
class DomainAimlOptionsNaturalLanguageQueryGenerationOptionsArgsDict(TypedDict):
|
|
355
367
|
desired_state: NotRequired[pulumi.Input[_builtins.str]]
|
|
356
368
|
"""
|
|
357
|
-
|
|
369
|
+
The desired state of the natural language query generation feature. Valid values are `ENABLED` and `DISABLED`.
|
|
358
370
|
"""
|
|
359
371
|
elif False:
|
|
360
372
|
DomainAimlOptionsNaturalLanguageQueryGenerationOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -364,7 +376,7 @@ class DomainAimlOptionsNaturalLanguageQueryGenerationOptionsArgs:
|
|
|
364
376
|
def __init__(__self__, *,
|
|
365
377
|
desired_state: Optional[pulumi.Input[_builtins.str]] = None):
|
|
366
378
|
"""
|
|
367
|
-
:param pulumi.Input[_builtins.str] desired_state:
|
|
379
|
+
:param pulumi.Input[_builtins.str] desired_state: The desired state of the natural language query generation feature. Valid values are `ENABLED` and `DISABLED`.
|
|
368
380
|
"""
|
|
369
381
|
if desired_state is not None:
|
|
370
382
|
pulumi.set(__self__, "desired_state", desired_state)
|
|
@@ -373,7 +385,7 @@ class DomainAimlOptionsNaturalLanguageQueryGenerationOptionsArgs:
|
|
|
373
385
|
@pulumi.getter(name="desiredState")
|
|
374
386
|
def desired_state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
375
387
|
"""
|
|
376
|
-
|
|
388
|
+
The desired state of the natural language query generation feature. Valid values are `ENABLED` and `DISABLED`.
|
|
377
389
|
"""
|
|
378
390
|
return pulumi.get(self, "desired_state")
|
|
379
391
|
|
|
@@ -385,6 +397,9 @@ class DomainAimlOptionsNaturalLanguageQueryGenerationOptionsArgs:
|
|
|
385
397
|
if not MYPY:
|
|
386
398
|
class DomainAimlOptionsS3VectorsEngineArgsDict(TypedDict):
|
|
387
399
|
enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
400
|
+
"""
|
|
401
|
+
Enables S3 vectors engine features.
|
|
402
|
+
"""
|
|
388
403
|
elif False:
|
|
389
404
|
DomainAimlOptionsS3VectorsEngineArgsDict: TypeAlias = Mapping[str, Any]
|
|
390
405
|
|
|
@@ -392,12 +407,18 @@ elif False:
|
|
|
392
407
|
class DomainAimlOptionsS3VectorsEngineArgs:
|
|
393
408
|
def __init__(__self__, *,
|
|
394
409
|
enabled: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
410
|
+
"""
|
|
411
|
+
:param pulumi.Input[_builtins.bool] enabled: Enables S3 vectors engine features.
|
|
412
|
+
"""
|
|
395
413
|
if enabled is not None:
|
|
396
414
|
pulumi.set(__self__, "enabled", enabled)
|
|
397
415
|
|
|
398
416
|
@_builtins.property
|
|
399
417
|
@pulumi.getter
|
|
400
418
|
def enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
419
|
+
"""
|
|
420
|
+
Enables S3 vectors engine features.
|
|
421
|
+
"""
|
|
401
422
|
return pulumi.get(self, "enabled")
|
|
402
423
|
|
|
403
424
|
@enabled.setter
|
|
@@ -1444,6 +1465,68 @@ class DomainEncryptAtRestArgs:
|
|
|
1444
1465
|
pulumi.set(self, "kms_key_id", value)
|
|
1445
1466
|
|
|
1446
1467
|
|
|
1468
|
+
if not MYPY:
|
|
1469
|
+
class DomainIdentityCenterOptionsArgsDict(TypedDict):
|
|
1470
|
+
enabled_api_access: NotRequired[pulumi.Input[_builtins.bool]]
|
|
1471
|
+
identity_center_instance_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
1472
|
+
roles_key: NotRequired[pulumi.Input[_builtins.str]]
|
|
1473
|
+
subject_key: NotRequired[pulumi.Input[_builtins.str]]
|
|
1474
|
+
elif False:
|
|
1475
|
+
DomainIdentityCenterOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
1476
|
+
|
|
1477
|
+
@pulumi.input_type
|
|
1478
|
+
class DomainIdentityCenterOptionsArgs:
|
|
1479
|
+
def __init__(__self__, *,
|
|
1480
|
+
enabled_api_access: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1481
|
+
identity_center_instance_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1482
|
+
roles_key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1483
|
+
subject_key: Optional[pulumi.Input[_builtins.str]] = None):
|
|
1484
|
+
if enabled_api_access is not None:
|
|
1485
|
+
pulumi.set(__self__, "enabled_api_access", enabled_api_access)
|
|
1486
|
+
if identity_center_instance_arn is not None:
|
|
1487
|
+
pulumi.set(__self__, "identity_center_instance_arn", identity_center_instance_arn)
|
|
1488
|
+
if roles_key is not None:
|
|
1489
|
+
pulumi.set(__self__, "roles_key", roles_key)
|
|
1490
|
+
if subject_key is not None:
|
|
1491
|
+
pulumi.set(__self__, "subject_key", subject_key)
|
|
1492
|
+
|
|
1493
|
+
@_builtins.property
|
|
1494
|
+
@pulumi.getter(name="enabledApiAccess")
|
|
1495
|
+
def enabled_api_access(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
1496
|
+
return pulumi.get(self, "enabled_api_access")
|
|
1497
|
+
|
|
1498
|
+
@enabled_api_access.setter
|
|
1499
|
+
def enabled_api_access(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
1500
|
+
pulumi.set(self, "enabled_api_access", value)
|
|
1501
|
+
|
|
1502
|
+
@_builtins.property
|
|
1503
|
+
@pulumi.getter(name="identityCenterInstanceArn")
|
|
1504
|
+
def identity_center_instance_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1505
|
+
return pulumi.get(self, "identity_center_instance_arn")
|
|
1506
|
+
|
|
1507
|
+
@identity_center_instance_arn.setter
|
|
1508
|
+
def identity_center_instance_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1509
|
+
pulumi.set(self, "identity_center_instance_arn", value)
|
|
1510
|
+
|
|
1511
|
+
@_builtins.property
|
|
1512
|
+
@pulumi.getter(name="rolesKey")
|
|
1513
|
+
def roles_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1514
|
+
return pulumi.get(self, "roles_key")
|
|
1515
|
+
|
|
1516
|
+
@roles_key.setter
|
|
1517
|
+
def roles_key(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1518
|
+
pulumi.set(self, "roles_key", value)
|
|
1519
|
+
|
|
1520
|
+
@_builtins.property
|
|
1521
|
+
@pulumi.getter(name="subjectKey")
|
|
1522
|
+
def subject_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1523
|
+
return pulumi.get(self, "subject_key")
|
|
1524
|
+
|
|
1525
|
+
@subject_key.setter
|
|
1526
|
+
def subject_key(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1527
|
+
pulumi.set(self, "subject_key", value)
|
|
1528
|
+
|
|
1529
|
+
|
|
1447
1530
|
if not MYPY:
|
|
1448
1531
|
class DomainLogPublishingOptionArgsDict(TypedDict):
|
|
1449
1532
|
cloudwatch_log_group_arn: pulumi.Input[_builtins.str]
|
|
@@ -2595,130 +2678,6 @@ class VpcEndpointVpcOptionsArgs:
|
|
|
2595
2678
|
pulumi.set(self, "vpc_id", value)
|
|
2596
2679
|
|
|
2597
2680
|
|
|
2598
|
-
if not MYPY:
|
|
2599
|
-
class GetDomainOffPeakWindowOptionsArgsDict(TypedDict):
|
|
2600
|
-
enabled: _builtins.bool
|
|
2601
|
-
"""
|
|
2602
|
-
Enabled disabled toggle for off-peak update window
|
|
2603
|
-
"""
|
|
2604
|
-
off_peak_windows: Sequence['GetDomainOffPeakWindowOptionsOffPeakWindowArgsDict']
|
|
2605
|
-
elif False:
|
|
2606
|
-
GetDomainOffPeakWindowOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
|
2607
|
-
|
|
2608
|
-
@pulumi.input_type
|
|
2609
|
-
class GetDomainOffPeakWindowOptionsArgs:
|
|
2610
|
-
def __init__(__self__, *,
|
|
2611
|
-
enabled: _builtins.bool,
|
|
2612
|
-
off_peak_windows: Sequence['GetDomainOffPeakWindowOptionsOffPeakWindowArgs']):
|
|
2613
|
-
"""
|
|
2614
|
-
:param _builtins.bool enabled: Enabled disabled toggle for off-peak update window
|
|
2615
|
-
"""
|
|
2616
|
-
pulumi.set(__self__, "enabled", enabled)
|
|
2617
|
-
pulumi.set(__self__, "off_peak_windows", off_peak_windows)
|
|
2618
|
-
|
|
2619
|
-
@_builtins.property
|
|
2620
|
-
@pulumi.getter
|
|
2621
|
-
def enabled(self) -> _builtins.bool:
|
|
2622
|
-
"""
|
|
2623
|
-
Enabled disabled toggle for off-peak update window
|
|
2624
|
-
"""
|
|
2625
|
-
return pulumi.get(self, "enabled")
|
|
2626
|
-
|
|
2627
|
-
@enabled.setter
|
|
2628
|
-
def enabled(self, value: _builtins.bool):
|
|
2629
|
-
pulumi.set(self, "enabled", value)
|
|
2630
|
-
|
|
2631
|
-
@_builtins.property
|
|
2632
|
-
@pulumi.getter(name="offPeakWindows")
|
|
2633
|
-
def off_peak_windows(self) -> Sequence['GetDomainOffPeakWindowOptionsOffPeakWindowArgs']:
|
|
2634
|
-
return pulumi.get(self, "off_peak_windows")
|
|
2635
|
-
|
|
2636
|
-
@off_peak_windows.setter
|
|
2637
|
-
def off_peak_windows(self, value: Sequence['GetDomainOffPeakWindowOptionsOffPeakWindowArgs']):
|
|
2638
|
-
pulumi.set(self, "off_peak_windows", value)
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
if not MYPY:
|
|
2642
|
-
class GetDomainOffPeakWindowOptionsOffPeakWindowArgsDict(TypedDict):
|
|
2643
|
-
window_start_times: Sequence['GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgsDict']
|
|
2644
|
-
"""
|
|
2645
|
-
10h window for updates
|
|
2646
|
-
"""
|
|
2647
|
-
elif False:
|
|
2648
|
-
GetDomainOffPeakWindowOptionsOffPeakWindowArgsDict: TypeAlias = Mapping[str, Any]
|
|
2649
|
-
|
|
2650
|
-
@pulumi.input_type
|
|
2651
|
-
class GetDomainOffPeakWindowOptionsOffPeakWindowArgs:
|
|
2652
|
-
def __init__(__self__, *,
|
|
2653
|
-
window_start_times: Sequence['GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgs']):
|
|
2654
|
-
"""
|
|
2655
|
-
:param Sequence['GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgs'] window_start_times: 10h window for updates
|
|
2656
|
-
"""
|
|
2657
|
-
pulumi.set(__self__, "window_start_times", window_start_times)
|
|
2658
|
-
|
|
2659
|
-
@_builtins.property
|
|
2660
|
-
@pulumi.getter(name="windowStartTimes")
|
|
2661
|
-
def window_start_times(self) -> Sequence['GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgs']:
|
|
2662
|
-
"""
|
|
2663
|
-
10h window for updates
|
|
2664
|
-
"""
|
|
2665
|
-
return pulumi.get(self, "window_start_times")
|
|
2666
|
-
|
|
2667
|
-
@window_start_times.setter
|
|
2668
|
-
def window_start_times(self, value: Sequence['GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgs']):
|
|
2669
|
-
pulumi.set(self, "window_start_times", value)
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
if not MYPY:
|
|
2673
|
-
class GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgsDict(TypedDict):
|
|
2674
|
-
hours: _builtins.int
|
|
2675
|
-
"""
|
|
2676
|
-
Starting hour of the 10-hour window for updates
|
|
2677
|
-
"""
|
|
2678
|
-
minutes: _builtins.int
|
|
2679
|
-
"""
|
|
2680
|
-
Starting minute of the 10-hour window for updates
|
|
2681
|
-
"""
|
|
2682
|
-
elif False:
|
|
2683
|
-
GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgsDict: TypeAlias = Mapping[str, Any]
|
|
2684
|
-
|
|
2685
|
-
@pulumi.input_type
|
|
2686
|
-
class GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgs:
|
|
2687
|
-
def __init__(__self__, *,
|
|
2688
|
-
hours: _builtins.int,
|
|
2689
|
-
minutes: _builtins.int):
|
|
2690
|
-
"""
|
|
2691
|
-
:param _builtins.int hours: Starting hour of the 10-hour window for updates
|
|
2692
|
-
:param _builtins.int minutes: Starting minute of the 10-hour window for updates
|
|
2693
|
-
"""
|
|
2694
|
-
pulumi.set(__self__, "hours", hours)
|
|
2695
|
-
pulumi.set(__self__, "minutes", minutes)
|
|
2696
|
-
|
|
2697
|
-
@_builtins.property
|
|
2698
|
-
@pulumi.getter
|
|
2699
|
-
def hours(self) -> _builtins.int:
|
|
2700
|
-
"""
|
|
2701
|
-
Starting hour of the 10-hour window for updates
|
|
2702
|
-
"""
|
|
2703
|
-
return pulumi.get(self, "hours")
|
|
2704
|
-
|
|
2705
|
-
@hours.setter
|
|
2706
|
-
def hours(self, value: _builtins.int):
|
|
2707
|
-
pulumi.set(self, "hours", value)
|
|
2708
|
-
|
|
2709
|
-
@_builtins.property
|
|
2710
|
-
@pulumi.getter
|
|
2711
|
-
def minutes(self) -> _builtins.int:
|
|
2712
|
-
"""
|
|
2713
|
-
Starting minute of the 10-hour window for updates
|
|
2714
|
-
"""
|
|
2715
|
-
return pulumi.get(self, "minutes")
|
|
2716
|
-
|
|
2717
|
-
@minutes.setter
|
|
2718
|
-
def minutes(self, value: _builtins.int):
|
|
2719
|
-
pulumi.set(self, "minutes", value)
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
2681
|
if not MYPY:
|
|
2723
2682
|
class GetServerlessSecurityConfigSamlOptionArgsDict(TypedDict):
|
|
2724
2683
|
group_attribute: _builtins.str
|
|
@@ -173,10 +173,10 @@ class AuthorizeVpcEndpointAccess(pulumi.CustomResource):
|
|
|
173
173
|
|
|
174
174
|
## Import
|
|
175
175
|
|
|
176
|
-
Using `pulumi import`, import OpenSearch Authorize Vpc Endpoint Access using the `domain_name
|
|
176
|
+
Using `pulumi import`, import OpenSearch Authorize Vpc Endpoint Access using the `domain_name` and `account` separated by a comma (,). For example:
|
|
177
177
|
|
|
178
178
|
```sh
|
|
179
|
-
$ pulumi import aws:opensearch/authorizeVpcEndpointAccess:AuthorizeVpcEndpointAccess example authorize_vpc_endpoint_access-id-12345678
|
|
179
|
+
$ pulumi import aws:opensearch/authorizeVpcEndpointAccess:AuthorizeVpcEndpointAccess example authorize_vpc_endpoint_access-id-12345678,123456789012
|
|
180
180
|
```
|
|
181
181
|
|
|
182
182
|
:param str resource_name: The name of the resource.
|
|
@@ -210,10 +210,10 @@ class AuthorizeVpcEndpointAccess(pulumi.CustomResource):
|
|
|
210
210
|
|
|
211
211
|
## Import
|
|
212
212
|
|
|
213
|
-
Using `pulumi import`, import OpenSearch Authorize Vpc Endpoint Access using the `domain_name
|
|
213
|
+
Using `pulumi import`, import OpenSearch Authorize Vpc Endpoint Access using the `domain_name` and `account` separated by a comma (,). For example:
|
|
214
214
|
|
|
215
215
|
```sh
|
|
216
|
-
$ pulumi import aws:opensearch/authorizeVpcEndpointAccess:AuthorizeVpcEndpointAccess example authorize_vpc_endpoint_access-id-12345678
|
|
216
|
+
$ pulumi import aws:opensearch/authorizeVpcEndpointAccess:AuthorizeVpcEndpointAccess example authorize_vpc_endpoint_access-id-12345678,123456789012
|
|
217
217
|
```
|
|
218
218
|
|
|
219
219
|
:param str resource_name: The name of the resource.
|
pulumi_aws/opensearch/domain.py
CHANGED
|
@@ -33,6 +33,7 @@ class DomainArgs:
|
|
|
33
33
|
ebs_options: Optional[pulumi.Input['DomainEbsOptionsArgs']] = None,
|
|
34
34
|
encrypt_at_rest: Optional[pulumi.Input['DomainEncryptAtRestArgs']] = None,
|
|
35
35
|
engine_version: Optional[pulumi.Input[_builtins.str]] = None,
|
|
36
|
+
identity_center_options: Optional[pulumi.Input['DomainIdentityCenterOptionsArgs']] = None,
|
|
36
37
|
ip_address_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
37
38
|
log_publishing_options: Optional[pulumi.Input[Sequence[pulumi.Input['DomainLogPublishingOptionArgs']]]] = None,
|
|
38
39
|
node_to_node_encryption: Optional[pulumi.Input['DomainNodeToNodeEncryptionArgs']] = None,
|
|
@@ -47,6 +48,7 @@ class DomainArgs:
|
|
|
47
48
|
:param pulumi.Input[_builtins.str] access_policies: IAM policy document specifying the access policies for the domain.
|
|
48
49
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] advanced_options: Key-value string pairs to specify advanced configuration options. Note that the values for these configuration options must be strings (wrapped in quotes) or they may be wrong and cause a perpetual diff, causing the provider to want to recreate your OpenSearch domain on every apply.
|
|
49
50
|
:param pulumi.Input['DomainAdvancedSecurityOptionsArgs'] advanced_security_options: Configuration block for [fine-grained access control](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html). Detailed below.
|
|
51
|
+
:param pulumi.Input['DomainAimlOptionsArgs'] aiml_options: Configuration block for parameters required to enable all machine learning features. Detailed below.
|
|
50
52
|
:param pulumi.Input['DomainAutoTuneOptionsArgs'] auto_tune_options: Configuration block for the Auto-Tune options of the domain. Detailed below.
|
|
51
53
|
:param pulumi.Input['DomainClusterConfigArgs'] cluster_config: Configuration block for the cluster of the domain. Detailed below.
|
|
52
54
|
:param pulumi.Input['DomainCognitoOptionsArgs'] cognito_options: Configuration block for authenticating dashboard with Cognito. Detailed below.
|
|
@@ -59,6 +61,7 @@ class DomainArgs:
|
|
|
59
61
|
:param pulumi.Input[_builtins.str] engine_version: Either `Elasticsearch_X.Y` or `OpenSearch_X.Y` to specify the engine version for the Amazon OpenSearch Service domain. For example, `OpenSearch_1.0` or `Elasticsearch_7.9`.
|
|
60
62
|
See [Creating and managing Amazon OpenSearch Service domains](http://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains).
|
|
61
63
|
Defaults to the lastest version of OpenSearch.
|
|
64
|
+
:param pulumi.Input['DomainIdentityCenterOptionsArgs'] identity_center_options: Configuration block for enabling and managing IAM Identity Center integration within a domain. Detailed below.
|
|
62
65
|
:param pulumi.Input[_builtins.str] ip_address_type: The IP address type for the endpoint. Valid values are `ipv4` and `dualstack`.
|
|
63
66
|
:param pulumi.Input[Sequence[pulumi.Input['DomainLogPublishingOptionArgs']]] log_publishing_options: Configuration block for publishing slow and application logs to CloudWatch Logs. This block can be declared multiple times, for each log_type, within the same resource. Detailed below.
|
|
64
67
|
:param pulumi.Input['DomainNodeToNodeEncryptionArgs'] node_to_node_encryption: Configuration block for node-to-node encryption options. Detailed below.
|
|
@@ -93,6 +96,8 @@ class DomainArgs:
|
|
|
93
96
|
pulumi.set(__self__, "encrypt_at_rest", encrypt_at_rest)
|
|
94
97
|
if engine_version is not None:
|
|
95
98
|
pulumi.set(__self__, "engine_version", engine_version)
|
|
99
|
+
if identity_center_options is not None:
|
|
100
|
+
pulumi.set(__self__, "identity_center_options", identity_center_options)
|
|
96
101
|
if ip_address_type is not None:
|
|
97
102
|
pulumi.set(__self__, "ip_address_type", ip_address_type)
|
|
98
103
|
if log_publishing_options is not None:
|
|
@@ -151,6 +156,9 @@ class DomainArgs:
|
|
|
151
156
|
@_builtins.property
|
|
152
157
|
@pulumi.getter(name="aimlOptions")
|
|
153
158
|
def aiml_options(self) -> Optional[pulumi.Input['DomainAimlOptionsArgs']]:
|
|
159
|
+
"""
|
|
160
|
+
Configuration block for parameters required to enable all machine learning features. Detailed below.
|
|
161
|
+
"""
|
|
154
162
|
return pulumi.get(self, "aiml_options")
|
|
155
163
|
|
|
156
164
|
@aiml_options.setter
|
|
@@ -257,6 +265,18 @@ class DomainArgs:
|
|
|
257
265
|
def engine_version(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
258
266
|
pulumi.set(self, "engine_version", value)
|
|
259
267
|
|
|
268
|
+
@_builtins.property
|
|
269
|
+
@pulumi.getter(name="identityCenterOptions")
|
|
270
|
+
def identity_center_options(self) -> Optional[pulumi.Input['DomainIdentityCenterOptionsArgs']]:
|
|
271
|
+
"""
|
|
272
|
+
Configuration block for enabling and managing IAM Identity Center integration within a domain. Detailed below.
|
|
273
|
+
"""
|
|
274
|
+
return pulumi.get(self, "identity_center_options")
|
|
275
|
+
|
|
276
|
+
@identity_center_options.setter
|
|
277
|
+
def identity_center_options(self, value: Optional[pulumi.Input['DomainIdentityCenterOptionsArgs']]):
|
|
278
|
+
pulumi.set(self, "identity_center_options", value)
|
|
279
|
+
|
|
260
280
|
@_builtins.property
|
|
261
281
|
@pulumi.getter(name="ipAddressType")
|
|
262
282
|
def ip_address_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -388,6 +408,7 @@ class _DomainState:
|
|
|
388
408
|
endpoint: Optional[pulumi.Input[_builtins.str]] = None,
|
|
389
409
|
endpoint_v2: Optional[pulumi.Input[_builtins.str]] = None,
|
|
390
410
|
engine_version: Optional[pulumi.Input[_builtins.str]] = None,
|
|
411
|
+
identity_center_options: Optional[pulumi.Input['DomainIdentityCenterOptionsArgs']] = None,
|
|
391
412
|
ip_address_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
392
413
|
log_publishing_options: Optional[pulumi.Input[Sequence[pulumi.Input['DomainLogPublishingOptionArgs']]]] = None,
|
|
393
414
|
node_to_node_encryption: Optional[pulumi.Input['DomainNodeToNodeEncryptionArgs']] = None,
|
|
@@ -403,6 +424,7 @@ class _DomainState:
|
|
|
403
424
|
:param pulumi.Input[_builtins.str] access_policies: IAM policy document specifying the access policies for the domain.
|
|
404
425
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] advanced_options: Key-value string pairs to specify advanced configuration options. Note that the values for these configuration options must be strings (wrapped in quotes) or they may be wrong and cause a perpetual diff, causing the provider to want to recreate your OpenSearch domain on every apply.
|
|
405
426
|
:param pulumi.Input['DomainAdvancedSecurityOptionsArgs'] advanced_security_options: Configuration block for [fine-grained access control](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html). Detailed below.
|
|
427
|
+
:param pulumi.Input['DomainAimlOptionsArgs'] aiml_options: Configuration block for parameters required to enable all machine learning features. Detailed below.
|
|
406
428
|
:param pulumi.Input[_builtins.str] arn: ARN of the domain.
|
|
407
429
|
:param pulumi.Input['DomainAutoTuneOptionsArgs'] auto_tune_options: Configuration block for the Auto-Tune options of the domain. Detailed below.
|
|
408
430
|
:param pulumi.Input['DomainClusterConfigArgs'] cluster_config: Configuration block for the cluster of the domain. Detailed below.
|
|
@@ -422,6 +444,7 @@ class _DomainState:
|
|
|
422
444
|
:param pulumi.Input[_builtins.str] engine_version: Either `Elasticsearch_X.Y` or `OpenSearch_X.Y` to specify the engine version for the Amazon OpenSearch Service domain. For example, `OpenSearch_1.0` or `Elasticsearch_7.9`.
|
|
423
445
|
See [Creating and managing Amazon OpenSearch Service domains](http://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains).
|
|
424
446
|
Defaults to the lastest version of OpenSearch.
|
|
447
|
+
:param pulumi.Input['DomainIdentityCenterOptionsArgs'] identity_center_options: Configuration block for enabling and managing IAM Identity Center integration within a domain. Detailed below.
|
|
425
448
|
:param pulumi.Input[_builtins.str] ip_address_type: The IP address type for the endpoint. Valid values are `ipv4` and `dualstack`.
|
|
426
449
|
:param pulumi.Input[Sequence[pulumi.Input['DomainLogPublishingOptionArgs']]] log_publishing_options: Configuration block for publishing slow and application logs to CloudWatch Logs. This block can be declared multiple times, for each log_type, within the same resource. Detailed below.
|
|
427
450
|
:param pulumi.Input['DomainNodeToNodeEncryptionArgs'] node_to_node_encryption: Configuration block for node-to-node encryption options. Detailed below.
|
|
@@ -471,6 +494,8 @@ class _DomainState:
|
|
|
471
494
|
pulumi.set(__self__, "endpoint_v2", endpoint_v2)
|
|
472
495
|
if engine_version is not None:
|
|
473
496
|
pulumi.set(__self__, "engine_version", engine_version)
|
|
497
|
+
if identity_center_options is not None:
|
|
498
|
+
pulumi.set(__self__, "identity_center_options", identity_center_options)
|
|
474
499
|
if ip_address_type is not None:
|
|
475
500
|
pulumi.set(__self__, "ip_address_type", ip_address_type)
|
|
476
501
|
if log_publishing_options is not None:
|
|
@@ -531,6 +556,9 @@ class _DomainState:
|
|
|
531
556
|
@_builtins.property
|
|
532
557
|
@pulumi.getter(name="aimlOptions")
|
|
533
558
|
def aiml_options(self) -> Optional[pulumi.Input['DomainAimlOptionsArgs']]:
|
|
559
|
+
"""
|
|
560
|
+
Configuration block for parameters required to enable all machine learning features. Detailed below.
|
|
561
|
+
"""
|
|
534
562
|
return pulumi.get(self, "aiml_options")
|
|
535
563
|
|
|
536
564
|
@aiml_options.setter
|
|
@@ -721,6 +749,18 @@ class _DomainState:
|
|
|
721
749
|
def engine_version(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
722
750
|
pulumi.set(self, "engine_version", value)
|
|
723
751
|
|
|
752
|
+
@_builtins.property
|
|
753
|
+
@pulumi.getter(name="identityCenterOptions")
|
|
754
|
+
def identity_center_options(self) -> Optional[pulumi.Input['DomainIdentityCenterOptionsArgs']]:
|
|
755
|
+
"""
|
|
756
|
+
Configuration block for enabling and managing IAM Identity Center integration within a domain. Detailed below.
|
|
757
|
+
"""
|
|
758
|
+
return pulumi.get(self, "identity_center_options")
|
|
759
|
+
|
|
760
|
+
@identity_center_options.setter
|
|
761
|
+
def identity_center_options(self, value: Optional[pulumi.Input['DomainIdentityCenterOptionsArgs']]):
|
|
762
|
+
pulumi.set(self, "identity_center_options", value)
|
|
763
|
+
|
|
724
764
|
@_builtins.property
|
|
725
765
|
@pulumi.getter(name="ipAddressType")
|
|
726
766
|
def ip_address_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -860,6 +900,7 @@ class Domain(pulumi.CustomResource):
|
|
|
860
900
|
ebs_options: Optional[pulumi.Input[Union['DomainEbsOptionsArgs', 'DomainEbsOptionsArgsDict']]] = None,
|
|
861
901
|
encrypt_at_rest: Optional[pulumi.Input[Union['DomainEncryptAtRestArgs', 'DomainEncryptAtRestArgsDict']]] = None,
|
|
862
902
|
engine_version: Optional[pulumi.Input[_builtins.str]] = None,
|
|
903
|
+
identity_center_options: Optional[pulumi.Input[Union['DomainIdentityCenterOptionsArgs', 'DomainIdentityCenterOptionsArgsDict']]] = None,
|
|
863
904
|
ip_address_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
864
905
|
log_publishing_options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainLogPublishingOptionArgs', 'DomainLogPublishingOptionArgsDict']]]]] = None,
|
|
865
906
|
node_to_node_encryption: Optional[pulumi.Input[Union['DomainNodeToNodeEncryptionArgs', 'DomainNodeToNodeEncryptionArgsDict']]] = None,
|
|
@@ -1131,6 +1172,7 @@ class Domain(pulumi.CustomResource):
|
|
|
1131
1172
|
:param pulumi.Input[_builtins.str] access_policies: IAM policy document specifying the access policies for the domain.
|
|
1132
1173
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] advanced_options: Key-value string pairs to specify advanced configuration options. Note that the values for these configuration options must be strings (wrapped in quotes) or they may be wrong and cause a perpetual diff, causing the provider to want to recreate your OpenSearch domain on every apply.
|
|
1133
1174
|
:param pulumi.Input[Union['DomainAdvancedSecurityOptionsArgs', 'DomainAdvancedSecurityOptionsArgsDict']] advanced_security_options: Configuration block for [fine-grained access control](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html). Detailed below.
|
|
1175
|
+
:param pulumi.Input[Union['DomainAimlOptionsArgs', 'DomainAimlOptionsArgsDict']] aiml_options: Configuration block for parameters required to enable all machine learning features. Detailed below.
|
|
1134
1176
|
:param pulumi.Input[Union['DomainAutoTuneOptionsArgs', 'DomainAutoTuneOptionsArgsDict']] auto_tune_options: Configuration block for the Auto-Tune options of the domain. Detailed below.
|
|
1135
1177
|
:param pulumi.Input[Union['DomainClusterConfigArgs', 'DomainClusterConfigArgsDict']] cluster_config: Configuration block for the cluster of the domain. Detailed below.
|
|
1136
1178
|
:param pulumi.Input[Union['DomainCognitoOptionsArgs', 'DomainCognitoOptionsArgsDict']] cognito_options: Configuration block for authenticating dashboard with Cognito. Detailed below.
|
|
@@ -1143,6 +1185,7 @@ class Domain(pulumi.CustomResource):
|
|
|
1143
1185
|
:param pulumi.Input[_builtins.str] engine_version: Either `Elasticsearch_X.Y` or `OpenSearch_X.Y` to specify the engine version for the Amazon OpenSearch Service domain. For example, `OpenSearch_1.0` or `Elasticsearch_7.9`.
|
|
1144
1186
|
See [Creating and managing Amazon OpenSearch Service domains](http://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains).
|
|
1145
1187
|
Defaults to the lastest version of OpenSearch.
|
|
1188
|
+
:param pulumi.Input[Union['DomainIdentityCenterOptionsArgs', 'DomainIdentityCenterOptionsArgsDict']] identity_center_options: Configuration block for enabling and managing IAM Identity Center integration within a domain. Detailed below.
|
|
1146
1189
|
:param pulumi.Input[_builtins.str] ip_address_type: The IP address type for the endpoint. Valid values are `ipv4` and `dualstack`.
|
|
1147
1190
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DomainLogPublishingOptionArgs', 'DomainLogPublishingOptionArgsDict']]]] log_publishing_options: Configuration block for publishing slow and application logs to CloudWatch Logs. This block can be declared multiple times, for each log_type, within the same resource. Detailed below.
|
|
1148
1191
|
:param pulumi.Input[Union['DomainNodeToNodeEncryptionArgs', 'DomainNodeToNodeEncryptionArgsDict']] node_to_node_encryption: Configuration block for node-to-node encryption options. Detailed below.
|
|
@@ -1442,6 +1485,7 @@ class Domain(pulumi.CustomResource):
|
|
|
1442
1485
|
ebs_options: Optional[pulumi.Input[Union['DomainEbsOptionsArgs', 'DomainEbsOptionsArgsDict']]] = None,
|
|
1443
1486
|
encrypt_at_rest: Optional[pulumi.Input[Union['DomainEncryptAtRestArgs', 'DomainEncryptAtRestArgsDict']]] = None,
|
|
1444
1487
|
engine_version: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1488
|
+
identity_center_options: Optional[pulumi.Input[Union['DomainIdentityCenterOptionsArgs', 'DomainIdentityCenterOptionsArgsDict']]] = None,
|
|
1445
1489
|
ip_address_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1446
1490
|
log_publishing_options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainLogPublishingOptionArgs', 'DomainLogPublishingOptionArgsDict']]]]] = None,
|
|
1447
1491
|
node_to_node_encryption: Optional[pulumi.Input[Union['DomainNodeToNodeEncryptionArgs', 'DomainNodeToNodeEncryptionArgsDict']]] = None,
|
|
@@ -1472,6 +1516,7 @@ class Domain(pulumi.CustomResource):
|
|
|
1472
1516
|
__props__.__dict__["ebs_options"] = ebs_options
|
|
1473
1517
|
__props__.__dict__["encrypt_at_rest"] = encrypt_at_rest
|
|
1474
1518
|
__props__.__dict__["engine_version"] = engine_version
|
|
1519
|
+
__props__.__dict__["identity_center_options"] = identity_center_options
|
|
1475
1520
|
__props__.__dict__["ip_address_type"] = ip_address_type
|
|
1476
1521
|
__props__.__dict__["log_publishing_options"] = log_publishing_options
|
|
1477
1522
|
__props__.__dict__["node_to_node_encryption"] = node_to_node_encryption
|
|
@@ -1518,6 +1563,7 @@ class Domain(pulumi.CustomResource):
|
|
|
1518
1563
|
endpoint: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1519
1564
|
endpoint_v2: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1520
1565
|
engine_version: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1566
|
+
identity_center_options: Optional[pulumi.Input[Union['DomainIdentityCenterOptionsArgs', 'DomainIdentityCenterOptionsArgsDict']]] = None,
|
|
1521
1567
|
ip_address_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1522
1568
|
log_publishing_options: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainLogPublishingOptionArgs', 'DomainLogPublishingOptionArgsDict']]]]] = None,
|
|
1523
1569
|
node_to_node_encryption: Optional[pulumi.Input[Union['DomainNodeToNodeEncryptionArgs', 'DomainNodeToNodeEncryptionArgsDict']]] = None,
|
|
@@ -1538,6 +1584,7 @@ class Domain(pulumi.CustomResource):
|
|
|
1538
1584
|
:param pulumi.Input[_builtins.str] access_policies: IAM policy document specifying the access policies for the domain.
|
|
1539
1585
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] advanced_options: Key-value string pairs to specify advanced configuration options. Note that the values for these configuration options must be strings (wrapped in quotes) or they may be wrong and cause a perpetual diff, causing the provider to want to recreate your OpenSearch domain on every apply.
|
|
1540
1586
|
:param pulumi.Input[Union['DomainAdvancedSecurityOptionsArgs', 'DomainAdvancedSecurityOptionsArgsDict']] advanced_security_options: Configuration block for [fine-grained access control](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/fgac.html). Detailed below.
|
|
1587
|
+
:param pulumi.Input[Union['DomainAimlOptionsArgs', 'DomainAimlOptionsArgsDict']] aiml_options: Configuration block for parameters required to enable all machine learning features. Detailed below.
|
|
1541
1588
|
:param pulumi.Input[_builtins.str] arn: ARN of the domain.
|
|
1542
1589
|
:param pulumi.Input[Union['DomainAutoTuneOptionsArgs', 'DomainAutoTuneOptionsArgsDict']] auto_tune_options: Configuration block for the Auto-Tune options of the domain. Detailed below.
|
|
1543
1590
|
:param pulumi.Input[Union['DomainClusterConfigArgs', 'DomainClusterConfigArgsDict']] cluster_config: Configuration block for the cluster of the domain. Detailed below.
|
|
@@ -1557,6 +1604,7 @@ class Domain(pulumi.CustomResource):
|
|
|
1557
1604
|
:param pulumi.Input[_builtins.str] engine_version: Either `Elasticsearch_X.Y` or `OpenSearch_X.Y` to specify the engine version for the Amazon OpenSearch Service domain. For example, `OpenSearch_1.0` or `Elasticsearch_7.9`.
|
|
1558
1605
|
See [Creating and managing Amazon OpenSearch Service domains](http://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomains).
|
|
1559
1606
|
Defaults to the lastest version of OpenSearch.
|
|
1607
|
+
:param pulumi.Input[Union['DomainIdentityCenterOptionsArgs', 'DomainIdentityCenterOptionsArgsDict']] identity_center_options: Configuration block for enabling and managing IAM Identity Center integration within a domain. Detailed below.
|
|
1560
1608
|
:param pulumi.Input[_builtins.str] ip_address_type: The IP address type for the endpoint. Valid values are `ipv4` and `dualstack`.
|
|
1561
1609
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DomainLogPublishingOptionArgs', 'DomainLogPublishingOptionArgsDict']]]] log_publishing_options: Configuration block for publishing slow and application logs to CloudWatch Logs. This block can be declared multiple times, for each log_type, within the same resource. Detailed below.
|
|
1562
1610
|
:param pulumi.Input[Union['DomainNodeToNodeEncryptionArgs', 'DomainNodeToNodeEncryptionArgsDict']] node_to_node_encryption: Configuration block for node-to-node encryption options. Detailed below.
|
|
@@ -1591,6 +1639,7 @@ class Domain(pulumi.CustomResource):
|
|
|
1591
1639
|
__props__.__dict__["endpoint"] = endpoint
|
|
1592
1640
|
__props__.__dict__["endpoint_v2"] = endpoint_v2
|
|
1593
1641
|
__props__.__dict__["engine_version"] = engine_version
|
|
1642
|
+
__props__.__dict__["identity_center_options"] = identity_center_options
|
|
1594
1643
|
__props__.__dict__["ip_address_type"] = ip_address_type
|
|
1595
1644
|
__props__.__dict__["log_publishing_options"] = log_publishing_options
|
|
1596
1645
|
__props__.__dict__["node_to_node_encryption"] = node_to_node_encryption
|
|
@@ -1630,6 +1679,9 @@ class Domain(pulumi.CustomResource):
|
|
|
1630
1679
|
@_builtins.property
|
|
1631
1680
|
@pulumi.getter(name="aimlOptions")
|
|
1632
1681
|
def aiml_options(self) -> pulumi.Output['outputs.DomainAimlOptions']:
|
|
1682
|
+
"""
|
|
1683
|
+
Configuration block for parameters required to enable all machine learning features. Detailed below.
|
|
1684
|
+
"""
|
|
1633
1685
|
return pulumi.get(self, "aiml_options")
|
|
1634
1686
|
|
|
1635
1687
|
@_builtins.property
|
|
@@ -1756,6 +1808,14 @@ class Domain(pulumi.CustomResource):
|
|
|
1756
1808
|
"""
|
|
1757
1809
|
return pulumi.get(self, "engine_version")
|
|
1758
1810
|
|
|
1811
|
+
@_builtins.property
|
|
1812
|
+
@pulumi.getter(name="identityCenterOptions")
|
|
1813
|
+
def identity_center_options(self) -> pulumi.Output[Optional['outputs.DomainIdentityCenterOptions']]:
|
|
1814
|
+
"""
|
|
1815
|
+
Configuration block for enabling and managing IAM Identity Center integration within a domain. Detailed below.
|
|
1816
|
+
"""
|
|
1817
|
+
return pulumi.get(self, "identity_center_options")
|
|
1818
|
+
|
|
1759
1819
|
@_builtins.property
|
|
1760
1820
|
@pulumi.getter(name="ipAddressType")
|
|
1761
1821
|
def ip_address_type(self) -> pulumi.Output[_builtins.str]:
|