Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update L1 CloudFormation resource definitions (#29257)
Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec` **L1 CloudFormation resource definition changes:** ``` ├[~] service aws-applicationinsights │ └ resources │ └[~] resource AWS::ApplicationInsights::Application │ └ properties │ └[+] AttachMissingPermission: boolean ├[~] service aws-controltower │ └ resources │ └[~] resource AWS::ControlTower::EnabledControl │ └ properties │ └ Tags: (documentation changed) ├[~] service aws-customerprofiles │ └ resources │ ├[~] resource AWS::CustomerProfiles::Domain │ │ └ properties │ │ └ DefaultExpirationDays: - integer │ │ + integer (required) │ └[~] resource AWS::CustomerProfiles::ObjectType │ └ properties │ ├ Description: - string │ │ + string (required) │ └ ObjectTypeName: - string (immutable) │ + string (required, immutable) ├[~] service aws-ec2 │ └ resources │ ├[~] resource AWS::EC2::EC2Fleet │ │ └ types │ │ └[~] type InstanceRequirementsRequest │ │ └ properties │ │ └ MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: (documentation changed) │ └[~] resource AWS::EC2::SpotFleet │ └ types │ └[~] type InstanceRequirementsRequest │ └ properties │ └ MaxSpotPriceAsPercentageOfOptimalOnDemandPrice: (documentation changed) ├[~] service aws-glue │ └ resources │ └[~] resource AWS::Glue::DataCatalogEncryptionSettings │ └ types │ └[~] type EncryptionAtRest │ └ properties │ └ CatalogEncryptionServiceRole: (documentation changed) ├[~] service aws-lambda │ └ resources │ └[~] resource AWS::Lambda::Function │ └ attributes │ ├ SnapStartResponse: (documentation changed) │ ├ SnapStartResponse.ApplyOn: (documentation changed) │ └ SnapStartResponse.OptimizationStatus: (documentation changed) ├[~] service aws-quicksight │ └ resources │ └[~] resource AWS::QuickSight::Dashboard │ └ properties │ └[+] LinkEntities: Array<string> └[~] service aws-sagemaker └ resources └[~] resource AWS::SageMaker::FeatureGroup └ types ├[~] type OnlineStoreConfig │ └ properties │ └ TtlDuration: (documentation changed) └[~] type TtlDuration ├ - documentation: TTL configuration of the feature group │ + documentation: Time to live duration, where the record is hard deleted after the expiration time is reached; `ExpiresAt` = `EventTime` + `TtlDuration` . For information on HardDelete, see the [DeleteRecord](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html) API in the Amazon SageMaker API Reference guide. └ properties ├ Unit: (documentation changed) └ Value: (documentation changed) ```
- Loading branch information