aws-cdk-lib 2.175.1__py3-none-any.whl → 2.177.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 (64) hide show
  1. aws_cdk/__init__.py +26 -7
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.175.1.jsii.tgz → aws-cdk-lib@2.177.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2_integrations/__init__.py +161 -9
  5. aws_cdk/aws_appconfig/__init__.py +106 -24
  6. aws_cdk/aws_appsync/__init__.py +4 -3
  7. aws_cdk/aws_backup/__init__.py +18 -84
  8. aws_cdk/aws_batch/__init__.py +4 -2
  9. aws_cdk/aws_bedrock/__init__.py +5395 -2508
  10. aws_cdk/aws_cleanrooms/__init__.py +77 -34
  11. aws_cdk/aws_cloudformation/__init__.py +4 -2
  12. aws_cdk/aws_cloudfront/__init__.py +12 -2
  13. aws_cdk/aws_cloudfront/experimental/__init__.py +1 -1
  14. aws_cdk/aws_cloudfront_origins/__init__.py +33 -2
  15. aws_cdk/aws_cloudwatch/__init__.py +53 -49
  16. aws_cdk/aws_codebuild/__init__.py +36 -0
  17. aws_cdk/aws_codepipeline/__init__.py +35 -0
  18. aws_cdk/aws_cognito/__init__.py +285 -253
  19. aws_cdk/aws_customerprofiles/__init__.py +1060 -0
  20. aws_cdk/aws_datazone/__init__.py +195 -125
  21. aws_cdk/aws_docdb/__init__.py +29 -9
  22. aws_cdk/aws_dynamodb/__init__.py +77 -58
  23. aws_cdk/aws_ec2/__init__.py +16 -11
  24. aws_cdk/aws_ecs/__init__.py +127 -43
  25. aws_cdk/aws_efs/__init__.py +5 -5
  26. aws_cdk/aws_eks/__init__.py +24 -3
  27. aws_cdk/aws_elasticloadbalancingv2/__init__.py +41 -5
  28. aws_cdk/aws_emrserverless/__init__.py +86 -0
  29. aws_cdk/aws_fms/__init__.py +42 -0
  30. aws_cdk/aws_gamelift/__init__.py +8 -10
  31. aws_cdk/aws_healthlake/__init__.py +36 -40
  32. aws_cdk/aws_iam/__init__.py +8 -0
  33. aws_cdk/aws_imagebuilder/__init__.py +62 -48
  34. aws_cdk/aws_lambda/__init__.py +21 -8
  35. aws_cdk/aws_lambda_event_sources/__init__.py +9 -9
  36. aws_cdk/aws_lex/__init__.py +105 -0
  37. aws_cdk/aws_logs/__init__.py +59 -59
  38. aws_cdk/aws_mediaconvert/__init__.py +7 -3
  39. aws_cdk/aws_notifications/__init__.py +1390 -0
  40. aws_cdk/aws_notificationscontacts/__init__.py +593 -0
  41. aws_cdk/aws_organizations/__init__.py +5 -9
  42. aws_cdk/aws_rds/__init__.py +99 -30
  43. aws_cdk/aws_redshift/__init__.py +9 -5
  44. aws_cdk/aws_resiliencehub/__init__.py +41 -0
  45. aws_cdk/aws_route53/__init__.py +4 -4
  46. aws_cdk/aws_route53_targets/__init__.py +15 -15
  47. aws_cdk/aws_s3/__init__.py +794 -5
  48. aws_cdk/aws_s3_notifications/__init__.py +5 -5
  49. aws_cdk/aws_s3tables/__init__.py +2 -2
  50. aws_cdk/aws_ses/__init__.py +25 -4
  51. aws_cdk/aws_sns/__init__.py +39 -0
  52. aws_cdk/aws_ssm/__init__.py +14 -7
  53. aws_cdk/aws_ssmquicksetup/__init__.py +84 -84
  54. aws_cdk/aws_sso/__init__.py +9 -5
  55. aws_cdk/aws_synthetics/__init__.py +105 -32
  56. aws_cdk/cloud_assembly_schema/__init__.py +63 -4
  57. aws_cdk/cx_api/__init__.py +69 -8
  58. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/METADATA +3 -3
  59. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/RECORD +63 -62
  60. aws_cdk/aws_iot1click/__init__.py +0 -1193
  61. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/LICENSE +0 -0
  62. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/NOTICE +0 -0
  63. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/WHEEL +0 -0
  64. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/top_level.txt +0 -0
@@ -137,11 +137,11 @@ class CfnFHIRDatastore(
137
137
  '''
138
138
  :param scope: Scope in which this resource is defined.
139
139
  :param id: Construct identifier for this resource (unique in its scope).
140
- :param datastore_type_version: The FHIR version of the data store. The only supported version is R4.
141
- :param datastore_name: The user generated name for the data store.
142
- :param identity_provider_configuration: The identity provider configuration that you gave when the data store was created.
143
- :param preload_data_config: The preloaded data configuration for the data store. Only data preloaded from Synthea is supported.
144
- :param sse_configuration: The server-side encryption key configuration for a customer provided encryption key specified for creating a data store.
140
+ :param datastore_type_version: The FHIR release version supported by the data store. Current support is for version ``R4`` .
141
+ :param datastore_name: The data store name (user-generated).
142
+ :param identity_provider_configuration: The identity provider configuration selected when the data store was created.
143
+ :param preload_data_config: The preloaded Synthea data configuration for the data store.
144
+ :param sse_configuration: The server-side encryption key configuration for a customer-provided encryption key specified for creating a data store.
145
145
  :param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
146
146
  '''
147
147
  if __debug__:
@@ -268,7 +268,7 @@ class CfnFHIRDatastore(
268
268
  @builtins.property
269
269
  @jsii.member(jsii_name="datastoreTypeVersion")
270
270
  def datastore_type_version(self) -> builtins.str:
271
- '''The FHIR version of the data store.'''
271
+ '''The FHIR release version supported by the data store.'''
272
272
  return typing.cast(builtins.str, jsii.get(self, "datastoreTypeVersion"))
273
273
 
274
274
  @datastore_type_version.setter
@@ -281,7 +281,7 @@ class CfnFHIRDatastore(
281
281
  @builtins.property
282
282
  @jsii.member(jsii_name="datastoreName")
283
283
  def datastore_name(self) -> typing.Optional[builtins.str]:
284
- '''The user generated name for the data store.'''
284
+ '''The data store name (user-generated).'''
285
285
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "datastoreName"))
286
286
 
287
287
  @datastore_name.setter
@@ -296,7 +296,7 @@ class CfnFHIRDatastore(
296
296
  def identity_provider_configuration(
297
297
  self,
298
298
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFHIRDatastore.IdentityProviderConfigurationProperty"]]:
299
- '''The identity provider configuration that you gave when the data store was created.'''
299
+ '''The identity provider configuration selected when the data store was created.'''
300
300
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFHIRDatastore.IdentityProviderConfigurationProperty"]], jsii.get(self, "identityProviderConfiguration"))
301
301
 
302
302
  @identity_provider_configuration.setter
@@ -314,7 +314,7 @@ class CfnFHIRDatastore(
314
314
  def preload_data_config(
315
315
  self,
316
316
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFHIRDatastore.PreloadDataConfigProperty"]]:
317
- '''The preloaded data configuration for the data store.'''
317
+ '''The preloaded Synthea data configuration for the data store.'''
318
318
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFHIRDatastore.PreloadDataConfigProperty"]], jsii.get(self, "preloadDataConfig"))
319
319
 
320
320
  @preload_data_config.setter
@@ -332,7 +332,7 @@ class CfnFHIRDatastore(
332
332
  def sse_configuration(
333
333
  self,
334
334
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFHIRDatastore.SseConfigurationProperty"]]:
335
- '''The server-side encryption key configuration for a customer provided encryption key specified for creating a data store.'''
335
+ '''The server-side encryption key configuration for a customer-provided encryption key specified for creating a data store.'''
336
336
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFHIRDatastore.SseConfigurationProperty"]], jsii.get(self, "sseConfiguration"))
337
337
 
338
338
  @sse_configuration.setter
@@ -443,12 +443,12 @@ class CfnFHIRDatastore(
443
443
  idp_lambda_arn: typing.Optional[builtins.str] = None,
444
444
  metadata: typing.Optional[builtins.str] = None,
445
445
  ) -> None:
446
- '''The identity provider configuration that you gave when the data store was created.
446
+ '''The identity provider configuration selected when the data store was created.
447
447
 
448
- :param authorization_strategy: The authorization strategy that you selected when you created the data store.
449
- :param fine_grained_authorization_enabled: If you enabled fine-grained authorization when you created the data store.
450
- :param idp_lambda_arn: The Amazon Resource Name (ARN) of the Lambda function that you want to use to decode the access token created by the authorization server.
451
- :param metadata: The JSON metadata elements that you want to use in your identity provider configuration. Required elements are listed based on the launch specification of the SMART application. For more information on all possible elements, see `Metadata <https://docs.aws.amazon.com/https://build.fhir.org/ig/HL7/smart-app-launch/conformance.html#metadata>`_ in SMART's App Launch specification. ``authorization_endpoint`` : The URL to the OAuth2 authorization endpoint. ``grant_types_supported`` : An array of grant types that are supported at the token endpoint. You must provide at least one grant type option. Valid options are ``authorization_code`` and ``client_credentials`` . ``token_endpoint`` : The URL to the OAuth2 token endpoint. ``capabilities`` : An array of strings of the SMART capabilities that the authorization server supports. ``code_challenge_methods_supported`` : An array of strings of supported PKCE code challenge methods. You must include the ``S256`` method in the array of PKCE code challenge methods.
448
+ :param authorization_strategy: The authorization strategy selected when the data store was created.
449
+ :param fine_grained_authorization_enabled: The parameter to enable SMART on FHIR fine-grained authorization for the data store.
450
+ :param idp_lambda_arn: The Amazon Resource Name (ARN) of the Lambda function to use to decode the access token created by the authorization server.
451
+ :param metadata: The JSON metadata elements to use in your identity provider configuration. Required elements are listed based on the launch specification of the SMART application. For more information on all possible elements, see `Metadata <https://docs.aws.amazon.com/https://build.fhir.org/ig/HL7/smart-app-launch/conformance.html#metadata>`_ in SMART's App Launch specification. ``authorization_endpoint`` : The URL to the OAuth2 authorization endpoint. ``grant_types_supported`` : An array of grant types that are supported at the token endpoint. You must provide at least one grant type option. Valid options are ``authorization_code`` and ``client_credentials`` . ``token_endpoint`` : The URL to the OAuth2 token endpoint. ``capabilities`` : An array of strings of the SMART capabilities that the authorization server supports. ``code_challenge_methods_supported`` : An array of strings of supported PKCE code challenge methods. You must include the ``S256`` method in the array of PKCE code challenge methods.
452
452
 
453
453
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-healthlake-fhirdatastore-identityproviderconfiguration.html
454
454
  :exampleMetadata: fixture=_generated
@@ -486,7 +486,7 @@ class CfnFHIRDatastore(
486
486
 
487
487
  @builtins.property
488
488
  def authorization_strategy(self) -> builtins.str:
489
- '''The authorization strategy that you selected when you created the data store.
489
+ '''The authorization strategy selected when the data store was created.
490
490
 
491
491
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-healthlake-fhirdatastore-identityproviderconfiguration.html#cfn-healthlake-fhirdatastore-identityproviderconfiguration-authorizationstrategy
492
492
  '''
@@ -498,7 +498,7 @@ class CfnFHIRDatastore(
498
498
  def fine_grained_authorization_enabled(
499
499
  self,
500
500
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
501
- '''If you enabled fine-grained authorization when you created the data store.
501
+ '''The parameter to enable SMART on FHIR fine-grained authorization for the data store.
502
502
 
503
503
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-healthlake-fhirdatastore-identityproviderconfiguration.html#cfn-healthlake-fhirdatastore-identityproviderconfiguration-finegrainedauthorizationenabled
504
504
  '''
@@ -507,7 +507,7 @@ class CfnFHIRDatastore(
507
507
 
508
508
  @builtins.property
509
509
  def idp_lambda_arn(self) -> typing.Optional[builtins.str]:
510
- '''The Amazon Resource Name (ARN) of the Lambda function that you want to use to decode the access token created by the authorization server.
510
+ '''The Amazon Resource Name (ARN) of the Lambda function to use to decode the access token created by the authorization server.
511
511
 
512
512
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-healthlake-fhirdatastore-identityproviderconfiguration.html#cfn-healthlake-fhirdatastore-identityproviderconfiguration-idplambdaarn
513
513
  '''
@@ -516,7 +516,7 @@ class CfnFHIRDatastore(
516
516
 
517
517
  @builtins.property
518
518
  def metadata(self) -> typing.Optional[builtins.str]:
519
- '''The JSON metadata elements that you want to use in your identity provider configuration.
519
+ '''The JSON metadata elements to use in your identity provider configuration.
520
520
 
521
521
  Required elements are listed based on the launch specification of the SMART application. For more information on all possible elements, see `Metadata <https://docs.aws.amazon.com/https://build.fhir.org/ig/HL7/smart-app-launch/conformance.html#metadata>`_ in SMART's App Launch specification.
522
522
 
@@ -563,7 +563,7 @@ class CfnFHIRDatastore(
563
563
  If a customer owned key is not specified, an Amazon owned key will be used for encryption.
564
564
 
565
565
  :param cmk_type: The type of customer-managed-key(CMK) used for encryption. The two types of supported CMKs are customer owned CMKs and Amazon owned CMKs. For more information on CMK types, see `KmsEncryptionConfig <https://docs.aws.amazon.com/healthlake/latest/APIReference/API_KmsEncryptionConfig.html#HealthLake-Type-KmsEncryptionConfig-CmkType>`_ .
566
- :param kms_key_id: The KMS encryption key id/alias used to encrypt the data store contents at rest.
566
+ :param kms_key_id: The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest.
567
567
 
568
568
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-healthlake-fhirdatastore-kmsencryptionconfig.html
569
569
  :exampleMetadata: fixture=_generated
@@ -605,7 +605,7 @@ class CfnFHIRDatastore(
605
605
 
606
606
  @builtins.property
607
607
  def kms_key_id(self) -> typing.Optional[builtins.str]:
608
- '''The KMS encryption key id/alias used to encrypt the data store contents at rest.
608
+ '''The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest.
609
609
 
610
610
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-healthlake-fhirdatastore-kmsencryptionconfig.html#cfn-healthlake-fhirdatastore-kmsencryptionconfig-kmskeyid
611
611
  '''
@@ -630,9 +630,7 @@ class CfnFHIRDatastore(
630
630
  )
631
631
  class PreloadDataConfigProperty:
632
632
  def __init__(self, *, preload_data_type: builtins.str) -> None:
633
- '''Optional parameter to preload data upon creation of the data store.
634
-
635
- Currently, the only supported preloaded data is synthetic data generated from Synthea.
633
+ '''An optional parameter to preload (import) open source Synthea FHIR data upon creation of the data store.
636
634
 
637
635
  :param preload_data_type: The type of preloaded data. Only Synthea preloaded data is supported.
638
636
 
@@ -690,9 +688,9 @@ class CfnFHIRDatastore(
690
688
  *,
691
689
  kms_encryption_config: typing.Union[_IResolvable_da3f097b, typing.Union["CfnFHIRDatastore.KmsEncryptionConfigProperty", typing.Dict[builtins.str, typing.Any]]],
692
690
  ) -> None:
693
- '''The server-side encryption key configuration for a customer provided encryption key.
691
+ '''The server-side encryption key configuration for a customer-provided encryption key.
694
692
 
695
- :param kms_encryption_config: The server-side encryption key configuration for a customer provided encryption key (CMK).
693
+ :param kms_encryption_config: The server-side encryption key configuration for a customer provided encryption key.
696
694
 
697
695
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-healthlake-fhirdatastore-sseconfiguration.html
698
696
  :exampleMetadata: fixture=_generated
@@ -723,7 +721,7 @@ class CfnFHIRDatastore(
723
721
  def kms_encryption_config(
724
722
  self,
725
723
  ) -> typing.Union[_IResolvable_da3f097b, "CfnFHIRDatastore.KmsEncryptionConfigProperty"]:
726
- '''The server-side encryption key configuration for a customer provided encryption key (CMK).
724
+ '''The server-side encryption key configuration for a customer provided encryption key.
727
725
 
728
726
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-healthlake-fhirdatastore-sseconfiguration.html#cfn-healthlake-fhirdatastore-sseconfiguration-kmsencryptionconfig
729
727
  '''
@@ -768,11 +766,11 @@ class CfnFHIRDatastoreProps:
768
766
  ) -> None:
769
767
  '''Properties for defining a ``CfnFHIRDatastore``.
770
768
 
771
- :param datastore_type_version: The FHIR version of the data store. The only supported version is R4.
772
- :param datastore_name: The user generated name for the data store.
773
- :param identity_provider_configuration: The identity provider configuration that you gave when the data store was created.
774
- :param preload_data_config: The preloaded data configuration for the data store. Only data preloaded from Synthea is supported.
775
- :param sse_configuration: The server-side encryption key configuration for a customer provided encryption key specified for creating a data store.
769
+ :param datastore_type_version: The FHIR release version supported by the data store. Current support is for version ``R4`` .
770
+ :param datastore_name: The data store name (user-generated).
771
+ :param identity_provider_configuration: The identity provider configuration selected when the data store was created.
772
+ :param preload_data_config: The preloaded Synthea data configuration for the data store.
773
+ :param sse_configuration: The server-side encryption key configuration for a customer-provided encryption key specified for creating a data store.
776
774
  :param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
777
775
 
778
776
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthlake-fhirdatastore.html
@@ -838,9 +836,9 @@ class CfnFHIRDatastoreProps:
838
836
 
839
837
  @builtins.property
840
838
  def datastore_type_version(self) -> builtins.str:
841
- '''The FHIR version of the data store.
839
+ '''The FHIR release version supported by the data store.
842
840
 
843
- The only supported version is R4.
841
+ Current support is for version ``R4`` .
844
842
 
845
843
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthlake-fhirdatastore.html#cfn-healthlake-fhirdatastore-datastoretypeversion
846
844
  '''
@@ -850,7 +848,7 @@ class CfnFHIRDatastoreProps:
850
848
 
851
849
  @builtins.property
852
850
  def datastore_name(self) -> typing.Optional[builtins.str]:
853
- '''The user generated name for the data store.
851
+ '''The data store name (user-generated).
854
852
 
855
853
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthlake-fhirdatastore.html#cfn-healthlake-fhirdatastore-datastorename
856
854
  '''
@@ -861,7 +859,7 @@ class CfnFHIRDatastoreProps:
861
859
  def identity_provider_configuration(
862
860
  self,
863
861
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnFHIRDatastore.IdentityProviderConfigurationProperty]]:
864
- '''The identity provider configuration that you gave when the data store was created.
862
+ '''The identity provider configuration selected when the data store was created.
865
863
 
866
864
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthlake-fhirdatastore.html#cfn-healthlake-fhirdatastore-identityproviderconfiguration
867
865
  '''
@@ -872,9 +870,7 @@ class CfnFHIRDatastoreProps:
872
870
  def preload_data_config(
873
871
  self,
874
872
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnFHIRDatastore.PreloadDataConfigProperty]]:
875
- '''The preloaded data configuration for the data store.
876
-
877
- Only data preloaded from Synthea is supported.
873
+ '''The preloaded Synthea data configuration for the data store.
878
874
 
879
875
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthlake-fhirdatastore.html#cfn-healthlake-fhirdatastore-preloaddataconfig
880
876
  '''
@@ -885,7 +881,7 @@ class CfnFHIRDatastoreProps:
885
881
  def sse_configuration(
886
882
  self,
887
883
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnFHIRDatastore.SseConfigurationProperty]]:
888
- '''The server-side encryption key configuration for a customer provided encryption key specified for creating a data store.
884
+ '''The server-side encryption key configuration for a customer-provided encryption key specified for creating a data store.
889
885
 
890
886
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthlake-fhirdatastore.html#cfn-healthlake-fhirdatastore-sseconfiguration
891
887
  '''
@@ -724,6 +724,14 @@ thumbprint of the root certificate authority (CA) will automatically be obtained
724
724
  from the host as described
725
725
  [here](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_oidc_verify-thumbprint.html).
726
726
 
727
+ Byy default, the custom resource enforces strict security practices by rejecting
728
+ any unauthorized connections when downloading CA thumbprints from the issuer URL.
729
+ If you need to connect to an unauthorized OIDC identity provider and understand the
730
+ implications, you can disable this behavior by setting the feature flag
731
+ `IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS` to `false` in your `cdk.context.json`
732
+ or `cdk.json`. Visit [CDK Feature Flag](https://docs.aws.amazon.com/cdk/v2/guide/featureflags.html)
733
+ for more information on how to configure feature flags.
734
+
727
735
  Once you define an OpenID connect provider, you can use it with AWS services
728
736
  that expect an IAM OIDC provider. For example, when you define an [Amazon
729
737
  Cognito identity
@@ -3789,7 +3789,7 @@ class CfnImage(
3789
3789
  You must have at least one build component to create a recipe, but test components are not required. If you have added tests, they run after the image is created, to ensure that the target image is functional and can be used reliably for launching Amazon EC2 instances.
3790
3790
 
3791
3791
  :param image_tests_enabled: Determines if tests should run after building the image. Image Builder defaults to enable tests to run following the image build, before image distribution.
3792
- :param timeout_minutes: The maximum time in minutes that tests are permitted to run. .. epigraph:: The timeout attribute is not currently active. This value is ignored.
3792
+ :param timeout_minutes: The maximum time in minutes that tests are permitted to run. .. epigraph:: The timeout property is not currently active. This value is ignored.
3793
3793
 
3794
3794
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html
3795
3795
  :exampleMetadata: fixture=_generated
@@ -3834,7 +3834,7 @@ class CfnImage(
3834
3834
 
3835
3835
  .. epigraph::
3836
3836
 
3837
- The timeout attribute is not currently active. This value is ignored.
3837
+ The timeout property is not currently active. This value is ignored.
3838
3838
 
3839
3839
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imagetestsconfiguration.html#cfn-imagebuilder-image-imagetestsconfiguration-timeoutminutes
3840
3840
  '''
@@ -4609,7 +4609,7 @@ class CfnImagePipeline(
4609
4609
  You must have at least one build component to create a recipe, but test components are not required. Your pipeline runs tests after it builds the image, to ensure that the target image is functional and can be used reliably for launching Amazon EC2 instances.
4610
4610
 
4611
4611
  :param image_tests_enabled: Defines if tests should be executed when building this image. For example, ``true`` or ``false`` .
4612
- :param timeout_minutes: The maximum time in minutes that tests are permitted to run. .. epigraph:: The timeout attribute is not currently active. This value is ignored.
4612
+ :param timeout_minutes: The maximum time in minutes that tests are permitted to run. .. epigraph:: The timeout property is not currently active. This value is ignored.
4613
4613
 
4614
4614
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html
4615
4615
  :exampleMetadata: fixture=_generated
@@ -4654,7 +4654,7 @@ class CfnImagePipeline(
4654
4654
 
4655
4655
  .. epigraph::
4656
4656
 
4657
- The timeout attribute is not currently active. This value is ignored.
4657
+ The timeout property is not currently active. This value is ignored.
4658
4658
 
4659
4659
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-imagetestsconfiguration.html#cfn-imagebuilder-imagepipeline-imagetestsconfiguration-timeoutminutes
4660
4660
  '''
@@ -6597,9 +6597,9 @@ class CfnInfrastructureConfiguration(
6597
6597
  metaclass=jsii.JSIIMeta,
6598
6598
  jsii_type="aws-cdk-lib.aws_imagebuilder.CfnInfrastructureConfiguration",
6599
6599
  ):
6600
- '''The infrastructure configuration allows you to specify the infrastructure within which to build and test your image.
6600
+ '''Creates a new infrastructure configuration.
6601
6601
 
6602
- In the infrastructure configuration, you can specify instance types, subnets, and security groups to associate with your instance. You can also associate an Amazon EC2 key pair with the instance used to build your image. This allows you to log on to your instance to troubleshoot if your build fails and you set terminateInstanceOnFailure to false.
6602
+ An infrastructure configuration defines the environment in which your image will be built and tested.
6603
6603
 
6604
6604
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html
6605
6605
  :cloudformationResource: AWS::ImageBuilder::InfrastructureConfiguration
@@ -6671,20 +6671,20 @@ class CfnInfrastructureConfiguration(
6671
6671
  '''
6672
6672
  :param scope: Scope in which this resource is defined.
6673
6673
  :param id: Construct identifier for this resource (unique in its scope).
6674
- :param instance_profile_name: The instance profile of the infrastructure configuration.
6674
+ :param instance_profile_name: The instance profile to associate with the instance used to customize your Amazon EC2 AMI.
6675
6675
  :param name: The name of the infrastructure configuration.
6676
6676
  :param description: The description of the infrastructure configuration.
6677
- :param instance_metadata_options: The instance metadata option settings for the infrastructure configuration.
6678
- :param instance_types: The instance types of the infrastructure configuration.
6679
- :param key_pair: The Amazon EC2 key pair of the infrastructure configuration.
6680
- :param logging: The logging configuration defines where Image Builder uploads your logs.
6677
+ :param instance_metadata_options: The instance metadata options that you can set for the HTTP requests that pipeline builds use to launch EC2 build and test instances.
6678
+ :param instance_types: The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.
6679
+ :param key_pair: The key pair of the infrastructure configuration. You can use this to log on to and debug the instance used to create your image.
6680
+ :param logging: The logging configuration of the infrastructure configuration.
6681
6681
  :param placement: The instance placement settings that define where the instances that are launched from your image will run.
6682
- :param resource_tags: The tags attached to the resource created by Image Builder.
6683
- :param security_group_ids: The security group IDs of the infrastructure configuration.
6684
- :param sns_topic_arn: The Amazon Resource Name (ARN) of the SNS topic for the infrastructure configuration.
6685
- :param subnet_id: The subnet ID of the infrastructure configuration.
6686
- :param tags: The tags of the infrastructure configuration.
6687
- :param terminate_instance_on_failure: The terminate instance on failure configuration of the infrastructure configuration.
6682
+ :param resource_tags: The metadata tags to assign to the Amazon EC2 instance that Image Builder launches during the build process. Tags are formatted as key value pairs.
6683
+ :param security_group_ids: The security group IDs to associate with the instance used to customize your Amazon EC2 AMI.
6684
+ :param sns_topic_arn: The Amazon Resource Name (ARN) for the SNS topic to which we send image build event notifications. .. epigraph:: EC2 Image Builder is unable to send notifications to SNS topics that are encrypted using keys from other accounts. The key that is used to encrypt the SNS topic must reside in the account that the Image Builder service runs under.
6685
+ :param subnet_id: The subnet ID in which to place the instance used to customize your Amazon EC2 AMI.
6686
+ :param tags: The metadata tags to assign to the infrastructure configuration resource that Image Builder creates as output. Tags are formatted as key value pairs.
6687
+ :param terminate_instance_on_failure: The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.
6688
6688
  '''
6689
6689
  if __debug__:
6690
6690
  type_hints = typing.get_type_hints(_typecheckingstub__8df8a03094d1fe92963a315a657a78657df102ba9fbe66eda2c26bb8eac04479)
@@ -6773,7 +6773,7 @@ class CfnInfrastructureConfiguration(
6773
6773
  @builtins.property
6774
6774
  @jsii.member(jsii_name="instanceProfileName")
6775
6775
  def instance_profile_name(self) -> builtins.str:
6776
- '''The instance profile of the infrastructure configuration.'''
6776
+ '''The instance profile to associate with the instance used to customize your Amazon EC2 AMI.'''
6777
6777
  return typing.cast(builtins.str, jsii.get(self, "instanceProfileName"))
6778
6778
 
6779
6779
  @instance_profile_name.setter
@@ -6814,7 +6814,7 @@ class CfnInfrastructureConfiguration(
6814
6814
  def instance_metadata_options(
6815
6815
  self,
6816
6816
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInfrastructureConfiguration.InstanceMetadataOptionsProperty"]]:
6817
- '''The instance metadata option settings for the infrastructure configuration.'''
6817
+ '''The instance metadata options that you can set for the HTTP requests that pipeline builds use to launch EC2 build and test instances.'''
6818
6818
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInfrastructureConfiguration.InstanceMetadataOptionsProperty"]], jsii.get(self, "instanceMetadataOptions"))
6819
6819
 
6820
6820
  @instance_metadata_options.setter
@@ -6843,7 +6843,7 @@ class CfnInfrastructureConfiguration(
6843
6843
  @builtins.property
6844
6844
  @jsii.member(jsii_name="keyPair")
6845
6845
  def key_pair(self) -> typing.Optional[builtins.str]:
6846
- '''The Amazon EC2 key pair of the infrastructure configuration.'''
6846
+ '''The key pair of the infrastructure configuration.'''
6847
6847
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "keyPair"))
6848
6848
 
6849
6849
  @key_pair.setter
@@ -6858,7 +6858,7 @@ class CfnInfrastructureConfiguration(
6858
6858
  def logging(
6859
6859
  self,
6860
6860
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInfrastructureConfiguration.LoggingProperty"]]:
6861
- '''The logging configuration defines where Image Builder uploads your logs.'''
6861
+ '''The logging configuration of the infrastructure configuration.'''
6862
6862
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnInfrastructureConfiguration.LoggingProperty"]], jsii.get(self, "logging"))
6863
6863
 
6864
6864
  @logging.setter
@@ -6894,7 +6894,7 @@ class CfnInfrastructureConfiguration(
6894
6894
  def resource_tags(
6895
6895
  self,
6896
6896
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
6897
- '''The tags attached to the resource created by Image Builder.'''
6897
+ '''The metadata tags to assign to the Amazon EC2 instance that Image Builder launches during the build process.'''
6898
6898
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]], jsii.get(self, "resourceTags"))
6899
6899
 
6900
6900
  @resource_tags.setter
@@ -6910,7 +6910,7 @@ class CfnInfrastructureConfiguration(
6910
6910
  @builtins.property
6911
6911
  @jsii.member(jsii_name="securityGroupIds")
6912
6912
  def security_group_ids(self) -> typing.Optional[typing.List[builtins.str]]:
6913
- '''The security group IDs of the infrastructure configuration.'''
6913
+ '''The security group IDs to associate with the instance used to customize your Amazon EC2 AMI.'''
6914
6914
  return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "securityGroupIds"))
6915
6915
 
6916
6916
  @security_group_ids.setter
@@ -6926,7 +6926,7 @@ class CfnInfrastructureConfiguration(
6926
6926
  @builtins.property
6927
6927
  @jsii.member(jsii_name="snsTopicArn")
6928
6928
  def sns_topic_arn(self) -> typing.Optional[builtins.str]:
6929
- '''The Amazon Resource Name (ARN) of the SNS topic for the infrastructure configuration.'''
6929
+ '''The Amazon Resource Name (ARN) for the SNS topic to which we send image build event notifications.'''
6930
6930
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "snsTopicArn"))
6931
6931
 
6932
6932
  @sns_topic_arn.setter
@@ -6939,7 +6939,7 @@ class CfnInfrastructureConfiguration(
6939
6939
  @builtins.property
6940
6940
  @jsii.member(jsii_name="subnetId")
6941
6941
  def subnet_id(self) -> typing.Optional[builtins.str]:
6942
- '''The subnet ID of the infrastructure configuration.'''
6942
+ '''The subnet ID in which to place the instance used to customize your Amazon EC2 AMI.'''
6943
6943
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "subnetId"))
6944
6944
 
6945
6945
  @subnet_id.setter
@@ -6952,7 +6952,7 @@ class CfnInfrastructureConfiguration(
6952
6952
  @builtins.property
6953
6953
  @jsii.member(jsii_name="tagsRaw")
6954
6954
  def tags_raw(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
6955
- '''The tags of the infrastructure configuration.'''
6955
+ '''The metadata tags to assign to the infrastructure configuration resource that Image Builder creates as output.'''
6956
6956
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tagsRaw"))
6957
6957
 
6958
6958
  @tags_raw.setter
@@ -6970,7 +6970,7 @@ class CfnInfrastructureConfiguration(
6970
6970
  def terminate_instance_on_failure(
6971
6971
  self,
6972
6972
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
6973
- '''The terminate instance on failure configuration of the infrastructure configuration.'''
6973
+ '''The terminate instance on failure setting of the infrastructure configuration.'''
6974
6974
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "terminateInstanceOnFailure"))
6975
6975
 
6976
6976
  @terminate_instance_on_failure.setter
@@ -7357,20 +7357,20 @@ class CfnInfrastructureConfigurationProps:
7357
7357
  ) -> None:
7358
7358
  '''Properties for defining a ``CfnInfrastructureConfiguration``.
7359
7359
 
7360
- :param instance_profile_name: The instance profile of the infrastructure configuration.
7360
+ :param instance_profile_name: The instance profile to associate with the instance used to customize your Amazon EC2 AMI.
7361
7361
  :param name: The name of the infrastructure configuration.
7362
7362
  :param description: The description of the infrastructure configuration.
7363
- :param instance_metadata_options: The instance metadata option settings for the infrastructure configuration.
7364
- :param instance_types: The instance types of the infrastructure configuration.
7365
- :param key_pair: The Amazon EC2 key pair of the infrastructure configuration.
7366
- :param logging: The logging configuration defines where Image Builder uploads your logs.
7363
+ :param instance_metadata_options: The instance metadata options that you can set for the HTTP requests that pipeline builds use to launch EC2 build and test instances.
7364
+ :param instance_types: The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.
7365
+ :param key_pair: The key pair of the infrastructure configuration. You can use this to log on to and debug the instance used to create your image.
7366
+ :param logging: The logging configuration of the infrastructure configuration.
7367
7367
  :param placement: The instance placement settings that define where the instances that are launched from your image will run.
7368
- :param resource_tags: The tags attached to the resource created by Image Builder.
7369
- :param security_group_ids: The security group IDs of the infrastructure configuration.
7370
- :param sns_topic_arn: The Amazon Resource Name (ARN) of the SNS topic for the infrastructure configuration.
7371
- :param subnet_id: The subnet ID of the infrastructure configuration.
7372
- :param tags: The tags of the infrastructure configuration.
7373
- :param terminate_instance_on_failure: The terminate instance on failure configuration of the infrastructure configuration.
7368
+ :param resource_tags: The metadata tags to assign to the Amazon EC2 instance that Image Builder launches during the build process. Tags are formatted as key value pairs.
7369
+ :param security_group_ids: The security group IDs to associate with the instance used to customize your Amazon EC2 AMI.
7370
+ :param sns_topic_arn: The Amazon Resource Name (ARN) for the SNS topic to which we send image build event notifications. .. epigraph:: EC2 Image Builder is unable to send notifications to SNS topics that are encrypted using keys from other accounts. The key that is used to encrypt the SNS topic must reside in the account that the Image Builder service runs under.
7371
+ :param subnet_id: The subnet ID in which to place the instance used to customize your Amazon EC2 AMI.
7372
+ :param tags: The metadata tags to assign to the infrastructure configuration resource that Image Builder creates as output. Tags are formatted as key value pairs.
7373
+ :param terminate_instance_on_failure: The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.
7374
7374
 
7375
7375
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html
7376
7376
  :exampleMetadata: fixture=_generated
@@ -7464,7 +7464,7 @@ class CfnInfrastructureConfigurationProps:
7464
7464
 
7465
7465
  @builtins.property
7466
7466
  def instance_profile_name(self) -> builtins.str:
7467
- '''The instance profile of the infrastructure configuration.
7467
+ '''The instance profile to associate with the instance used to customize your Amazon EC2 AMI.
7468
7468
 
7469
7469
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instanceprofilename
7470
7470
  '''
@@ -7495,7 +7495,7 @@ class CfnInfrastructureConfigurationProps:
7495
7495
  def instance_metadata_options(
7496
7496
  self,
7497
7497
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnInfrastructureConfiguration.InstanceMetadataOptionsProperty]]:
7498
- '''The instance metadata option settings for the infrastructure configuration.
7498
+ '''The instance metadata options that you can set for the HTTP requests that pipeline builds use to launch EC2 build and test instances.
7499
7499
 
7500
7500
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instancemetadataoptions
7501
7501
  '''
@@ -7506,6 +7506,8 @@ class CfnInfrastructureConfigurationProps:
7506
7506
  def instance_types(self) -> typing.Optional[typing.List[builtins.str]]:
7507
7507
  '''The instance types of the infrastructure configuration.
7508
7508
 
7509
+ You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.
7510
+
7509
7511
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-instancetypes
7510
7512
  '''
7511
7513
  result = self._values.get("instance_types")
@@ -7513,7 +7515,9 @@ class CfnInfrastructureConfigurationProps:
7513
7515
 
7514
7516
  @builtins.property
7515
7517
  def key_pair(self) -> typing.Optional[builtins.str]:
7516
- '''The Amazon EC2 key pair of the infrastructure configuration.
7518
+ '''The key pair of the infrastructure configuration.
7519
+
7520
+ You can use this to log on to and debug the instance used to create your image.
7517
7521
 
7518
7522
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-keypair
7519
7523
  '''
@@ -7524,7 +7528,7 @@ class CfnInfrastructureConfigurationProps:
7524
7528
  def logging(
7525
7529
  self,
7526
7530
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnInfrastructureConfiguration.LoggingProperty]]:
7527
- '''The logging configuration defines where Image Builder uploads your logs.
7531
+ '''The logging configuration of the infrastructure configuration.
7528
7532
 
7529
7533
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-logging
7530
7534
  '''
@@ -7546,7 +7550,9 @@ class CfnInfrastructureConfigurationProps:
7546
7550
  def resource_tags(
7547
7551
  self,
7548
7552
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
7549
- '''The tags attached to the resource created by Image Builder.
7553
+ '''The metadata tags to assign to the Amazon EC2 instance that Image Builder launches during the build process.
7554
+
7555
+ Tags are formatted as key value pairs.
7550
7556
 
7551
7557
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-resourcetags
7552
7558
  '''
@@ -7555,7 +7561,7 @@ class CfnInfrastructureConfigurationProps:
7555
7561
 
7556
7562
  @builtins.property
7557
7563
  def security_group_ids(self) -> typing.Optional[typing.List[builtins.str]]:
7558
- '''The security group IDs of the infrastructure configuration.
7564
+ '''The security group IDs to associate with the instance used to customize your Amazon EC2 AMI.
7559
7565
 
7560
7566
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-securitygroupids
7561
7567
  '''
@@ -7564,7 +7570,11 @@ class CfnInfrastructureConfigurationProps:
7564
7570
 
7565
7571
  @builtins.property
7566
7572
  def sns_topic_arn(self) -> typing.Optional[builtins.str]:
7567
- '''The Amazon Resource Name (ARN) of the SNS topic for the infrastructure configuration.
7573
+ '''The Amazon Resource Name (ARN) for the SNS topic to which we send image build event notifications.
7574
+
7575
+ .. epigraph::
7576
+
7577
+ EC2 Image Builder is unable to send notifications to SNS topics that are encrypted using keys from other accounts. The key that is used to encrypt the SNS topic must reside in the account that the Image Builder service runs under.
7568
7578
 
7569
7579
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-snstopicarn
7570
7580
  '''
@@ -7573,7 +7583,7 @@ class CfnInfrastructureConfigurationProps:
7573
7583
 
7574
7584
  @builtins.property
7575
7585
  def subnet_id(self) -> typing.Optional[builtins.str]:
7576
- '''The subnet ID of the infrastructure configuration.
7586
+ '''The subnet ID in which to place the instance used to customize your Amazon EC2 AMI.
7577
7587
 
7578
7588
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-subnetid
7579
7589
  '''
@@ -7582,7 +7592,9 @@ class CfnInfrastructureConfigurationProps:
7582
7592
 
7583
7593
  @builtins.property
7584
7594
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
7585
- '''The tags of the infrastructure configuration.
7595
+ '''The metadata tags to assign to the infrastructure configuration resource that Image Builder creates as output.
7596
+
7597
+ Tags are formatted as key value pairs.
7586
7598
 
7587
7599
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-tags
7588
7600
  '''
@@ -7593,7 +7605,9 @@ class CfnInfrastructureConfigurationProps:
7593
7605
  def terminate_instance_on_failure(
7594
7606
  self,
7595
7607
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
7596
- '''The terminate instance on failure configuration of the infrastructure configuration.
7608
+ '''The terminate instance on failure setting of the infrastructure configuration.
7609
+
7610
+ Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.
7597
7611
 
7598
7612
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-infrastructureconfiguration.html#cfn-imagebuilder-infrastructureconfiguration-terminateinstanceonfailure
7599
7613
  '''