aws-cdk-lib 2.149.0__py3-none-any.whl → 2.150.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.

Files changed (34) hide show
  1. aws_cdk/__init__.py +4 -8
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.149.0.jsii.tgz → aws-cdk-lib@2.150.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_bedrock/__init__.py +30 -26
  5. aws_cdk/aws_cloudformation/__init__.py +4 -8
  6. aws_cdk/aws_cloudtrail/__init__.py +30 -558
  7. aws_cdk/aws_cloudwatch/__init__.py +1 -1
  8. aws_cdk/aws_codepipeline/__init__.py +11 -5
  9. aws_cdk/aws_cognito/__init__.py +1 -2
  10. aws_cdk/aws_ec2/__init__.py +82 -4
  11. aws_cdk/aws_ecs/__init__.py +10 -8
  12. aws_cdk/aws_eks/__init__.py +26 -20
  13. aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
  14. aws_cdk/aws_emr/__init__.py +18 -20
  15. aws_cdk/aws_fsx/__init__.py +25 -23
  16. aws_cdk/aws_glue/__init__.py +3 -3
  17. aws_cdk/aws_guardduty/__init__.py +6 -4
  18. aws_cdk/aws_iam/__init__.py +8 -5
  19. aws_cdk/aws_lambda/__init__.py +19 -2
  20. aws_cdk/aws_logs/__init__.py +9 -0
  21. aws_cdk/aws_qbusiness/__init__.py +21 -7
  22. aws_cdk/aws_rds/__init__.py +15 -9
  23. aws_cdk/aws_sagemaker/__init__.py +10 -10
  24. aws_cdk/aws_stepfunctions_tasks/__init__.py +6 -8
  25. aws_cdk/aws_synthetics/__init__.py +15 -1
  26. aws_cdk/custom_resources/__init__.py +91 -23
  27. aws_cdk/pipelines/__init__.py +1 -1
  28. aws_cdk/region_info/__init__.py +32 -12
  29. {aws_cdk_lib-2.149.0.dist-info → aws_cdk_lib-2.150.0.dist-info}/METADATA +1 -1
  30. {aws_cdk_lib-2.149.0.dist-info → aws_cdk_lib-2.150.0.dist-info}/RECORD +34 -34
  31. {aws_cdk_lib-2.149.0.dist-info → aws_cdk_lib-2.150.0.dist-info}/LICENSE +0 -0
  32. {aws_cdk_lib-2.149.0.dist-info → aws_cdk_lib-2.150.0.dist-info}/NOTICE +0 -0
  33. {aws_cdk_lib-2.149.0.dist-info → aws_cdk_lib-2.150.0.dist-info}/WHEEL +0 -0
  34. {aws_cdk_lib-2.149.0.dist-info → aws_cdk_lib-2.150.0.dist-info}/top_level.txt +0 -0
aws_cdk/__init__.py CHANGED
@@ -30122,7 +30122,7 @@ class CfnStackSet(
30122
30122
  ) -> None:
30123
30123
  '''The AWS OrganizationalUnitIds or Accounts for which to create stack instances in the specified Regions.
30124
30124
 
30125
- :param account_filter_type: Limit deployment targets to individual accounts or include additional accounts with provided OUs. The following is a list of possible values for the ``AccountFilterType`` operation. - ``INTERSECTION`` : StackSets deploys to the accounts specified in ``Accounts`` parameter. - ``DIFFERENCE`` : StackSets excludes the accounts specified in ``Accounts`` parameter. This enables user to avoid certain accounts within an OU such as suspended accounts. - ``UNION`` : StackSets includes additional accounts deployment targets. This is the default value if ``AccountFilterType`` is not provided. This enables user to update an entire OU and individual accounts from a different OU in one request, which used to be two separate requests. - ``NONE`` : Deploys to all the accounts in specified organizational units (OU).
30125
+ :param account_filter_type: Limit deployment targets to individual accounts or include additional accounts with provided OUs. The following is a list of possible values for the ``AccountFilterType`` operation. - ``INTERSECTION`` : StackSet deploys to the accounts specified in the ``Accounts`` parameter. - ``DIFFERENCE`` : StackSet deploys to the OU, excluding the accounts specified in the ``Accounts`` parameter. - ``UNION`` isn't supported when using StackSet as a resource.
30126
30126
  :param accounts: The names of one or more AWS accounts for which you want to deploy stack set updates. *Pattern* : ``^[0-9]{12}$``
30127
30127
  :param accounts_url: Returns the value of the ``AccountsUrl`` property.
30128
30128
  :param organizational_unit_ids: The organization root ID or organizational unit (OU) IDs to which StackSets deploys. *Pattern* : ``^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$``
@@ -30165,13 +30165,9 @@ class CfnStackSet(
30165
30165
 
30166
30166
  The following is a list of possible values for the ``AccountFilterType`` operation.
30167
30167
 
30168
- - ``INTERSECTION`` : StackSets deploys to the accounts specified in ``Accounts`` parameter.
30169
- - ``DIFFERENCE`` : StackSets excludes the accounts specified in ``Accounts`` parameter. This enables user to avoid certain accounts within an OU such as suspended accounts.
30170
- - ``UNION`` : StackSets includes additional accounts deployment targets.
30171
-
30172
- This is the default value if ``AccountFilterType`` is not provided. This enables user to update an entire OU and individual accounts from a different OU in one request, which used to be two separate requests.
30173
-
30174
- - ``NONE`` : Deploys to all the accounts in specified organizational units (OU).
30168
+ - ``INTERSECTION`` : StackSet deploys to the accounts specified in the ``Accounts`` parameter.
30169
+ - ``DIFFERENCE`` : StackSet deploys to the OU, excluding the accounts specified in the ``Accounts`` parameter.
30170
+ - ``UNION`` isn't supported when using StackSet as a resource.
30175
30171
 
30176
30172
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-deploymenttargets.html#cfn-cloudformation-stackset-deploymenttargets-accountfiltertype
30177
30173
  '''
aws_cdk/_jsii/__init__.py CHANGED
@@ -19,7 +19,7 @@ import aws_cdk.asset_node_proxy_agent_v6._jsii
19
19
  import constructs._jsii
20
20
 
21
21
  __jsii_assembly__ = jsii.JSIIAssembly.load(
22
- "aws-cdk-lib", "2.149.0", __name__[0:-6], "aws-cdk-lib@2.149.0.jsii.tgz"
22
+ "aws-cdk-lib", "2.150.0", __name__[0:-6], "aws-cdk-lib@2.150.0.jsii.tgz"
23
23
  )
24
24
 
25
25
  __all__ = [
@@ -1273,7 +1273,7 @@ class CfnAgent(
1273
1273
  guardrail_identifier: typing.Optional[builtins.str] = None,
1274
1274
  guardrail_version: typing.Optional[builtins.str] = None,
1275
1275
  ) -> None:
1276
- '''Configuration information for a guardrail that you use with the ``Converse`` action.
1276
+ '''Configuration information for a guardrail that you use with the `Converse <https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html>`_ operation.
1277
1277
 
1278
1278
  :param guardrail_identifier: The identifier for the guardrail.
1279
1279
  :param guardrail_version: The version of the guardrail.
@@ -1844,10 +1844,10 @@ class CfnAgent(
1844
1844
  s3_bucket_name: typing.Optional[builtins.str] = None,
1845
1845
  s3_object_key: typing.Optional[builtins.str] = None,
1846
1846
  ) -> None:
1847
- '''Contains information about the S3 object containing the resource.
1847
+ '''The identifier information for an Amazon S3 bucket.
1848
1848
 
1849
1849
  :param s3_bucket_name: The name of the S3 bucket.
1850
- :param s3_object_key: The S3 object key containing the resource.
1850
+ :param s3_object_key: The S3 object key for the S3 resource.
1851
1851
 
1852
1852
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-s3identifier.html
1853
1853
  :exampleMetadata: fixture=_generated
@@ -1884,7 +1884,7 @@ class CfnAgent(
1884
1884
 
1885
1885
  @builtins.property
1886
1886
  def s3_object_key(self) -> typing.Optional[builtins.str]:
1887
- '''The S3 object key containing the resource.
1887
+ '''The S3 object key for the S3 resource.
1888
1888
 
1889
1889
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-s3identifier.html#cfn-bedrock-agent-s3identifier-s3objectkey
1890
1890
  '''
@@ -2896,10 +2896,10 @@ class CfnDataSource(
2896
2896
  '''
2897
2897
  :param scope: Scope in which this resource is defined.
2898
2898
  :param id: Construct identifier for this resource (unique in its scope).
2899
- :param data_source_configuration: Contains details about how the data source is stored.
2899
+ :param data_source_configuration: The connection configuration for the data source.
2900
2900
  :param knowledge_base_id: The unique identifier of the knowledge base to which the data source belongs.
2901
2901
  :param name: The name of the data source.
2902
- :param data_deletion_policy: The data deletion policy for a data source.
2902
+ :param data_deletion_policy: The data deletion policy for the data source.
2903
2903
  :param description: The description of the data source.
2904
2904
  :param server_side_encryption_configuration: Contains details about the configuration of the server-side encryption.
2905
2905
  :param vector_ingestion_configuration: Contains details about how to ingest the documents in the data source.
@@ -3008,7 +3008,7 @@ class CfnDataSource(
3008
3008
  def data_source_configuration(
3009
3009
  self,
3010
3010
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataSource.DataSourceConfigurationProperty"]:
3011
- '''Contains details about how the data source is stored.'''
3011
+ '''The connection configuration for the data source.'''
3012
3012
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDataSource.DataSourceConfigurationProperty"], jsii.get(self, "dataSourceConfiguration"))
3013
3013
 
3014
3014
  @data_source_configuration.setter
@@ -3050,7 +3050,7 @@ class CfnDataSource(
3050
3050
  @builtins.property
3051
3051
  @jsii.member(jsii_name="dataDeletionPolicy")
3052
3052
  def data_deletion_policy(self) -> typing.Optional[builtins.str]:
3053
- '''The data deletion policy for a data source.'''
3053
+ '''The data deletion policy for the data source.'''
3054
3054
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "dataDeletionPolicy"))
3055
3055
 
3056
3056
  @data_deletion_policy.setter
@@ -3128,7 +3128,7 @@ class CfnDataSource(
3128
3128
 
3129
3129
  A *chunk* refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried.
3130
3130
 
3131
- :param chunking_strategy: Knowledge base can split your source data into chunks. A *chunk* refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried. You have the following options for chunking your data. If you opt for ``NONE`` , then you may want to pre-process your files by splitting them up such that each file corresponds to a chunk. - ``FIXED_SIZE`` – Amazon Bedrock splits your source data into chunks of the approximate size that you set in the ``fixedSizeChunkingConfiguration`` . - ``NONE`` – Amazon Bedrock treats each file as one chunk. If you choose this option, you may want to pre-process your documents by splitting them into separate files.
3131
+ :param chunking_strategy: Knowledge base can split your source data into chunks. A *chunk* refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried. You have the following options for chunking your data. If you opt for ``NONE`` , then you may want to pre-process your files by splitting them up such that each file corresponds to a chunk. - ``FIXED_SIZE`` – Amazon Bedrock splits your source data into chunks of the approximate size that you set in the ``fixedSizeChunkingConfiguration`` . - ``HIERARCHICAL`` – Split documents into layers of chunks where the first layer contains large chunks, and the second layer contains smaller chunks derived from the first layer. - ``SEMANTIC`` – Split documents into chunks based on groups of similar content derived with natural language processing. - ``NONE`` – Amazon Bedrock treats each file as one chunk. If you choose this option, you may want to pre-process your documents by splitting them into separate files.
3132
3132
  :param fixed_size_chunking_configuration: Configurations for when you choose fixed-size chunking. If you set the ``chunkingStrategy`` as ``NONE`` , exclude this field.
3133
3133
 
3134
3134
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-chunkingconfiguration.html
@@ -3167,6 +3167,8 @@ class CfnDataSource(
3167
3167
  A *chunk* refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried. You have the following options for chunking your data. If you opt for ``NONE`` , then you may want to pre-process your files by splitting them up such that each file corresponds to a chunk.
3168
3168
 
3169
3169
  - ``FIXED_SIZE`` – Amazon Bedrock splits your source data into chunks of the approximate size that you set in the ``fixedSizeChunkingConfiguration`` .
3170
+ - ``HIERARCHICAL`` – Split documents into layers of chunks where the first layer contains large chunks, and the second layer contains smaller chunks derived from the first layer.
3171
+ - ``SEMANTIC`` – Split documents into chunks based on groups of similar content derived with natural language processing.
3170
3172
  - ``NONE`` – Amazon Bedrock treats each file as one chunk. If you choose this option, you may want to pre-process your documents by splitting them into separate files.
3171
3173
 
3172
3174
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-chunkingconfiguration.html#cfn-bedrock-datasource-chunkingconfiguration-chunkingstrategy
@@ -3211,10 +3213,10 @@ class CfnDataSource(
3211
3213
  s3_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.S3DataSourceConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
3212
3214
  type: builtins.str,
3213
3215
  ) -> None:
3214
- '''Contains details about how a data source is stored.
3216
+ '''The connection configuration for the data source.
3215
3217
 
3216
- :param s3_configuration: Contains details about the configuration of the S3 object containing the data source.
3217
- :param type: The type of storage for the data source.
3218
+ :param s3_configuration: The configuration information to connect to Amazon S3 as your data source.
3219
+ :param type: The type of data source.
3218
3220
 
3219
3221
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datasourceconfiguration.html
3220
3222
  :exampleMetadata: fixture=_generated
@@ -3249,7 +3251,7 @@ class CfnDataSource(
3249
3251
  def s3_configuration(
3250
3252
  self,
3251
3253
  ) -> typing.Union[_IResolvable_da3f097b, "CfnDataSource.S3DataSourceConfigurationProperty"]:
3252
- '''Contains details about the configuration of the S3 object containing the data source.
3254
+ '''The configuration information to connect to Amazon S3 as your data source.
3253
3255
 
3254
3256
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datasourceconfiguration.html#cfn-bedrock-datasource-datasourceconfiguration-s3configuration
3255
3257
  '''
@@ -3259,7 +3261,7 @@ class CfnDataSource(
3259
3261
 
3260
3262
  @builtins.property
3261
3263
  def type(self) -> builtins.str:
3262
- '''The type of storage for the data source.
3264
+ '''The type of data source.
3263
3265
 
3264
3266
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datasourceconfiguration.html#cfn-bedrock-datasource-datasourceconfiguration-type
3265
3267
  '''
@@ -3371,11 +3373,11 @@ class CfnDataSource(
3371
3373
  bucket_owner_account_id: typing.Optional[builtins.str] = None,
3372
3374
  inclusion_prefixes: typing.Optional[typing.Sequence[builtins.str]] = None,
3373
3375
  ) -> None:
3374
- '''Contains information about the S3 configuration of the data source.
3376
+ '''The configuration information to connect to Amazon S3 as your data source.
3375
3377
 
3376
- :param bucket_arn: The Amazon Resource Name (ARN) of the bucket that contains the data source.
3377
- :param bucket_owner_account_id: The bucket account owner ID for the S3 bucket.
3378
- :param inclusion_prefixes: A list of S3 prefixes that define the object containing the data sources. For more information, see `Organizing objects using prefixes <https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html>`_ .
3378
+ :param bucket_arn: The Amazon Resource Name (ARN) of the S3 bucket that contains your data.
3379
+ :param bucket_owner_account_id: The account ID for the owner of the S3 bucket.
3380
+ :param inclusion_prefixes: A list of S3 prefixes to include certain files or content. For more information, see `Organizing objects using prefixes <https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html>`_ .
3379
3381
 
3380
3382
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html
3381
3383
  :exampleMetadata: fixture=_generated
@@ -3409,7 +3411,7 @@ class CfnDataSource(
3409
3411
 
3410
3412
  @builtins.property
3411
3413
  def bucket_arn(self) -> builtins.str:
3412
- '''The Amazon Resource Name (ARN) of the bucket that contains the data source.
3414
+ '''The Amazon Resource Name (ARN) of the S3 bucket that contains your data.
3413
3415
 
3414
3416
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html#cfn-bedrock-datasource-s3datasourceconfiguration-bucketarn
3415
3417
  '''
@@ -3419,7 +3421,7 @@ class CfnDataSource(
3419
3421
 
3420
3422
  @builtins.property
3421
3423
  def bucket_owner_account_id(self) -> typing.Optional[builtins.str]:
3422
- '''The bucket account owner ID for the S3 bucket.
3424
+ '''The account ID for the owner of the S3 bucket.
3423
3425
 
3424
3426
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-s3datasourceconfiguration.html#cfn-bedrock-datasource-s3datasourceconfiguration-bucketowneraccountid
3425
3427
  '''
@@ -3428,7 +3430,7 @@ class CfnDataSource(
3428
3430
 
3429
3431
  @builtins.property
3430
3432
  def inclusion_prefixes(self) -> typing.Optional[typing.List[builtins.str]]:
3431
- '''A list of S3 prefixes that define the object containing the data sources.
3433
+ '''A list of S3 prefixes to include certain files or content.
3432
3434
 
3433
3435
  For more information, see `Organizing objects using prefixes <https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html>`_ .
3434
3436
 
@@ -3598,10 +3600,10 @@ class CfnDataSourceProps:
3598
3600
  ) -> None:
3599
3601
  '''Properties for defining a ``CfnDataSource``.
3600
3602
 
3601
- :param data_source_configuration: Contains details about how the data source is stored.
3603
+ :param data_source_configuration: The connection configuration for the data source.
3602
3604
  :param knowledge_base_id: The unique identifier of the knowledge base to which the data source belongs.
3603
3605
  :param name: The name of the data source.
3604
- :param data_deletion_policy: The data deletion policy for a data source.
3606
+ :param data_deletion_policy: The data deletion policy for the data source.
3605
3607
  :param description: The description of the data source.
3606
3608
  :param server_side_encryption_configuration: Contains details about the configuration of the server-side encryption.
3607
3609
  :param vector_ingestion_configuration: Contains details about how to ingest the documents in the data source.
@@ -3675,7 +3677,7 @@ class CfnDataSourceProps:
3675
3677
  def data_source_configuration(
3676
3678
  self,
3677
3679
  ) -> typing.Union[_IResolvable_da3f097b, CfnDataSource.DataSourceConfigurationProperty]:
3678
- '''Contains details about how the data source is stored.
3680
+ '''The connection configuration for the data source.
3679
3681
 
3680
3682
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-datasource.html#cfn-bedrock-datasource-datasourceconfiguration
3681
3683
  '''
@@ -3705,7 +3707,7 @@ class CfnDataSourceProps:
3705
3707
 
3706
3708
  @builtins.property
3707
3709
  def data_deletion_policy(self) -> typing.Optional[builtins.str]:
3708
- '''The data deletion policy for a data source.
3710
+ '''The data deletion policy for the data source.
3709
3711
 
3710
3712
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-datasource.html#cfn-bedrock-datasource-datadeletionpolicy
3711
3713
  '''
@@ -5884,7 +5886,9 @@ class CfnKnowledgeBase(
5884
5886
  type: builtins.str,
5885
5887
  vector_knowledge_base_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnKnowledgeBase.VectorKnowledgeBaseConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
5886
5888
  ) -> None:
5887
- '''Contains details about the embeddings configuration of the knowledge base.
5889
+ '''Configurations to apply to a knowledge base attached to the agent during query.
5890
+
5891
+ For more information, see `Knowledge base retrieval configurations <https://docs.aws.amazon.com/bedrock/latest/userguide/agents-session-state.html#session-state-kb>`_ .
5888
5892
 
5889
5893
  :param type: The type of data that the data source is converted into for the knowledge base.
5890
5894
  :param vector_knowledge_base_configuration: Contains details about the embeddings model that'sused to convert the data source.
@@ -4255,7 +4255,7 @@ class CfnStackSet(
4255
4255
  ) -> None:
4256
4256
  '''The AWS OrganizationalUnitIds or Accounts for which to create stack instances in the specified Regions.
4257
4257
 
4258
- :param account_filter_type: Limit deployment targets to individual accounts or include additional accounts with provided OUs. The following is a list of possible values for the ``AccountFilterType`` operation. - ``INTERSECTION`` : StackSets deploys to the accounts specified in ``Accounts`` parameter. - ``DIFFERENCE`` : StackSets excludes the accounts specified in ``Accounts`` parameter. This enables user to avoid certain accounts within an OU such as suspended accounts. - ``UNION`` : StackSets includes additional accounts deployment targets. This is the default value if ``AccountFilterType`` is not provided. This enables user to update an entire OU and individual accounts from a different OU in one request, which used to be two separate requests. - ``NONE`` : Deploys to all the accounts in specified organizational units (OU).
4258
+ :param account_filter_type: Limit deployment targets to individual accounts or include additional accounts with provided OUs. The following is a list of possible values for the ``AccountFilterType`` operation. - ``INTERSECTION`` : StackSet deploys to the accounts specified in the ``Accounts`` parameter. - ``DIFFERENCE`` : StackSet deploys to the OU, excluding the accounts specified in the ``Accounts`` parameter. - ``UNION`` isn't supported when using StackSet as a resource.
4259
4259
  :param accounts: The names of one or more AWS accounts for which you want to deploy stack set updates. *Pattern* : ``^[0-9]{12}$``
4260
4260
  :param accounts_url: Returns the value of the ``AccountsUrl`` property.
4261
4261
  :param organizational_unit_ids: The organization root ID or organizational unit (OU) IDs to which StackSets deploys. *Pattern* : ``^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$``
@@ -4298,13 +4298,9 @@ class CfnStackSet(
4298
4298
 
4299
4299
  The following is a list of possible values for the ``AccountFilterType`` operation.
4300
4300
 
4301
- - ``INTERSECTION`` : StackSets deploys to the accounts specified in ``Accounts`` parameter.
4302
- - ``DIFFERENCE`` : StackSets excludes the accounts specified in ``Accounts`` parameter. This enables user to avoid certain accounts within an OU such as suspended accounts.
4303
- - ``UNION`` : StackSets includes additional accounts deployment targets.
4304
-
4305
- This is the default value if ``AccountFilterType`` is not provided. This enables user to update an entire OU and individual accounts from a different OU in one request, which used to be two separate requests.
4306
-
4307
- - ``NONE`` : Deploys to all the accounts in specified organizational units (OU).
4301
+ - ``INTERSECTION`` : StackSet deploys to the accounts specified in the ``Accounts`` parameter.
4302
+ - ``DIFFERENCE`` : StackSet deploys to the OU, excluding the accounts specified in the ``Accounts`` parameter.
4303
+ - ``UNION`` isn't supported when using StackSet as a resource.
4308
4304
 
4309
4305
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-deploymenttargets.html#cfn-cloudformation-stackset-deploymenttargets-accountfiltertype
4310
4306
  '''