pulumi-aws-native 1.38.0a1762236751__py3-none-any.whl → 1.38.0a1762321314__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 +4 -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/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/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/ecs/_enums.py +1 -0
- 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/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/s3vectors/get_index.py +20 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +20 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +9 -0
- pulumi_aws_native/s3vectors/index.py +102 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +42 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +24 -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.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/RECORD +42 -36
- {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1762236751.dist-info → pulumi_aws_native-1.38.0a1762321314.dist-info}/top_level.txt +0 -0
|
@@ -364,7 +364,7 @@ if not MYPY:
|
|
|
364
364
|
"""
|
|
365
365
|
work_docs_configuration: NotRequired[pulumi.Input['DataSourceWorkDocsConfigurationArgsDict']]
|
|
366
366
|
"""
|
|
367
|
-
Provides the configuration information to connect to
|
|
367
|
+
Provides the configuration information to connect to WorkDocs as your data source.
|
|
368
368
|
"""
|
|
369
369
|
elif False:
|
|
370
370
|
DataSourceConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -402,7 +402,7 @@ class DataSourceConfigurationArgs:
|
|
|
402
402
|
:param pulumi.Input['DataSourceSharePointConfigurationArgs'] share_point_configuration: Provides the configuration information to connect to Microsoft SharePoint as your data source.
|
|
403
403
|
:param pulumi.Input['DataSourceTemplateConfigurationArgs'] template_configuration: Provides a template for the configuration information to connect to your data source.
|
|
404
404
|
:param pulumi.Input['DataSourceWebCrawlerConfigurationArgs'] web_crawler_configuration: Provides the configuration information required for Amazon Kendra Web Crawler.
|
|
405
|
-
:param pulumi.Input['DataSourceWorkDocsConfigurationArgs'] work_docs_configuration: Provides the configuration information to connect to
|
|
405
|
+
:param pulumi.Input['DataSourceWorkDocsConfigurationArgs'] work_docs_configuration: Provides the configuration information to connect to WorkDocs as your data source.
|
|
406
406
|
"""
|
|
407
407
|
if confluence_configuration is not None:
|
|
408
408
|
pulumi.set(__self__, "confluence_configuration", confluence_configuration)
|
|
@@ -559,7 +559,7 @@ class DataSourceConfigurationArgs:
|
|
|
559
559
|
@pulumi.getter(name="workDocsConfiguration")
|
|
560
560
|
def work_docs_configuration(self) -> Optional[pulumi.Input['DataSourceWorkDocsConfigurationArgs']]:
|
|
561
561
|
"""
|
|
562
|
-
Provides the configuration information to connect to
|
|
562
|
+
Provides the configuration information to connect to WorkDocs as your data source.
|
|
563
563
|
"""
|
|
564
564
|
return pulumi.get(self, "work_docs_configuration")
|
|
565
565
|
|
|
@@ -4708,9 +4708,9 @@ if not MYPY:
|
|
|
4708
4708
|
class DataSourceWorkDocsConfigurationArgsDict(TypedDict):
|
|
4709
4709
|
organization_id: pulumi.Input[_builtins.str]
|
|
4710
4710
|
"""
|
|
4711
|
-
The identifier of the directory corresponding to your
|
|
4711
|
+
The identifier of the directory corresponding to your WorkDocs site repository.
|
|
4712
4712
|
|
|
4713
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
4713
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
4714
4714
|
"""
|
|
4715
4715
|
crawl_comments: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4716
4716
|
"""
|
|
@@ -4720,19 +4720,19 @@ if not MYPY:
|
|
|
4720
4720
|
"""
|
|
4721
4721
|
exclusion_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
4722
4722
|
"""
|
|
4723
|
-
A list of regular expression patterns to exclude certain files in your
|
|
4723
|
+
A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4724
4724
|
"""
|
|
4725
4725
|
field_mappings: NotRequired[pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgsDict']]]]
|
|
4726
4726
|
"""
|
|
4727
|
-
A list of `DataSourceToIndexFieldMapping` objects that map
|
|
4727
|
+
A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
4728
4728
|
"""
|
|
4729
4729
|
inclusion_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
4730
4730
|
"""
|
|
4731
|
-
A list of regular expression patterns to include certain files in your
|
|
4731
|
+
A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4732
4732
|
"""
|
|
4733
4733
|
use_change_log: NotRequired[pulumi.Input[_builtins.bool]]
|
|
4734
4734
|
"""
|
|
4735
|
-
`TRUE` to use the
|
|
4735
|
+
`TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
4736
4736
|
"""
|
|
4737
4737
|
elif False:
|
|
4738
4738
|
DataSourceWorkDocsConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -4747,16 +4747,16 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4747
4747
|
inclusion_patterns: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
4748
4748
|
use_change_log: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
4749
4749
|
"""
|
|
4750
|
-
:param pulumi.Input[_builtins.str] organization_id: The identifier of the directory corresponding to your
|
|
4750
|
+
:param pulumi.Input[_builtins.str] organization_id: The identifier of the directory corresponding to your WorkDocs site repository.
|
|
4751
4751
|
|
|
4752
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
4752
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
4753
4753
|
:param pulumi.Input[_builtins.bool] crawl_comments: `TRUE` to include comments on documents in your index. Including comments in your index means each comment is a document that can be searched on.
|
|
4754
4754
|
|
|
4755
4755
|
The default is set to `FALSE` .
|
|
4756
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] exclusion_patterns: A list of regular expression patterns to exclude certain files in your
|
|
4757
|
-
:param pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgs']]] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map
|
|
4758
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] inclusion_patterns: A list of regular expression patterns to include certain files in your
|
|
4759
|
-
:param pulumi.Input[_builtins.bool] use_change_log: `TRUE` to use the
|
|
4756
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] exclusion_patterns: A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4757
|
+
:param pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgs']]] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
4758
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] inclusion_patterns: A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4759
|
+
:param pulumi.Input[_builtins.bool] use_change_log: `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
4760
4760
|
"""
|
|
4761
4761
|
pulumi.set(__self__, "organization_id", organization_id)
|
|
4762
4762
|
if crawl_comments is not None:
|
|
@@ -4774,9 +4774,9 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4774
4774
|
@pulumi.getter(name="organizationId")
|
|
4775
4775
|
def organization_id(self) -> pulumi.Input[_builtins.str]:
|
|
4776
4776
|
"""
|
|
4777
|
-
The identifier of the directory corresponding to your
|
|
4777
|
+
The identifier of the directory corresponding to your WorkDocs site repository.
|
|
4778
4778
|
|
|
4779
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
4779
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
4780
4780
|
"""
|
|
4781
4781
|
return pulumi.get(self, "organization_id")
|
|
4782
4782
|
|
|
@@ -4802,7 +4802,7 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4802
4802
|
@pulumi.getter(name="exclusionPatterns")
|
|
4803
4803
|
def exclusion_patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
4804
4804
|
"""
|
|
4805
|
-
A list of regular expression patterns to exclude certain files in your
|
|
4805
|
+
A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4806
4806
|
"""
|
|
4807
4807
|
return pulumi.get(self, "exclusion_patterns")
|
|
4808
4808
|
|
|
@@ -4814,7 +4814,7 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4814
4814
|
@pulumi.getter(name="fieldMappings")
|
|
4815
4815
|
def field_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgs']]]]:
|
|
4816
4816
|
"""
|
|
4817
|
-
A list of `DataSourceToIndexFieldMapping` objects that map
|
|
4817
|
+
A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
4818
4818
|
"""
|
|
4819
4819
|
return pulumi.get(self, "field_mappings")
|
|
4820
4820
|
|
|
@@ -4826,7 +4826,7 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4826
4826
|
@pulumi.getter(name="inclusionPatterns")
|
|
4827
4827
|
def inclusion_patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
4828
4828
|
"""
|
|
4829
|
-
A list of regular expression patterns to include certain files in your
|
|
4829
|
+
A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
4830
4830
|
"""
|
|
4831
4831
|
return pulumi.get(self, "inclusion_patterns")
|
|
4832
4832
|
|
|
@@ -4838,7 +4838,7 @@ class DataSourceWorkDocsConfigurationArgs:
|
|
|
4838
4838
|
@pulumi.getter(name="useChangeLog")
|
|
4839
4839
|
def use_change_log(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
4840
4840
|
"""
|
|
4841
|
-
`TRUE` to use the
|
|
4841
|
+
`TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
4842
4842
|
"""
|
|
4843
4843
|
return pulumi.get(self, "use_change_log")
|
|
4844
4844
|
|
|
@@ -309,7 +309,7 @@ class DataSourceConfiguration(dict):
|
|
|
309
309
|
:param 'DataSourceSharePointConfiguration' share_point_configuration: Provides the configuration information to connect to Microsoft SharePoint as your data source.
|
|
310
310
|
:param 'DataSourceTemplateConfiguration' template_configuration: Provides a template for the configuration information to connect to your data source.
|
|
311
311
|
:param 'DataSourceWebCrawlerConfiguration' web_crawler_configuration: Provides the configuration information required for Amazon Kendra Web Crawler.
|
|
312
|
-
:param 'DataSourceWorkDocsConfiguration' work_docs_configuration: Provides the configuration information to connect to
|
|
312
|
+
:param 'DataSourceWorkDocsConfiguration' work_docs_configuration: Provides the configuration information to connect to WorkDocs as your data source.
|
|
313
313
|
"""
|
|
314
314
|
if confluence_configuration is not None:
|
|
315
315
|
pulumi.set(__self__, "confluence_configuration", confluence_configuration)
|
|
@@ -426,7 +426,7 @@ class DataSourceConfiguration(dict):
|
|
|
426
426
|
@pulumi.getter(name="workDocsConfiguration")
|
|
427
427
|
def work_docs_configuration(self) -> Optional['outputs.DataSourceWorkDocsConfiguration']:
|
|
428
428
|
"""
|
|
429
|
-
Provides the configuration information to connect to
|
|
429
|
+
Provides the configuration information to connect to WorkDocs as your data source.
|
|
430
430
|
"""
|
|
431
431
|
return pulumi.get(self, "work_docs_configuration")
|
|
432
432
|
|
|
@@ -3875,16 +3875,16 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3875
3875
|
inclusion_patterns: Optional[Sequence[_builtins.str]] = None,
|
|
3876
3876
|
use_change_log: Optional[_builtins.bool] = None):
|
|
3877
3877
|
"""
|
|
3878
|
-
:param _builtins.str organization_id: The identifier of the directory corresponding to your
|
|
3878
|
+
:param _builtins.str organization_id: The identifier of the directory corresponding to your WorkDocs site repository.
|
|
3879
3879
|
|
|
3880
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
3880
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
3881
3881
|
:param _builtins.bool crawl_comments: `TRUE` to include comments on documents in your index. Including comments in your index means each comment is a document that can be searched on.
|
|
3882
3882
|
|
|
3883
3883
|
The default is set to `FALSE` .
|
|
3884
|
-
:param Sequence[_builtins.str] exclusion_patterns: A list of regular expression patterns to exclude certain files in your
|
|
3885
|
-
:param Sequence['DataSourceToIndexFieldMapping'] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map
|
|
3886
|
-
:param Sequence[_builtins.str] inclusion_patterns: A list of regular expression patterns to include certain files in your
|
|
3887
|
-
:param _builtins.bool use_change_log: `TRUE` to use the
|
|
3884
|
+
:param Sequence[_builtins.str] exclusion_patterns: A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3885
|
+
:param Sequence['DataSourceToIndexFieldMapping'] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
3886
|
+
:param Sequence[_builtins.str] inclusion_patterns: A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3887
|
+
:param _builtins.bool use_change_log: `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
3888
3888
|
"""
|
|
3889
3889
|
pulumi.set(__self__, "organization_id", organization_id)
|
|
3890
3890
|
if crawl_comments is not None:
|
|
@@ -3902,9 +3902,9 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3902
3902
|
@pulumi.getter(name="organizationId")
|
|
3903
3903
|
def organization_id(self) -> _builtins.str:
|
|
3904
3904
|
"""
|
|
3905
|
-
The identifier of the directory corresponding to your
|
|
3905
|
+
The identifier of the directory corresponding to your WorkDocs site repository.
|
|
3906
3906
|
|
|
3907
|
-
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your
|
|
3907
|
+
You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
|
|
3908
3908
|
"""
|
|
3909
3909
|
return pulumi.get(self, "organization_id")
|
|
3910
3910
|
|
|
@@ -3922,7 +3922,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3922
3922
|
@pulumi.getter(name="exclusionPatterns")
|
|
3923
3923
|
def exclusion_patterns(self) -> Optional[Sequence[_builtins.str]]:
|
|
3924
3924
|
"""
|
|
3925
|
-
A list of regular expression patterns to exclude certain files in your
|
|
3925
|
+
A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3926
3926
|
"""
|
|
3927
3927
|
return pulumi.get(self, "exclusion_patterns")
|
|
3928
3928
|
|
|
@@ -3930,7 +3930,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3930
3930
|
@pulumi.getter(name="fieldMappings")
|
|
3931
3931
|
def field_mappings(self) -> Optional[Sequence['outputs.DataSourceToIndexFieldMapping']]:
|
|
3932
3932
|
"""
|
|
3933
|
-
A list of `DataSourceToIndexFieldMapping` objects that map
|
|
3933
|
+
A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
|
|
3934
3934
|
"""
|
|
3935
3935
|
return pulumi.get(self, "field_mappings")
|
|
3936
3936
|
|
|
@@ -3938,7 +3938,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3938
3938
|
@pulumi.getter(name="inclusionPatterns")
|
|
3939
3939
|
def inclusion_patterns(self) -> Optional[Sequence[_builtins.str]]:
|
|
3940
3940
|
"""
|
|
3941
|
-
A list of regular expression patterns to include certain files in your
|
|
3941
|
+
A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
|
|
3942
3942
|
"""
|
|
3943
3943
|
return pulumi.get(self, "inclusion_patterns")
|
|
3944
3944
|
|
|
@@ -3946,7 +3946,7 @@ class DataSourceWorkDocsConfiguration(dict):
|
|
|
3946
3946
|
@pulumi.getter(name="useChangeLog")
|
|
3947
3947
|
def use_change_log(self) -> Optional[_builtins.bool]:
|
|
3948
3948
|
"""
|
|
3949
|
-
`TRUE` to use the
|
|
3949
|
+
`TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
|
|
3950
3950
|
"""
|
|
3951
3951
|
return pulumi.get(self, "use_change_log")
|
|
3952
3952
|
|
|
@@ -308,7 +308,7 @@ if not MYPY:
|
|
|
308
308
|
class ApplicationQuickSightConfigurationArgsDict(TypedDict):
|
|
309
309
|
client_namespace: pulumi.Input[_builtins.str]
|
|
310
310
|
"""
|
|
311
|
-
The Amazon
|
|
311
|
+
The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
312
312
|
"""
|
|
313
313
|
elif False:
|
|
314
314
|
ApplicationQuickSightConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -318,7 +318,7 @@ class ApplicationQuickSightConfigurationArgs:
|
|
|
318
318
|
def __init__(__self__, *,
|
|
319
319
|
client_namespace: pulumi.Input[_builtins.str]):
|
|
320
320
|
"""
|
|
321
|
-
:param pulumi.Input[_builtins.str] client_namespace: The Amazon
|
|
321
|
+
:param pulumi.Input[_builtins.str] client_namespace: The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
322
322
|
"""
|
|
323
323
|
pulumi.set(__self__, "client_namespace", client_namespace)
|
|
324
324
|
|
|
@@ -326,7 +326,7 @@ class ApplicationQuickSightConfigurationArgs:
|
|
|
326
326
|
@pulumi.getter(name="clientNamespace")
|
|
327
327
|
def client_namespace(self) -> pulumi.Input[_builtins.str]:
|
|
328
328
|
"""
|
|
329
|
-
The Amazon
|
|
329
|
+
The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
330
330
|
"""
|
|
331
331
|
return pulumi.get(self, "client_namespace")
|
|
332
332
|
|
|
@@ -53,7 +53,7 @@ class ApplicationArgs:
|
|
|
53
53
|
:param pulumi.Input['ApplicationIdentityType'] identity_type: The authentication type being used by a Amazon Q Business application.
|
|
54
54
|
:param pulumi.Input['ApplicationPersonalizationConfigurationArgs'] personalization_configuration: Configuration information about chat response personalization. For more information, see [Personalizing chat responses](https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html) .
|
|
55
55
|
:param pulumi.Input['ApplicationQAppsConfigurationArgs'] q_apps_configuration: Configuration information about Amazon Q Apps.
|
|
56
|
-
:param pulumi.Input['ApplicationQuickSightConfigurationArgs'] quick_sight_configuration: The Amazon
|
|
56
|
+
:param pulumi.Input['ApplicationQuickSightConfigurationArgs'] quick_sight_configuration: The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
57
57
|
:param pulumi.Input[_builtins.str] role_arn: The Amazon Resource Name (ARN) of an IAM role with permissions to access your Amazon CloudWatch logs and metrics. If this property is not specified, Amazon Q Business will create a [service linked role (SLR)](https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/using-service-linked-roles.html#slr-permissions) and use it as the application's role.
|
|
58
58
|
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: A list of key-value pairs that identify or categorize your Amazon Q Business application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.
|
|
59
59
|
"""
|
|
@@ -223,7 +223,7 @@ class ApplicationArgs:
|
|
|
223
223
|
@pulumi.getter(name="quickSightConfiguration")
|
|
224
224
|
def quick_sight_configuration(self) -> Optional[pulumi.Input['ApplicationQuickSightConfigurationArgs']]:
|
|
225
225
|
"""
|
|
226
|
-
The Amazon
|
|
226
|
+
The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
227
227
|
"""
|
|
228
228
|
return pulumi.get(self, "quick_sight_configuration")
|
|
229
229
|
|
|
@@ -295,7 +295,7 @@ class Application(pulumi.CustomResource):
|
|
|
295
295
|
:param pulumi.Input['ApplicationIdentityType'] identity_type: The authentication type being used by a Amazon Q Business application.
|
|
296
296
|
:param pulumi.Input[Union['ApplicationPersonalizationConfigurationArgs', 'ApplicationPersonalizationConfigurationArgsDict']] personalization_configuration: Configuration information about chat response personalization. For more information, see [Personalizing chat responses](https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html) .
|
|
297
297
|
:param pulumi.Input[Union['ApplicationQAppsConfigurationArgs', 'ApplicationQAppsConfigurationArgsDict']] q_apps_configuration: Configuration information about Amazon Q Apps.
|
|
298
|
-
:param pulumi.Input[Union['ApplicationQuickSightConfigurationArgs', 'ApplicationQuickSightConfigurationArgsDict']] quick_sight_configuration: The Amazon
|
|
298
|
+
:param pulumi.Input[Union['ApplicationQuickSightConfigurationArgs', 'ApplicationQuickSightConfigurationArgsDict']] quick_sight_configuration: The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
299
299
|
:param pulumi.Input[_builtins.str] role_arn: The Amazon Resource Name (ARN) of an IAM role with permissions to access your Amazon CloudWatch logs and metrics. If this property is not specified, Amazon Q Business will create a [service linked role (SLR)](https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/using-service-linked-roles.html#slr-permissions) and use it as the application's role.
|
|
300
300
|
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: A list of key-value pairs that identify or categorize your Amazon Q Business application. You can also use tags to help control access to the application. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.
|
|
301
301
|
"""
|
|
@@ -540,7 +540,7 @@ class Application(pulumi.CustomResource):
|
|
|
540
540
|
@pulumi.getter(name="quickSightConfiguration")
|
|
541
541
|
def quick_sight_configuration(self) -> pulumi.Output[Optional['outputs.ApplicationQuickSightConfiguration']]:
|
|
542
542
|
"""
|
|
543
|
-
The Amazon
|
|
543
|
+
The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
544
544
|
"""
|
|
545
545
|
return pulumi.get(self, "quick_sight_configuration")
|
|
546
546
|
|
|
@@ -287,7 +287,7 @@ class ApplicationQuickSightConfiguration(dict):
|
|
|
287
287
|
def __init__(__self__, *,
|
|
288
288
|
client_namespace: _builtins.str):
|
|
289
289
|
"""
|
|
290
|
-
:param _builtins.str client_namespace: The Amazon
|
|
290
|
+
:param _builtins.str client_namespace: The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
291
291
|
"""
|
|
292
292
|
pulumi.set(__self__, "client_namespace", client_namespace)
|
|
293
293
|
|
|
@@ -295,7 +295,7 @@ class ApplicationQuickSightConfiguration(dict):
|
|
|
295
295
|
@pulumi.getter(name="clientNamespace")
|
|
296
296
|
def client_namespace(self) -> _builtins.str:
|
|
297
297
|
"""
|
|
298
|
-
The Amazon
|
|
298
|
+
The Amazon Quick Suite namespace that is used as the identity provider. For more information about Quick Suite namespaces, see [Namespace operations](https://docs.aws.amazon.com/quicksight/latest/developerguide/namespace-operations.html) .
|
|
299
299
|
"""
|
|
300
300
|
return pulumi.get(self, "client_namespace")
|
|
301
301
|
|
|
@@ -38331,7 +38331,7 @@ if not MYPY:
|
|
|
38331
38331
|
"""
|
|
38332
38332
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
38333
38333
|
"""
|
|
38334
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
38334
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
38335
38335
|
"""
|
|
38336
38336
|
parameter_controls: NotRequired[pulumi.Input[Sequence[pulumi.Input['AnalysisParameterControlArgsDict']]]]
|
|
38337
38337
|
"""
|
|
@@ -38387,7 +38387,7 @@ class AnalysisSheetDefinitionArgs:
|
|
|
38387
38387
|
:param pulumi.Input[Sequence[pulumi.Input['AnalysisLayoutArgs']]] layouts: Layouts define how the components of a sheet are arranged.
|
|
38388
38388
|
|
|
38389
38389
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
38390
|
-
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
38390
|
+
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
38391
38391
|
:param pulumi.Input[Sequence[pulumi.Input['AnalysisParameterControlArgs']]] parameter_controls: The list of parameter controls that are on a sheet.
|
|
38392
38392
|
|
|
38393
38393
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -38503,7 +38503,7 @@ class AnalysisSheetDefinitionArgs:
|
|
|
38503
38503
|
@pulumi.getter
|
|
38504
38504
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
38505
38505
|
"""
|
|
38506
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
38506
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
38507
38507
|
"""
|
|
38508
38508
|
return pulumi.get(self, "name")
|
|
38509
38509
|
|
|
@@ -83259,7 +83259,7 @@ if not MYPY:
|
|
|
83259
83259
|
"""
|
|
83260
83260
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
83261
83261
|
"""
|
|
83262
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
83262
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
83263
83263
|
"""
|
|
83264
83264
|
parameter_controls: NotRequired[pulumi.Input[Sequence[pulumi.Input['DashboardParameterControlArgsDict']]]]
|
|
83265
83265
|
"""
|
|
@@ -83315,7 +83315,7 @@ class DashboardSheetDefinitionArgs:
|
|
|
83315
83315
|
:param pulumi.Input[Sequence[pulumi.Input['DashboardLayoutArgs']]] layouts: Layouts define how the components of a sheet are arranged.
|
|
83316
83316
|
|
|
83317
83317
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
83318
|
-
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
83318
|
+
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
83319
83319
|
:param pulumi.Input[Sequence[pulumi.Input['DashboardParameterControlArgs']]] parameter_controls: The list of parameter controls that are on a sheet.
|
|
83320
83320
|
|
|
83321
83321
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -83431,7 +83431,7 @@ class DashboardSheetDefinitionArgs:
|
|
|
83431
83431
|
@pulumi.getter
|
|
83432
83432
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
83433
83433
|
"""
|
|
83434
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
83434
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
83435
83435
|
"""
|
|
83436
83436
|
return pulumi.get(self, "name")
|
|
83437
83437
|
|
|
@@ -131618,7 +131618,7 @@ if not MYPY:
|
|
|
131618
131618
|
"""
|
|
131619
131619
|
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
131620
131620
|
"""
|
|
131621
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
131621
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
131622
131622
|
"""
|
|
131623
131623
|
parameter_controls: NotRequired[pulumi.Input[Sequence[pulumi.Input['TemplateParameterControlArgsDict']]]]
|
|
131624
131624
|
"""
|
|
@@ -131674,7 +131674,7 @@ class TemplateSheetDefinitionArgs:
|
|
|
131674
131674
|
:param pulumi.Input[Sequence[pulumi.Input['TemplateLayoutArgs']]] layouts: Layouts define how the components of a sheet are arranged.
|
|
131675
131675
|
|
|
131676
131676
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
131677
|
-
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
131677
|
+
:param pulumi.Input[_builtins.str] name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
131678
131678
|
:param pulumi.Input[Sequence[pulumi.Input['TemplateParameterControlArgs']]] parameter_controls: The list of parameter controls that are on a sheet.
|
|
131679
131679
|
|
|
131680
131680
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -131790,7 +131790,7 @@ class TemplateSheetDefinitionArgs:
|
|
|
131790
131790
|
@pulumi.getter
|
|
131791
131791
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
131792
131792
|
"""
|
|
131793
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
131793
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
131794
131794
|
"""
|
|
131795
131795
|
return pulumi.get(self, "name")
|
|
131796
131796
|
|
|
@@ -30322,7 +30322,7 @@ class AnalysisSheetDefinition(dict):
|
|
|
30322
30322
|
:param Sequence['AnalysisLayout'] layouts: Layouts define how the components of a sheet are arranged.
|
|
30323
30323
|
|
|
30324
30324
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
30325
|
-
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
30325
|
+
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
30326
30326
|
:param Sequence['AnalysisParameterControl'] parameter_controls: The list of parameter controls that are on a sheet.
|
|
30327
30327
|
|
|
30328
30328
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -30414,7 +30414,7 @@ class AnalysisSheetDefinition(dict):
|
|
|
30414
30414
|
@pulumi.getter
|
|
30415
30415
|
def name(self) -> Optional[_builtins.str]:
|
|
30416
30416
|
"""
|
|
30417
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
30417
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
30418
30418
|
"""
|
|
30419
30419
|
return pulumi.get(self, "name")
|
|
30420
30420
|
|
|
@@ -67147,7 +67147,7 @@ class DashboardSheetDefinition(dict):
|
|
|
67147
67147
|
:param Sequence['DashboardLayout'] layouts: Layouts define how the components of a sheet are arranged.
|
|
67148
67148
|
|
|
67149
67149
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
67150
|
-
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
67150
|
+
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
67151
67151
|
:param Sequence['DashboardParameterControl'] parameter_controls: The list of parameter controls that are on a sheet.
|
|
67152
67152
|
|
|
67153
67153
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -67239,7 +67239,7 @@ class DashboardSheetDefinition(dict):
|
|
|
67239
67239
|
@pulumi.getter
|
|
67240
67240
|
def name(self) -> Optional[_builtins.str]:
|
|
67241
67241
|
"""
|
|
67242
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
67242
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
67243
67243
|
"""
|
|
67244
67244
|
return pulumi.get(self, "name")
|
|
67245
67245
|
|
|
@@ -107015,7 +107015,7 @@ class TemplateSheetDefinition(dict):
|
|
|
107015
107015
|
:param Sequence['TemplateLayout'] layouts: Layouts define how the components of a sheet are arranged.
|
|
107016
107016
|
|
|
107017
107017
|
For more information, see [Types of layout](https://docs.aws.amazon.com/quicksight/latest/user/types-of-layout.html) in the *Amazon Quick Suite User Guide* .
|
|
107018
|
-
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the
|
|
107018
|
+
:param _builtins.str name: The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
107019
107019
|
:param Sequence['TemplateParameterControl'] parameter_controls: The list of parameter controls that are on a sheet.
|
|
107020
107020
|
|
|
107021
107021
|
For more information, see [Using a Control with a Parameter in Amazon Quick Sight](https://docs.aws.amazon.com/quicksight/latest/user/parameters-controls.html) in the *Amazon Quick Suite User Guide* .
|
|
@@ -107107,7 +107107,7 @@ class TemplateSheetDefinition(dict):
|
|
|
107107
107107
|
@pulumi.getter
|
|
107108
107108
|
def name(self) -> Optional[_builtins.str]:
|
|
107109
107109
|
"""
|
|
107110
|
-
The name of the sheet. This name is displayed on the sheet's tab in the
|
|
107110
|
+
The name of the sheet. This name is displayed on the sheet's tab in the Quick Suite console.
|
|
107111
107111
|
"""
|
|
107112
107112
|
return pulumi.get(self, "name")
|
|
107113
107113
|
|
|
@@ -34,11 +34,21 @@ class GetIndexResult:
|
|
|
34
34
|
@_builtins.property
|
|
35
35
|
@pulumi.getter(name="creationTime")
|
|
36
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
|
+
"""
|
|
37
42
|
return pulumi.get(self, "creation_time")
|
|
38
43
|
|
|
39
44
|
@_builtins.property
|
|
40
45
|
@pulumi.getter(name="indexArn")
|
|
41
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
|
+
"""
|
|
42
52
|
return pulumi.get(self, "index_arn")
|
|
43
53
|
|
|
44
54
|
|
|
@@ -56,6 +66,11 @@ def get_index(index_arn: Optional[_builtins.str] = None,
|
|
|
56
66
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIndexResult:
|
|
57
67
|
"""
|
|
58
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`
|
|
59
74
|
"""
|
|
60
75
|
__args__ = dict()
|
|
61
76
|
__args__['indexArn'] = index_arn
|
|
@@ -69,6 +84,11 @@ def get_index_output(index_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
69
84
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIndexResult]:
|
|
70
85
|
"""
|
|
71
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`
|
|
72
92
|
"""
|
|
73
93
|
__args__ = dict()
|
|
74
94
|
__args__['indexArn'] = index_arn
|
|
@@ -34,11 +34,21 @@ class GetVectorBucketResult:
|
|
|
34
34
|
@_builtins.property
|
|
35
35
|
@pulumi.getter(name="creationTime")
|
|
36
36
|
def creation_time(self) -> Optional[_builtins.str]:
|
|
37
|
+
"""
|
|
38
|
+
Returns the date and time when the vector bucket was created.
|
|
39
|
+
|
|
40
|
+
Example: `2024-12-21T10:30:00Z`
|
|
41
|
+
"""
|
|
37
42
|
return pulumi.get(self, "creation_time")
|
|
38
43
|
|
|
39
44
|
@_builtins.property
|
|
40
45
|
@pulumi.getter(name="vectorBucketArn")
|
|
41
46
|
def vector_bucket_arn(self) -> Optional[_builtins.str]:
|
|
47
|
+
"""
|
|
48
|
+
Returns the Amazon Resource Name (ARN) of the specified vector bucket.
|
|
49
|
+
|
|
50
|
+
Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket`
|
|
51
|
+
"""
|
|
42
52
|
return pulumi.get(self, "vector_bucket_arn")
|
|
43
53
|
|
|
44
54
|
|
|
@@ -56,6 +66,11 @@ def get_vector_bucket(vector_bucket_arn: Optional[_builtins.str] = None,
|
|
|
56
66
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVectorBucketResult:
|
|
57
67
|
"""
|
|
58
68
|
Resource Type definition for AWS::S3Vectors::VectorBucket
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
:param _builtins.str vector_bucket_arn: Returns the Amazon Resource Name (ARN) of the specified vector bucket.
|
|
72
|
+
|
|
73
|
+
Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket`
|
|
59
74
|
"""
|
|
60
75
|
__args__ = dict()
|
|
61
76
|
__args__['vectorBucketArn'] = vector_bucket_arn
|
|
@@ -69,6 +84,11 @@ def get_vector_bucket_output(vector_bucket_arn: Optional[pulumi.Input[_builtins.
|
|
|
69
84
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVectorBucketResult]:
|
|
70
85
|
"""
|
|
71
86
|
Resource Type definition for AWS::S3Vectors::VectorBucket
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
:param _builtins.str vector_bucket_arn: Returns the Amazon Resource Name (ARN) of the specified vector bucket.
|
|
90
|
+
|
|
91
|
+
Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket`
|
|
72
92
|
"""
|
|
73
93
|
__args__ = dict()
|
|
74
94
|
__args__['vectorBucketArn'] = vector_bucket_arn
|
|
@@ -32,6 +32,9 @@ class GetVectorBucketPolicyResult:
|
|
|
32
32
|
@_builtins.property
|
|
33
33
|
@pulumi.getter
|
|
34
34
|
def policy(self) -> Optional['outputs.VectorBucketPolicyPolicy']:
|
|
35
|
+
"""
|
|
36
|
+
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 .
|
|
37
|
+
"""
|
|
35
38
|
return pulumi.get(self, "policy")
|
|
36
39
|
|
|
37
40
|
|
|
@@ -48,6 +51,9 @@ def get_vector_bucket_policy(vector_bucket_arn: Optional[_builtins.str] = None,
|
|
|
48
51
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVectorBucketPolicyResult:
|
|
49
52
|
"""
|
|
50
53
|
Resource Type definition for AWS::S3Vectors::VectorBucketPolicy
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
:param _builtins.str vector_bucket_arn: The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
51
57
|
"""
|
|
52
58
|
__args__ = dict()
|
|
53
59
|
__args__['vectorBucketArn'] = vector_bucket_arn
|
|
@@ -60,6 +66,9 @@ def get_vector_bucket_policy_output(vector_bucket_arn: Optional[pulumi.Input[_bu
|
|
|
60
66
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetVectorBucketPolicyResult]:
|
|
61
67
|
"""
|
|
62
68
|
Resource Type definition for AWS::S3Vectors::VectorBucketPolicy
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
:param _builtins.str vector_bucket_arn: The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
63
72
|
"""
|
|
64
73
|
__args__ = dict()
|
|
65
74
|
__args__['vectorBucketArn'] = vector_bucket_arn
|