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 (#32712)
Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec` **L1 CloudFormation resource definition changes:** ``` ├[~] service aws-dms │ └ resources │ └[~] resource AWS::DMS::DataProvider │ └ types │ ├[+] type DocDbSettings │ │ ├ documentation: DocDbSettings property identifier. │ │ │ name: DocDbSettings │ │ └ properties │ │ ├ ServerName: string (required) │ │ ├ Port: integer (required) │ │ ├ DatabaseName: string (required) │ │ ├ SslMode: string │ │ └ CertificateArn: string │ ├[+] type MariaDbSettings │ │ ├ documentation: MariaDbSettings property identifier. │ │ │ name: MariaDbSettings │ │ └ properties │ │ ├ ServerName: string (required) │ │ ├ Port: integer (required) │ │ ├ SslMode: string (required) │ │ └ CertificateArn: string │ ├[+] type MongoDbSettings │ │ ├ documentation: MongoDbSettings property identifier. │ │ │ name: MongoDbSettings │ │ └ properties │ │ ├ ServerName: string (required) │ │ ├ Port: integer (required) │ │ ├ DatabaseName: string │ │ ├ SslMode: string │ │ ├ CertificateArn: string │ │ ├ AuthType: string │ │ ├ AuthSource: string │ │ └ AuthMechanism: string │ ├[+] type RedshiftSettings │ │ ├ documentation: RedshiftSettings property identifier. │ │ │ name: RedshiftSettings │ │ └ properties │ │ ├ ServerName: string (required) │ │ ├ Port: integer (required) │ │ └ DatabaseName: string (required) │ └[~] type Settings │ └ properties │ ├[+] DocDbSettings: DocDbSettings │ ├[+] MariaDbSettings: MariaDbSettings │ ├[+] MongoDbSettings: MongoDbSettings │ └[+] RedshiftSettings: RedshiftSettings ├[~] service aws-dynamodb │ └ resources │ ├[~] resource AWS::DynamoDB::GlobalTable │ │ └ properties │ │ └[+] PointInTimeRecoverySpecification: PointInTimeRecoverySpecification │ └[~] resource AWS::DynamoDB::Table │ └ types │ └[~] type PointInTimeRecoverySpecification │ └ properties │ └[+] RecoveryPeriodInDays: integer ├[~] service aws-iot │ └ resources │ └[~] resource AWS::IoT::DomainConfiguration │ └ types │ └[~] type ServerCertificateConfig │ └ properties │ ├ OcspAuthorizedResponderArn: (documentation changed) │ └ OcspLambdaArn: (documentation changed) ├[~] service aws-qbusiness │ └ resources │ └[~] resource AWS::QBusiness::DataAccessor │ └ properties │ └ ApplicationId: - string (immutable) │ + string (required, immutable) ├[~] service aws-quicksight │ └ resources │ ├[~] resource AWS::QuickSight::DataSet │ │ └ types │ │ └[~] type UploadSettings │ │ ├ - documentation: Information about the format for a source file or files. │ │ │ + documentation: undefined │ │ └ properties │ │ ├ ContainsHeader: (documentation changed) │ │ ├ Delimiter: (documentation changed) │ │ ├ Format: (documentation changed) │ │ ├ StartFromRow: (documentation changed) │ │ └ TextQualifier: (documentation changed) │ └[~] resource AWS::QuickSight::Template │ └ types │ └[~] type SheetImageTooltipConfiguration │ └ properties │ └ Visibility: - json ⇐ string │ + json ├[~] service aws-s3 │ └ resources │ └[~] resource AWS::S3::Bucket │ └ types │ └[~] type TagFilter │ └ - documentation: Specifies tags to use to identify a subset of objects for an Amazon S3 bucket. │ + documentation: Specifies tags to use to identify a subset of objects for an Amazon S3 bucket. For more information, see [Categorizing your storage using tags](https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-tagging.html) in the *Amazon Simple Storage Service User Guide* . └[~] service aws-wafv2 └ resources ├[~] resource AWS::WAFv2::RuleGroup │ └ types │ └[~] type Rule │ └ properties │ └ RuleLabels: (documentation changed) └[~] resource AWS::WAFv2::WebACL └ types └[~] type Rule └ properties └ RuleLabels: (documentation changed) ```
- Loading branch information