aws-cdk-lib 2.187.0__py3-none-any.whl → 2.189.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.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +24 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.187.0.jsii.tgz → aws-cdk-lib@2.189.0.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +21 -9
- aws_cdk/aws_apigateway/__init__.py +27 -19
- aws_cdk/aws_apigatewayv2/__init__.py +170 -0
- aws_cdk/aws_appconfig/__init__.py +30 -14
- aws_cdk/aws_arczonalshift/__init__.py +4 -4
- aws_cdk/aws_batch/__init__.py +2 -0
- aws_cdk/aws_bedrock/__init__.py +629 -32
- aws_cdk/aws_budgets/__init__.py +8 -8
- aws_cdk/aws_cassandra/__init__.py +3 -1
- aws_cdk/aws_ce/__init__.py +2 -2
- aws_cdk/aws_cloudformation/__init__.py +3 -3
- aws_cdk/aws_codebuild/__init__.py +23 -1
- aws_cdk/aws_codepipeline/__init__.py +47 -32
- aws_cdk/aws_codepipeline_actions/__init__.py +2786 -1042
- aws_cdk/aws_codestarnotifications/__init__.py +16 -16
- aws_cdk/aws_cognito/__init__.py +8 -2
- aws_cdk/aws_dsql/__init__.py +366 -0
- aws_cdk/aws_dynamodb/__init__.py +4 -4
- aws_cdk/aws_ec2/__init__.py +2130 -237
- aws_cdk/aws_eks/__init__.py +112 -10
- aws_cdk/aws_events_targets/__init__.py +136 -0
- aws_cdk/aws_fsx/__init__.py +2 -8
- aws_cdk/aws_gamelift/__init__.py +140 -14
- aws_cdk/aws_groundstation/__init__.py +4 -2
- aws_cdk/aws_iam/__init__.py +6 -4
- aws_cdk/aws_identitystore/__init__.py +15 -13
- aws_cdk/aws_kinesisfirehose/__init__.py +38 -0
- aws_cdk/aws_lambda_event_sources/__init__.py +22 -22
- aws_cdk/aws_lex/__init__.py +21 -17
- aws_cdk/aws_logs/__init__.py +18 -0
- aws_cdk/aws_logs_destinations/__init__.py +146 -0
- aws_cdk/aws_notifications/__init__.py +4 -4
- aws_cdk/aws_omics/__init__.py +9 -1
- aws_cdk/aws_opensearchserverless/__init__.py +31 -23
- aws_cdk/aws_organizations/__init__.py +1 -1
- aws_cdk/aws_paymentcryptography/__init__.py +6 -2
- aws_cdk/aws_pcaconnectorad/__init__.py +3 -2
- aws_cdk/aws_quicksight/__init__.py +35 -22
- aws_cdk/aws_rds/__init__.py +84 -0
- aws_cdk/aws_redshiftserverless/__init__.py +166 -0
- aws_cdk/aws_route53/__init__.py +3 -3
- aws_cdk/aws_route53recoverycontrol/__init__.py +4 -6
- aws_cdk/aws_rum/__init__.py +13 -10
- aws_cdk/aws_s3/__init__.py +3 -6
- aws_cdk/aws_sagemaker/__init__.py +41 -0
- aws_cdk/aws_ssmincidents/__init__.py +10 -10
- aws_cdk/aws_systemsmanagersap/__init__.py +17 -7
- aws_cdk/aws_transfer/__init__.py +19 -10
- aws_cdk/aws_wafv2/__init__.py +80 -35
- aws_cdk/cx_api/__init__.py +23 -2
- aws_cdk/pipelines/__init__.py +71 -1
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/RECORD +60 -59
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.189.0.dist-info}/top_level.txt +0 -0
|
@@ -41,6 +41,7 @@ from .._jsii import *
|
|
|
41
41
|
import constructs as _constructs_77d1e7e8
|
|
42
42
|
from ..aws_iam import IRole as _IRole_235f5d8e
|
|
43
43
|
from ..aws_kinesis import IStream as _IStream_4e2457d2
|
|
44
|
+
from ..aws_kinesisfirehose import IDeliveryStream as _IDeliveryStream_8f118861
|
|
44
45
|
from ..aws_lambda import IFunction as _IFunction_6adb0ab8
|
|
45
46
|
from ..aws_logs import (
|
|
46
47
|
ILogGroup as _ILogGroup_3c4fa718,
|
|
@@ -49,6 +50,127 @@ from ..aws_logs import (
|
|
|
49
50
|
)
|
|
50
51
|
|
|
51
52
|
|
|
53
|
+
@jsii.implements(_ILogSubscriptionDestination_99a12804)
|
|
54
|
+
class FirehoseDestination(
|
|
55
|
+
metaclass=jsii.JSIIMeta,
|
|
56
|
+
jsii_type="aws-cdk-lib.aws_logs_destinations.FirehoseDestination",
|
|
57
|
+
):
|
|
58
|
+
'''Use a Data Firehose delivery stream as the destination for a log subscription.
|
|
59
|
+
|
|
60
|
+
:exampleMetadata: infused
|
|
61
|
+
|
|
62
|
+
Example::
|
|
63
|
+
|
|
64
|
+
import aws_cdk.aws_logs_destinations as destinations
|
|
65
|
+
import aws_cdk.aws_kinesisfirehose as firehose
|
|
66
|
+
|
|
67
|
+
# delivery_stream: firehose.IDeliveryStream
|
|
68
|
+
# log_group: logs.LogGroup
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
logs.SubscriptionFilter(self, "Subscription",
|
|
72
|
+
log_group=log_group,
|
|
73
|
+
destination=destinations.FirehoseDestination(delivery_stream),
|
|
74
|
+
filter_pattern=logs.FilterPattern.all_events()
|
|
75
|
+
)
|
|
76
|
+
'''
|
|
77
|
+
|
|
78
|
+
def __init__(
|
|
79
|
+
self,
|
|
80
|
+
stream: _IDeliveryStream_8f118861,
|
|
81
|
+
*,
|
|
82
|
+
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
83
|
+
) -> None:
|
|
84
|
+
'''
|
|
85
|
+
:param stream: The Data Firehose delivery stream to use as destination.
|
|
86
|
+
:param role: The role to assume to write log events to the destination. Default: - A new Role is created
|
|
87
|
+
'''
|
|
88
|
+
if __debug__:
|
|
89
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4cb4e49bfe3a6c7ef67778da7a93e24765ed8e25b0e86da6e92e1d5205457086)
|
|
90
|
+
check_type(argname="argument stream", value=stream, expected_type=type_hints["stream"])
|
|
91
|
+
props = FirehoseDestinationProps(role=role)
|
|
92
|
+
|
|
93
|
+
jsii.create(self.__class__, self, [stream, props])
|
|
94
|
+
|
|
95
|
+
@jsii.member(jsii_name="bind")
|
|
96
|
+
def bind(
|
|
97
|
+
self,
|
|
98
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
99
|
+
_source_log_group: _ILogGroup_3c4fa718,
|
|
100
|
+
) -> _LogSubscriptionDestinationConfig_15877ced:
|
|
101
|
+
'''Return the properties required to send subscription events to this destination.
|
|
102
|
+
|
|
103
|
+
If necessary, the destination can use the properties of the SubscriptionFilter
|
|
104
|
+
object itself to configure its permissions to allow the subscription to write
|
|
105
|
+
to it.
|
|
106
|
+
|
|
107
|
+
The destination may reconfigure its own permissions in response to this
|
|
108
|
+
function call.
|
|
109
|
+
|
|
110
|
+
:param scope: -
|
|
111
|
+
:param _source_log_group: -
|
|
112
|
+
'''
|
|
113
|
+
if __debug__:
|
|
114
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b48d2560b01f38d75fb9bf3c773ce107d4b79363d6f0dced504bd870eebb715b)
|
|
115
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
116
|
+
check_type(argname="argument _source_log_group", value=_source_log_group, expected_type=type_hints["_source_log_group"])
|
|
117
|
+
return typing.cast(_LogSubscriptionDestinationConfig_15877ced, jsii.invoke(self, "bind", [scope, _source_log_group]))
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
@jsii.data_type(
|
|
121
|
+
jsii_type="aws-cdk-lib.aws_logs_destinations.FirehoseDestinationProps",
|
|
122
|
+
jsii_struct_bases=[],
|
|
123
|
+
name_mapping={"role": "role"},
|
|
124
|
+
)
|
|
125
|
+
class FirehoseDestinationProps:
|
|
126
|
+
def __init__(self, *, role: typing.Optional[_IRole_235f5d8e] = None) -> None:
|
|
127
|
+
'''Customize the Amazon Data Firehose Logs Destination.
|
|
128
|
+
|
|
129
|
+
:param role: The role to assume to write log events to the destination. Default: - A new Role is created
|
|
130
|
+
|
|
131
|
+
:exampleMetadata: fixture=_generated
|
|
132
|
+
|
|
133
|
+
Example::
|
|
134
|
+
|
|
135
|
+
# The code below shows an example of how to instantiate this type.
|
|
136
|
+
# The values are placeholders you should change.
|
|
137
|
+
from aws_cdk import aws_iam as iam
|
|
138
|
+
from aws_cdk import aws_logs_destinations as logs_destinations
|
|
139
|
+
|
|
140
|
+
# role: iam.Role
|
|
141
|
+
|
|
142
|
+
firehose_destination_props = logs_destinations.FirehoseDestinationProps(
|
|
143
|
+
role=role
|
|
144
|
+
)
|
|
145
|
+
'''
|
|
146
|
+
if __debug__:
|
|
147
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b45f72f38e87e36b03e7d6828642750a36a55581864f0124704f80206950b2e6)
|
|
148
|
+
check_type(argname="argument role", value=role, expected_type=type_hints["role"])
|
|
149
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
150
|
+
if role is not None:
|
|
151
|
+
self._values["role"] = role
|
|
152
|
+
|
|
153
|
+
@builtins.property
|
|
154
|
+
def role(self) -> typing.Optional[_IRole_235f5d8e]:
|
|
155
|
+
'''The role to assume to write log events to the destination.
|
|
156
|
+
|
|
157
|
+
:default: - A new Role is created
|
|
158
|
+
'''
|
|
159
|
+
result = self._values.get("role")
|
|
160
|
+
return typing.cast(typing.Optional[_IRole_235f5d8e], result)
|
|
161
|
+
|
|
162
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
163
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
164
|
+
|
|
165
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
166
|
+
return not (rhs == self)
|
|
167
|
+
|
|
168
|
+
def __repr__(self) -> str:
|
|
169
|
+
return "FirehoseDestinationProps(%s)" % ", ".join(
|
|
170
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
171
|
+
)
|
|
172
|
+
|
|
173
|
+
|
|
52
174
|
@jsii.implements(_ILogSubscriptionDestination_99a12804)
|
|
53
175
|
class KinesisDestination(
|
|
54
176
|
metaclass=jsii.JSIIMeta,
|
|
@@ -296,6 +418,8 @@ class LambdaDestinationOptions:
|
|
|
296
418
|
|
|
297
419
|
|
|
298
420
|
__all__ = [
|
|
421
|
+
"FirehoseDestination",
|
|
422
|
+
"FirehoseDestinationProps",
|
|
299
423
|
"KinesisDestination",
|
|
300
424
|
"KinesisDestinationProps",
|
|
301
425
|
"LambdaDestination",
|
|
@@ -304,6 +428,28 @@ __all__ = [
|
|
|
304
428
|
|
|
305
429
|
publication.publish()
|
|
306
430
|
|
|
431
|
+
def _typecheckingstub__4cb4e49bfe3a6c7ef67778da7a93e24765ed8e25b0e86da6e92e1d5205457086(
|
|
432
|
+
stream: _IDeliveryStream_8f118861,
|
|
433
|
+
*,
|
|
434
|
+
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
435
|
+
) -> None:
|
|
436
|
+
"""Type checking stubs"""
|
|
437
|
+
pass
|
|
438
|
+
|
|
439
|
+
def _typecheckingstub__b48d2560b01f38d75fb9bf3c773ce107d4b79363d6f0dced504bd870eebb715b(
|
|
440
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
441
|
+
_source_log_group: _ILogGroup_3c4fa718,
|
|
442
|
+
) -> None:
|
|
443
|
+
"""Type checking stubs"""
|
|
444
|
+
pass
|
|
445
|
+
|
|
446
|
+
def _typecheckingstub__b45f72f38e87e36b03e7d6828642750a36a55581864f0124704f80206950b2e6(
|
|
447
|
+
*,
|
|
448
|
+
role: typing.Optional[_IRole_235f5d8e] = None,
|
|
449
|
+
) -> None:
|
|
450
|
+
"""Type checking stubs"""
|
|
451
|
+
pass
|
|
452
|
+
|
|
307
453
|
def _typecheckingstub__6f4422231f62d5490fdbb0217f4c6e73134c1c066522144d9488224a6ffe689b(
|
|
308
454
|
stream: _IStream_4e2457d2,
|
|
309
455
|
*,
|
|
@@ -696,7 +696,7 @@ class CfnManagedNotificationAccountContactAssociation(
|
|
|
696
696
|
):
|
|
697
697
|
'''Associates an Account Management Contact with a ``ManagedNotificationConfiguration`` for AWS User Notifications .
|
|
698
698
|
|
|
699
|
-
For more information about AWS User Notifications , see the `AWS User Notifications User Guide <https://docs.aws.amazon.com/notifications/latest/userguide/what-is-service.html>`_ . For more information about Account Management Contacts, see the `
|
|
699
|
+
For more information about AWS User Notifications , see the `AWS User Notifications User Guide <https://docs.aws.amazon.com/notifications/latest/userguide/what-is-service.html>`_ . For more information about Account Management Contacts, see the `Account Management Reference Guide <https://docs.aws.amazon.com/accounts/latest/reference/API_AlternateContact.html>`_ .
|
|
700
700
|
|
|
701
701
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html
|
|
702
702
|
:cloudformationResource: AWS::Notifications::ManagedNotificationAccountContactAssociation
|
|
@@ -725,7 +725,7 @@ class CfnManagedNotificationAccountContactAssociation(
|
|
|
725
725
|
'''
|
|
726
726
|
:param scope: Scope in which this resource is defined.
|
|
727
727
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
728
|
-
:param contact_identifier: The unique identifier of the notification contact associated with the AWS account. For more information about the contact types associated with an account, see the `
|
|
728
|
+
:param contact_identifier: The unique identifier of the notification contact associated with the AWS account. For more information about the contact types associated with an account, see the `Account Management Reference Guide <https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-update-contact-alternate.html#manage-acct-update-contact-alternate-orgs>`_ .
|
|
729
729
|
:param managed_notification_configuration_arn: The ARN of the ``ManagedNotificationConfiguration`` to be associated with the ``Channel`` .
|
|
730
730
|
'''
|
|
731
731
|
if __debug__:
|
|
@@ -818,7 +818,7 @@ class CfnManagedNotificationAccountContactAssociationProps:
|
|
|
818
818
|
) -> None:
|
|
819
819
|
'''Properties for defining a ``CfnManagedNotificationAccountContactAssociation``.
|
|
820
820
|
|
|
821
|
-
:param contact_identifier: The unique identifier of the notification contact associated with the AWS account. For more information about the contact types associated with an account, see the `
|
|
821
|
+
:param contact_identifier: The unique identifier of the notification contact associated with the AWS account. For more information about the contact types associated with an account, see the `Account Management Reference Guide <https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-update-contact-alternate.html#manage-acct-update-contact-alternate-orgs>`_ .
|
|
822
822
|
:param managed_notification_configuration_arn: The ARN of the ``ManagedNotificationConfiguration`` to be associated with the ``Channel`` .
|
|
823
823
|
|
|
824
824
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html
|
|
@@ -848,7 +848,7 @@ class CfnManagedNotificationAccountContactAssociationProps:
|
|
|
848
848
|
def contact_identifier(self) -> builtins.str:
|
|
849
849
|
'''The unique identifier of the notification contact associated with the AWS account.
|
|
850
850
|
|
|
851
|
-
For more information about the contact types associated with an account, see the `
|
|
851
|
+
For more information about the contact types associated with an account, see the `Account Management Reference Guide <https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-update-contact-alternate.html#manage-acct-update-contact-alternate-orgs>`_ .
|
|
852
852
|
|
|
853
853
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html#cfn-notifications-managednotificationaccountcontactassociation-contactidentifier
|
|
854
854
|
'''
|
aws_cdk/aws_omics/__init__.py
CHANGED
|
@@ -2707,7 +2707,15 @@ class CfnWorkflow(
|
|
|
2707
2707
|
metaclass=jsii.JSIIMeta,
|
|
2708
2708
|
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow",
|
|
2709
2709
|
):
|
|
2710
|
-
'''Creates a workflow.
|
|
2710
|
+
'''Creates a private workflow.Private workflows depend on a variety of resources that you create and configure before creating the workflow:.
|
|
2711
|
+
|
|
2712
|
+
- *Input data* : Input data for the workflow, stored in an S3 bucket or a AWS HealthOmics sequence store.
|
|
2713
|
+
- *Workflow definition files* : Define your workflow in one or more workflow definition files, written in WDL, Nextflow, or CWL. The workflow definition specifies the inputs and outputs for runs that use the workflow. It also includes specifications for the runs and run tasks for your workflow, including compute and memory requirements.
|
|
2714
|
+
- *Parameter template files* : Define run parameters using a parameter template file (written in JSON).
|
|
2715
|
+
- *ECR container images* : Create one or more container images for the workflow. Store the images in a private ECR repository.
|
|
2716
|
+
- (Optional) *Sentieon licenses* : Request a Sentieon license if you plan to use Sentieon software in a private workflow.
|
|
2717
|
+
|
|
2718
|
+
For more information, see `Creating private workflows in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/workflows-setup.html>`_ in the AWS HealthOmics User Guide.
|
|
2711
2719
|
|
|
2712
2720
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
|
|
2713
2721
|
:cloudformationResource: AWS::Omics::Workflow
|
|
@@ -765,8 +765,8 @@ class CfnIndex(
|
|
|
765
765
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
766
766
|
:param collection_endpoint: The endpoint for the collection.
|
|
767
767
|
:param index_name: The name of the OpenSearch Serverless index.
|
|
768
|
-
:param mappings: Index
|
|
769
|
-
:param settings:
|
|
768
|
+
:param mappings: Index mappings for the OpenSearch Serverless index.
|
|
769
|
+
:param settings: Index settings for the OpenSearch Serverless index.
|
|
770
770
|
'''
|
|
771
771
|
if __debug__:
|
|
772
772
|
type_hints = typing.get_type_hints(_typecheckingstub__a029f2a84e6e81eb77a837c5b057c54ae69d5f1ddda222ff52881f5d0f352fea)
|
|
@@ -856,7 +856,7 @@ class CfnIndex(
|
|
|
856
856
|
def mappings(
|
|
857
857
|
self,
|
|
858
858
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnIndex.MappingsProperty"]]:
|
|
859
|
-
'''Index
|
|
859
|
+
'''Index mappings for the OpenSearch Serverless index.'''
|
|
860
860
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnIndex.MappingsProperty"]], jsii.get(self, "mappings"))
|
|
861
861
|
|
|
862
862
|
@mappings.setter
|
|
@@ -874,6 +874,7 @@ class CfnIndex(
|
|
|
874
874
|
def settings(
|
|
875
875
|
self,
|
|
876
876
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnIndex.IndexSettingsProperty"]]:
|
|
877
|
+
'''Index settings for the OpenSearch Serverless index.'''
|
|
877
878
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnIndex.IndexSettingsProperty"]], jsii.get(self, "settings"))
|
|
878
879
|
|
|
879
880
|
@settings.setter
|
|
@@ -903,10 +904,11 @@ class CfnIndex(
|
|
|
903
904
|
knn_algo_param_ef_search: typing.Optional[jsii.Number] = None,
|
|
904
905
|
refresh_interval: typing.Optional[builtins.str] = None,
|
|
905
906
|
) -> None:
|
|
906
|
-
'''
|
|
907
|
-
|
|
908
|
-
:param
|
|
909
|
-
:param
|
|
907
|
+
'''An OpenSearch Serverless index resource.
|
|
908
|
+
|
|
909
|
+
:param knn: Enable or disable k-nearest neighbor search capability.
|
|
910
|
+
:param knn_algo_param_ef_search: The size of the dynamic list for the nearest neighbors.
|
|
911
|
+
:param refresh_interval: How often to perform a refresh operation. For example, 1s or 5s.
|
|
910
912
|
|
|
911
913
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-index.html
|
|
912
914
|
:exampleMetadata: fixture=_generated
|
|
@@ -940,7 +942,7 @@ class CfnIndex(
|
|
|
940
942
|
def knn(
|
|
941
943
|
self,
|
|
942
944
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
943
|
-
'''Enable
|
|
945
|
+
'''Enable or disable k-nearest neighbor search capability.
|
|
944
946
|
|
|
945
947
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-index.html#cfn-opensearchserverless-index-index-knn
|
|
946
948
|
'''
|
|
@@ -949,7 +951,7 @@ class CfnIndex(
|
|
|
949
951
|
|
|
950
952
|
@builtins.property
|
|
951
953
|
def knn_algo_param_ef_search(self) -> typing.Optional[jsii.Number]:
|
|
952
|
-
'''
|
|
954
|
+
'''The size of the dynamic list for the nearest neighbors.
|
|
953
955
|
|
|
954
956
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-index.html#cfn-opensearchserverless-index-index-knnalgoparamefsearch
|
|
955
957
|
'''
|
|
@@ -958,7 +960,9 @@ class CfnIndex(
|
|
|
958
960
|
|
|
959
961
|
@builtins.property
|
|
960
962
|
def refresh_interval(self) -> typing.Optional[builtins.str]:
|
|
961
|
-
'''How often to perform refresh operation
|
|
963
|
+
'''How often to perform a refresh operation.
|
|
964
|
+
|
|
965
|
+
For example, 1s or 5s.
|
|
962
966
|
|
|
963
967
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-index.html#cfn-opensearchserverless-index-index-refreshinterval
|
|
964
968
|
'''
|
|
@@ -987,8 +991,9 @@ class CfnIndex(
|
|
|
987
991
|
*,
|
|
988
992
|
index: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnIndex.IndexProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
989
993
|
) -> None:
|
|
990
|
-
'''
|
|
991
|
-
|
|
994
|
+
'''Index settings for the OpenSearch Serverless index.
|
|
995
|
+
|
|
996
|
+
:param index: Index settings.
|
|
992
997
|
|
|
993
998
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-indexsettings.html
|
|
994
999
|
:exampleMetadata: fixture=_generated
|
|
@@ -1018,7 +1023,8 @@ class CfnIndex(
|
|
|
1018
1023
|
def index(
|
|
1019
1024
|
self,
|
|
1020
1025
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnIndex.IndexProperty"]]:
|
|
1021
|
-
'''
|
|
1026
|
+
'''Index settings.
|
|
1027
|
+
|
|
1022
1028
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-indexsettings.html#cfn-opensearchserverless-index-indexsettings-index
|
|
1023
1029
|
'''
|
|
1024
1030
|
result = self._values.get("index")
|
|
@@ -1046,9 +1052,9 @@ class CfnIndex(
|
|
|
1046
1052
|
*,
|
|
1047
1053
|
properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnIndex.PropertyMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1048
1054
|
) -> None:
|
|
1049
|
-
'''Index
|
|
1055
|
+
'''Index mappings for the OpenSearch Serverless index.
|
|
1050
1056
|
|
|
1051
|
-
:param properties:
|
|
1057
|
+
:param properties: Nested fields within an object or nested field type.
|
|
1052
1058
|
|
|
1053
1059
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-mappings.html
|
|
1054
1060
|
:exampleMetadata: fixture=_generated
|
|
@@ -1099,7 +1105,7 @@ class CfnIndex(
|
|
|
1099
1105
|
def properties(
|
|
1100
1106
|
self,
|
|
1101
1107
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnIndex.PropertyMappingProperty"]]]]:
|
|
1102
|
-
'''
|
|
1108
|
+
'''Nested fields within an object or nested field type.
|
|
1103
1109
|
|
|
1104
1110
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-mappings.html#cfn-opensearchserverless-index-mappings-properties
|
|
1105
1111
|
'''
|
|
@@ -1323,12 +1329,13 @@ class CfnIndex(
|
|
|
1323
1329
|
properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnIndex.PropertyMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1324
1330
|
value: typing.Optional[builtins.str] = None,
|
|
1325
1331
|
) -> None:
|
|
1326
|
-
'''
|
|
1332
|
+
'''Property mappings for the OpenSearch Serverless index.
|
|
1333
|
+
|
|
1327
1334
|
:param type: The field data type. Must be a valid OpenSearch field type.
|
|
1328
1335
|
:param dimension: Dimension size for vector fields, defines the number of dimensions in the vector.
|
|
1329
1336
|
:param index: Whether a field should be indexed.
|
|
1330
1337
|
:param method: Configuration for k-NN search method.
|
|
1331
|
-
:param properties:
|
|
1338
|
+
:param properties: Defines the fields within the mapping, including their types and configurations.
|
|
1332
1339
|
:param value: Default value for the field when not specified in a document.
|
|
1333
1340
|
|
|
1334
1341
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-propertymapping.html
|
|
@@ -1434,7 +1441,7 @@ class CfnIndex(
|
|
|
1434
1441
|
def properties(
|
|
1435
1442
|
self,
|
|
1436
1443
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnIndex.PropertyMappingProperty"]]]]:
|
|
1437
|
-
'''
|
|
1444
|
+
'''Defines the fields within the mapping, including their types and configurations.
|
|
1438
1445
|
|
|
1439
1446
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-index-propertymapping.html#cfn-opensearchserverless-index-propertymapping-properties
|
|
1440
1447
|
'''
|
|
@@ -1485,8 +1492,8 @@ class CfnIndexProps:
|
|
|
1485
1492
|
|
|
1486
1493
|
:param collection_endpoint: The endpoint for the collection.
|
|
1487
1494
|
:param index_name: The name of the OpenSearch Serverless index.
|
|
1488
|
-
:param mappings: Index
|
|
1489
|
-
:param settings:
|
|
1495
|
+
:param mappings: Index mappings for the OpenSearch Serverless index.
|
|
1496
|
+
:param settings: Index settings for the OpenSearch Serverless index.
|
|
1490
1497
|
|
|
1491
1498
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-index.html
|
|
1492
1499
|
:exampleMetadata: fixture=_generated
|
|
@@ -1578,7 +1585,7 @@ class CfnIndexProps:
|
|
|
1578
1585
|
def mappings(
|
|
1579
1586
|
self,
|
|
1580
1587
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnIndex.MappingsProperty]]:
|
|
1581
|
-
'''Index
|
|
1588
|
+
'''Index mappings for the OpenSearch Serverless index.
|
|
1582
1589
|
|
|
1583
1590
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-index.html#cfn-opensearchserverless-index-mappings
|
|
1584
1591
|
'''
|
|
@@ -1589,7 +1596,8 @@ class CfnIndexProps:
|
|
|
1589
1596
|
def settings(
|
|
1590
1597
|
self,
|
|
1591
1598
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnIndex.IndexSettingsProperty]]:
|
|
1592
|
-
'''
|
|
1599
|
+
'''Index settings for the OpenSearch Serverless index.
|
|
1600
|
+
|
|
1593
1601
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-index.html#cfn-opensearchserverless-index-settings
|
|
1594
1602
|
'''
|
|
1595
1603
|
result = self._values.get("settings")
|
|
@@ -103,7 +103,7 @@ class CfnAccount(
|
|
|
103
103
|
- Email
|
|
104
104
|
- RoleName
|
|
105
105
|
|
|
106
|
-
If you attempt to update the listed parameters, CloudFormation will attempt the update, but you will receive an error message as those updates are not supported from an Organizations management account or a `registered delegated administrator <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html>`_ account. Both the update and the update roll-back will fail, so you must skip the account resource update. To update parameters ``AccountName`` and ``Email`` , you must sign in to the AWS Management Console as the AWS account root user. For more information, see `Update the AWS account name, email address, or password for the root user <https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-update-root-user.html>`_ in the *
|
|
106
|
+
If you attempt to update the listed parameters, CloudFormation will attempt the update, but you will receive an error message as those updates are not supported from an Organizations management account or a `registered delegated administrator <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html>`_ account. Both the update and the update roll-back will fail, so you must skip the account resource update. To update parameters ``AccountName`` and ``Email`` , you must sign in to the AWS Management Console as the AWS account root user. For more information, see `Update the AWS account name, email address, or password for the root user <https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-update-root-user.html>`_ in the *Account Management Reference Guide* .
|
|
107
107
|
|
|
108
108
|
- When you create an account in an organization using the AWS Organizations console, API, or AWS CLI commands, we don't automatically collect the information required for the account to operate as a standalone account. That includes collecting the payment method and signing the end user license agreement (EULA). If you must remove an account from your organization later, you can do so only after you provide the missing information. For more information, see `Considerations before removing an account from an organization <https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_account-before-remove.html>`_ in the *AWS Organizations User Guide* .
|
|
109
109
|
- When you create an account in an organization using AWS CloudFormation , you can't specify a value for the ``CreateAccount`` operation parameter ``IamUserAccessToBilling`` . The default value for parameter ``IamUserAccessToBilling`` is ``ALLOW`` , and IAM users and roles with the required permissions can access billing information for the new account.
|
|
@@ -297,9 +297,13 @@ class CfnKey(
|
|
|
297
297
|
|
|
298
298
|
In addition to the key material used in cryptographic operations, an AWS Payment Cryptography key includes metadata such as the key ARN, key usage, key origin, creation date, description, and key state.
|
|
299
299
|
|
|
300
|
-
When you create a key, you specify both immutable and mutable data about the key. The immutable data contains key attributes that define the scope and cryptographic operations that you can perform using the key, for example key class (example: ``SYMMETRIC_KEY`` ), key algorithm (example: ``TDES_2KEY`` ), key usage (example: ``TR31_P0_PIN_ENCRYPTION_KEY`` ) and key modes of use (example: ``Encrypt`` ).
|
|
300
|
+
When you create a key, you specify both immutable and mutable data about the key. The immutable data contains key attributes that define the scope and cryptographic operations that you can perform using the key, for example key class (example: ``SYMMETRIC_KEY`` ), key algorithm (example: ``TDES_2KEY`` ), key usage (example: ``TR31_P0_PIN_ENCRYPTION_KEY`` ) and key modes of use (example: ``Encrypt`` ). AWS Payment Cryptography binds key attributes to keys using key blocks when you store or export them. AWS Payment Cryptography stores the key contents wrapped and never stores or transmits them in the clear.
|
|
301
301
|
|
|
302
|
-
|
|
302
|
+
For information about valid combinations of key attributes, see `Understanding key attributes <https://docs.aws.amazon.com/payment-cryptography/latest/userguide/keys-validattributes.html>`_ in the *AWS Payment Cryptography User Guide* . The mutable data contained within a key includes usage timestamp and key deletion timestamp and can be modified after creation.
|
|
303
|
+
|
|
304
|
+
You can use the ``CreateKey`` operation to generate an ECC (Elliptic Curve Cryptography) key pair used for establishing an ECDH (Elliptic Curve Diffie-Hellman) key agreement between two parties. In the ECDH key agreement process, both parties generate their own ECC key pair with key usage K3 and exchange the public keys. Each party then use their private key, the received public key from the other party, and the key derivation parameters including key derivation function, hash algorithm, derivation data, and key algorithm to derive a shared key.
|
|
305
|
+
|
|
306
|
+
To maintain the single-use principle of cryptographic keys in payments, ECDH derived keys should not be used for multiple purposes, such as a ``TR31_P0_PIN_ENCRYPTION_KEY`` and ``TR31_K1_KEY_BLOCK_PROTECTION_KEY`` . When creating ECC key pairs in AWS Payment Cryptography you can optionally set the ``DeriveKeyUsage`` parameter, which defines the key usage bound to the symmetric key that will be derived using the ECC key pair.
|
|
303
307
|
|
|
304
308
|
*Cross-account use* : This operation can't be used across different AWS accounts.
|
|
305
309
|
|
|
@@ -274,7 +274,7 @@ class CfnConnector(
|
|
|
274
274
|
'''Information about your VPC and security groups used with the connector.
|
|
275
275
|
|
|
276
276
|
:param security_group_ids: The security groups used with the connector. You can use a maximum of 4 security groups with a connector.
|
|
277
|
-
:param ip_address_type:
|
|
277
|
+
:param ip_address_type: The VPC IP address type.
|
|
278
278
|
|
|
279
279
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorad-connector-vpcinformation.html
|
|
280
280
|
:exampleMetadata: fixture=_generated
|
|
@@ -316,7 +316,8 @@ class CfnConnector(
|
|
|
316
316
|
|
|
317
317
|
@builtins.property
|
|
318
318
|
def ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
319
|
-
'''
|
|
319
|
+
'''The VPC IP address type.
|
|
320
|
+
|
|
320
321
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorad-connector-vpcinformation.html#cfn-pcaconnectorad-connector-vpcinformation-ipaddresstype
|
|
321
322
|
'''
|
|
322
323
|
result = self._values.get("ip_address_type")
|
|
@@ -142045,7 +142045,7 @@ class CfnDataSet(
|
|
|
142045
142045
|
:param row_level_permission_data_set: The row-level security configuration for the data that you want to create.
|
|
142046
142046
|
:param row_level_permission_tag_configuration: The element you can use to define tags for row-level security.
|
|
142047
142047
|
:param tags: Contains a map of the key-value pairs for the resource tag or tags assigned to the dataset.
|
|
142048
|
-
:param use_as:
|
|
142048
|
+
:param use_as: The usage of the dataset.
|
|
142049
142049
|
'''
|
|
142050
142050
|
if __debug__:
|
|
142051
142051
|
type_hints = typing.get_type_hints(_typecheckingstub__72d075b7003c65fe0f5754c362b528fce8eccbf0c8bca521f7a3200fbe0f67f5)
|
|
@@ -142480,6 +142480,7 @@ class CfnDataSet(
|
|
|
142480
142480
|
@builtins.property
|
|
142481
142481
|
@jsii.member(jsii_name="useAs")
|
|
142482
142482
|
def use_as(self) -> typing.Optional[builtins.str]:
|
|
142483
|
+
'''The usage of the dataset.'''
|
|
142483
142484
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "useAs"))
|
|
142484
142485
|
|
|
142485
142486
|
@use_as.setter
|
|
@@ -143152,7 +143153,7 @@ class CfnDataSet(
|
|
|
143152
143153
|
) -> None:
|
|
143153
143154
|
'''The refresh properties of a dataset.
|
|
143154
143155
|
|
|
143155
|
-
:param failure_configuration:
|
|
143156
|
+
:param failure_configuration: The failure configuration for a dataset.
|
|
143156
143157
|
:param refresh_configuration: The refresh configuration for a dataset.
|
|
143157
143158
|
|
|
143158
143159
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetrefreshproperties.html
|
|
@@ -143195,7 +143196,8 @@ class CfnDataSet(
|
|
|
143195
143196
|
def failure_configuration(
|
|
143196
143197
|
self,
|
|
143197
143198
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.RefreshFailureConfigurationProperty"]]:
|
|
143198
|
-
'''
|
|
143199
|
+
'''The failure configuration for a dataset.
|
|
143200
|
+
|
|
143199
143201
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-datasetrefreshproperties.html#cfn-quicksight-dataset-datasetrefreshproperties-failureconfiguration
|
|
143200
143202
|
'''
|
|
143201
143203
|
result = self._values.get("failure_configuration")
|
|
@@ -145667,8 +145669,9 @@ class CfnDataSet(
|
|
|
145667
145669
|
*,
|
|
145668
145670
|
email_alert: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSet.RefreshFailureEmailAlertProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
145669
145671
|
) -> None:
|
|
145670
|
-
'''
|
|
145671
|
-
|
|
145672
|
+
'''The failure configuration of a dataset.
|
|
145673
|
+
|
|
145674
|
+
:param email_alert: The email alert configuration for a dataset refresh failure.
|
|
145672
145675
|
|
|
145673
145676
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshfailureconfiguration.html
|
|
145674
145677
|
:exampleMetadata: fixture=_generated
|
|
@@ -145696,7 +145699,8 @@ class CfnDataSet(
|
|
|
145696
145699
|
def email_alert(
|
|
145697
145700
|
self,
|
|
145698
145701
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSet.RefreshFailureEmailAlertProperty"]]:
|
|
145699
|
-
'''
|
|
145702
|
+
'''The email alert configuration for a dataset refresh failure.
|
|
145703
|
+
|
|
145700
145704
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshfailureconfiguration.html#cfn-quicksight-dataset-refreshfailureconfiguration-emailalert
|
|
145701
145705
|
'''
|
|
145702
145706
|
result = self._values.get("email_alert")
|
|
@@ -145724,8 +145728,9 @@ class CfnDataSet(
|
|
|
145724
145728
|
*,
|
|
145725
145729
|
alert_status: typing.Optional[builtins.str] = None,
|
|
145726
145730
|
) -> None:
|
|
145727
|
-
'''
|
|
145728
|
-
|
|
145731
|
+
'''The configuration settings for the email alerts that are sent when a dataset refresh fails.
|
|
145732
|
+
|
|
145733
|
+
:param alert_status: The status value that determines if email alerts are sent.
|
|
145729
145734
|
|
|
145730
145735
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshfailureemailalert.html
|
|
145731
145736
|
:exampleMetadata: fixture=_generated
|
|
@@ -145749,7 +145754,8 @@ class CfnDataSet(
|
|
|
145749
145754
|
|
|
145750
145755
|
@builtins.property
|
|
145751
145756
|
def alert_status(self) -> typing.Optional[builtins.str]:
|
|
145752
|
-
'''
|
|
145757
|
+
'''The status value that determines if email alerts are sent.
|
|
145758
|
+
|
|
145753
145759
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-refreshfailureemailalert.html#cfn-quicksight-dataset-refreshfailureemailalert-alertstatus
|
|
145754
145760
|
'''
|
|
145755
145761
|
result = self._values.get("alert_status")
|
|
@@ -147140,12 +147146,13 @@ class CfnDataSet(
|
|
|
147140
147146
|
start_from_row: typing.Optional[jsii.Number] = None,
|
|
147141
147147
|
text_qualifier: typing.Optional[builtins.str] = None,
|
|
147142
147148
|
) -> None:
|
|
147143
|
-
'''
|
|
147144
|
-
|
|
147145
|
-
:param
|
|
147146
|
-
:param
|
|
147147
|
-
:param
|
|
147148
|
-
:param
|
|
147149
|
+
'''Information about the format for a source file or files.
|
|
147150
|
+
|
|
147151
|
+
:param contains_header: Whether the file has a header row, or the files each have a header row.
|
|
147152
|
+
:param delimiter: The delimiter between values in the file.
|
|
147153
|
+
:param format: File format.
|
|
147154
|
+
:param start_from_row: A row number to start reading data from.
|
|
147155
|
+
:param text_qualifier: Text qualifier.
|
|
147149
147156
|
|
|
147150
147157
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html
|
|
147151
147158
|
:exampleMetadata: fixture=_generated
|
|
@@ -147187,7 +147194,8 @@ class CfnDataSet(
|
|
|
147187
147194
|
def contains_header(
|
|
147188
147195
|
self,
|
|
147189
147196
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
147190
|
-
'''
|
|
147197
|
+
'''Whether the file has a header row, or the files each have a header row.
|
|
147198
|
+
|
|
147191
147199
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html#cfn-quicksight-dataset-uploadsettings-containsheader
|
|
147192
147200
|
'''
|
|
147193
147201
|
result = self._values.get("contains_header")
|
|
@@ -147195,7 +147203,8 @@ class CfnDataSet(
|
|
|
147195
147203
|
|
|
147196
147204
|
@builtins.property
|
|
147197
147205
|
def delimiter(self) -> typing.Optional[builtins.str]:
|
|
147198
|
-
'''
|
|
147206
|
+
'''The delimiter between values in the file.
|
|
147207
|
+
|
|
147199
147208
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html#cfn-quicksight-dataset-uploadsettings-delimiter
|
|
147200
147209
|
'''
|
|
147201
147210
|
result = self._values.get("delimiter")
|
|
@@ -147203,7 +147212,8 @@ class CfnDataSet(
|
|
|
147203
147212
|
|
|
147204
147213
|
@builtins.property
|
|
147205
147214
|
def format(self) -> typing.Optional[builtins.str]:
|
|
147206
|
-
'''
|
|
147215
|
+
'''File format.
|
|
147216
|
+
|
|
147207
147217
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html#cfn-quicksight-dataset-uploadsettings-format
|
|
147208
147218
|
'''
|
|
147209
147219
|
result = self._values.get("format")
|
|
@@ -147211,7 +147221,8 @@ class CfnDataSet(
|
|
|
147211
147221
|
|
|
147212
147222
|
@builtins.property
|
|
147213
147223
|
def start_from_row(self) -> typing.Optional[jsii.Number]:
|
|
147214
|
-
'''
|
|
147224
|
+
'''A row number to start reading data from.
|
|
147225
|
+
|
|
147215
147226
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html#cfn-quicksight-dataset-uploadsettings-startfromrow
|
|
147216
147227
|
'''
|
|
147217
147228
|
result = self._values.get("start_from_row")
|
|
@@ -147219,7 +147230,8 @@ class CfnDataSet(
|
|
|
147219
147230
|
|
|
147220
147231
|
@builtins.property
|
|
147221
147232
|
def text_qualifier(self) -> typing.Optional[builtins.str]:
|
|
147222
|
-
'''
|
|
147233
|
+
'''Text qualifier.
|
|
147234
|
+
|
|
147223
147235
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html#cfn-quicksight-dataset-uploadsettings-textqualifier
|
|
147224
147236
|
'''
|
|
147225
147237
|
result = self._values.get("text_qualifier")
|
|
@@ -147309,7 +147321,7 @@ class CfnDataSetProps:
|
|
|
147309
147321
|
:param row_level_permission_data_set: The row-level security configuration for the data that you want to create.
|
|
147310
147322
|
:param row_level_permission_tag_configuration: The element you can use to define tags for row-level security.
|
|
147311
147323
|
:param tags: Contains a map of the key-value pairs for the resource tag or tags assigned to the dataset.
|
|
147312
|
-
:param use_as:
|
|
147324
|
+
:param use_as: The usage of the dataset.
|
|
147313
147325
|
|
|
147314
147326
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dataset.html
|
|
147315
147327
|
:exampleMetadata: fixture=_generated
|
|
@@ -147852,7 +147864,8 @@ class CfnDataSetProps:
|
|
|
147852
147864
|
|
|
147853
147865
|
@builtins.property
|
|
147854
147866
|
def use_as(self) -> typing.Optional[builtins.str]:
|
|
147855
|
-
'''
|
|
147867
|
+
'''The usage of the dataset.
|
|
147868
|
+
|
|
147856
147869
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dataset.html#cfn-quicksight-dataset-useas
|
|
147857
147870
|
'''
|
|
147858
147871
|
result = self._values.get("use_as")
|