Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update L1 CloudFormation resource definitions #31120

Merged
merged 2 commits into from
Aug 15, 2024

Conversation

aws-cdk-automation
Copy link
Collaborator

Updates the L1 CloudFormation resource definitions with the latest changes from @aws-cdk/aws-service-spec

L1 CloudFormation resource definition changes:

├[~] service aws-acmpca
│ └ resources
│    └[~] resource AWS::ACMPCA::CertificateAuthority
│      └ types
│         └[~] type CrlConfiguration
│           └ properties
│              └[-] MaxPartitionSizeMB: integer
├[~] service aws-bedrock
│ └ resources
│    └[~] resource AWS::Bedrock::DataSource
│      ├ properties
│      │  ├[-] DataSourceConfiguration: DataSourceConfiguration (required)
│      │  └ VectorIngestionConfiguration: - VectorIngestionConfiguration (immutable)
│      │                                  + VectorIngestionConfiguration
│      └ types
│         ├[+] type BedrockFoundationModelConfiguration
│         │ ├  documentation: Settings for a foundation model used to parse documents for a data source.
│         │ │  name: BedrockFoundationModelConfiguration
│         │ └ properties
│         │    ├ModelArn: string (required)
│         │    └ParsingPrompt: ParsingPrompt
│         ├[~] type ChunkingConfiguration
│         │ └ properties
│         │    ├[+] HierarchicalChunkingConfiguration: HierarchicalChunkingConfiguration
│         │    └[+] SemanticChunkingConfiguration: SemanticChunkingConfiguration
│         ├[+] type CustomTransformationConfiguration
│         │ ├  documentation: Settings for customizing steps in the data source content ingestion pipeline.
│         │ │  name: CustomTransformationConfiguration
│         │ └ properties
│         │    ├IntermediateStorage: IntermediateStorage (required)
│         │    └Transformations: Array<Transformation> (required)
│         ├[-] type DataSourceConfiguration
│         │ ├  documentation: The connection configuration for the data source.
│         │ │  name: DataSourceConfiguration
│         │ └ properties
│         │    ├Type: string (required)
│         │    └S3Configuration: S3DataSourceConfiguration (required)
│         ├[+] type HierarchicalChunkingConfiguration
│         │ ├  documentation: Configurations for when you choose hierarchical chunking. If you set the chunkingStrategy as NONE, exclude this field.
│         │ │  name: HierarchicalChunkingConfiguration
│         │ └ properties
│         │    ├LevelConfigurations: Array<HierarchicalChunkingLevelConfiguration> (required)
│         │    └OverlapTokens: integer (required)
│         ├[+] type HierarchicalChunkingLevelConfiguration
│         │ ├  documentation: Token settings for a layer in a hierarchical chunking configuration.
│         │ │  name: HierarchicalChunkingLevelConfiguration
│         │ └ properties
│         │    └MaxTokens: integer (required)
│         ├[+] type IntermediateStorage
│         │ ├  documentation: A location for storing content from data sources temporarily as it is processed by custom components in the ingestion pipeline.
│         │ │  name: IntermediateStorage
│         │ └ properties
│         │    └S3Location: S3Location (required)
│         ├[+] type ParsingConfiguration
│         │ ├  documentation: Settings for parsing document contents
│         │ │  name: ParsingConfiguration
│         │ └ properties
│         │    ├ParsingStrategy: string (required)
│         │    └BedrockFoundationModelConfiguration: BedrockFoundationModelConfiguration
│         ├[+] type ParsingPrompt
│         │ ├  documentation: Instructions for interpreting the contents of a document.
│         │ │  name: ParsingPrompt
│         │ └ properties
│         │    └ParsingPromptText: string (required)
│         ├[-] type S3DataSourceConfiguration
│         │ ├  documentation: The configuration information to connect to Amazon S3 as your data source.
│         │ │  name: S3DataSourceConfiguration
│         │ └ properties
│         │    ├BucketArn: string (required)
│         │    ├InclusionPrefixes: Array<string>
│         │    └BucketOwnerAccountId: string
│         ├[+] type S3Location
│         │ ├  documentation: An Amazon S3 location.
│         │ │  name: S3Location
│         │ └ properties
│         │    └URI: string (required)
│         ├[+] type SemanticChunkingConfiguration
│         │ ├  documentation: Configurations for when you choose semantic chunking. If you set the chunkingStrategy as NONE, exclude this field.
│         │ │  name: SemanticChunkingConfiguration
│         │ └ properties
│         │    ├BreakpointPercentileThreshold: integer (required)
│         │    ├BufferSize: integer (required)
│         │    └MaxTokens: integer (required)
│         ├[+] type Transformation
│         │ ├  documentation: A Lambda function that processes documents.
│         │ │  name: Transformation
│         │ └ properties
│         │    ├StepToApply: string (required)
│         │    └TransformationFunction: TransformationFunction (required)
│         ├[+] type TransformationFunction
│         │ ├  documentation: A Lambda function that processes documents.
│         │ │  name: TransformationFunction
│         │ └ properties
│         │    └TransformationLambdaConfiguration: TransformationLambdaConfiguration (required)
│         ├[+] type TransformationLambdaConfiguration
│         │ ├  documentation: A Lambda function that processes documents.
│         │ │  name: TransformationLambdaConfiguration
│         │ └ properties
│         │    └LambdaArn: string (required)
│         └[~] type VectorIngestionConfiguration
│           └ properties
│              ├ ChunkingConfiguration: - ChunkingConfiguration
│              │                        + ChunkingConfiguration (immutable)
│              ├[+] CustomTransformationConfiguration: CustomTransformationConfiguration
│              └[+] ParsingConfiguration: ParsingConfiguration (immutable)
├[~] service aws-cognito
│ └ resources
│    ├[~] resource AWS::Cognito::IdentityPool
│    │ ├  - tagInformation: undefined
│    │ │  + tagInformation: {"tagPropertyName":"IdentityPoolTags","variant":"standard"}
│    │ └ properties
│    │    └[+] IdentityPoolTags: Array<tag>
│    ├[~] resource AWS::Cognito::LogDeliveryConfiguration
│    │ └ types
│    │    ├[~] type FirehoseConfiguration
│    │    │ ├  - documentation: undefined
│    │    │ │  + documentation: Configuration for the Amazon Data Firehose stream destination of user activity log export with advanced security features.
│    │    │ └ properties
│    │    │    └ StreamArn: (documentation changed)
│    │    ├[~] type LogConfiguration
│    │    │ └ properties
│    │    │    ├ FirehoseConfiguration: (documentation changed)
│    │    │    └ S3Configuration: (documentation changed)
│    │    └[~] type S3Configuration
│    │      ├  - documentation: undefined
│    │      │  + documentation: Configuration for the Amazon S3 bucket destination of user activity log export with advanced security features.
│    │      └ properties
│    │         └ BucketArn: (documentation changed)
│    └[~] resource AWS::Cognito::UserPool
│      └ types
│         ├[+] type AdvancedSecurityAdditionalFlows
│         │ ├  name: AdvancedSecurityAdditionalFlows
│         │ └ properties
│         │    └CustomAuthMode: string
│         ├[~] type PasswordPolicy
│         │ └ properties
│         │    └ PasswordHistorySize: (documentation changed)
│         └[~] type UserPoolAddOns
│           └ properties
│              ├[+] AdvancedSecurityAdditionalFlows: AdvancedSecurityAdditionalFlows
│              └ AdvancedSecurityMode: (documentation changed)
├[~] service aws-datasync
│ └ resources
│    ├[~] resource AWS::DataSync::LocationHDFS
│    │ └ properties
│    │    └ AgentArns: (documentation changed)
│    ├[~] resource AWS::DataSync::LocationNFS
│    │ ├ properties
│    │ │  └ OnPremConfig: (documentation changed)
│    │ └ types
│    │    └[~] type OnPremConfig
│    │      ├  - documentation: The AWS DataSync agents that are connecting to a Network File System (NFS) location.
│    │      │  + documentation: The AWS DataSync agents that can connect to your Network File System (NFS) file server.
│    │      └ properties
│    │         └ AgentArns: (documentation changed)
│    └[~] resource AWS::DataSync::LocationObjectStorage
│      └ properties
│         └ AgentArns: (documentation changed)
├[~] service aws-ec2
│ └ resources
│    ├[~] resource AWS::EC2::SubnetCidrBlock
│    │ └ attributes
│    │    ├[+] IpSource: string
│    │    └[+] Ipv6AddressAttribute: string
│    ├[~] resource AWS::EC2::TransitGatewayMulticastGroupMember
│    │ └ attributes
│    │    └ SourceType: (documentation changed)
│    ├[~] resource AWS::EC2::TransitGatewayMulticastGroupSource
│    │ └ attributes
│    │    └ MemberType: (documentation changed)
│    └[~] resource AWS::EC2::VPNConnection
│      └ properties
│         └ EnableAcceleration: (documentation changed)
├[~] service aws-glue
│ └ resources
│    └[~] resource AWS::Glue::Connection
│      └ types
│         └[~] type ConnectionInput
│           └ properties
│              └ ConnectionType: (documentation changed)
├[~] service aws-guardduty
│ └ resources
│    └[~] resource AWS::GuardDuty::MalwareProtectionPlan
│      └ types
│         └[~] type CFNTagging
│           └ properties
│              └ Status: (documentation changed)
├[~] service aws-lambda
│ └ resources
│    └[~] resource AWS::Lambda::EventSourceMapping
│      └ properties
│         └[+] KmsKeyArn: string
├[~] service aws-route53
│ └ resources
│    └[~] resource AWS::Route53::HostedZone
│      └  - tagInformation: undefined
│         + tagInformation: {"tagPropertyName":"HostedZoneTags","variant":"standard"}
├[~] service aws-securityhub
│ └ resources
│    └[~] resource AWS::SecurityHub::ConfigurationPolicy
│      └ types
│         ├[~] type SecurityControlsConfiguration
│         │ ├  - documentation: An object that defines which security controls are enabled in an AWS Security Hub configuration policy. The enablement status of a control is aligned across all of the enabled standards in an account.
│         │ │  + documentation: An object that defines which security controls are enabled in an AWS Security Hub configuration policy. The enablement status of a control is aligned across all of the enabled standards in an account.
│         │ │  This property is required only if `ServiceEnabled` is set to `true` in your configuration policy.
│         │ └ properties
│         │    ├ DisabledSecurityControlIdentifiers: (documentation changed)
│         │    └ EnabledSecurityControlIdentifiers: (documentation changed)
│         └[~] type SecurityHubPolicy
│           └ properties
│              ├ EnabledStandardIdentifiers: (documentation changed)
│              └ SecurityControlsConfiguration: (documentation changed)
├[~] service aws-securitylake
│ └ resources
│    └[~] resource AWS::SecurityLake::Subscriber
│      ├ properties
│      │  └[+] Sources: Array<Source> (required)
│      └ types
│         ├[+] type AwsLogSource
│         │ ├  documentation: Adds a natively supported AWS service as an Amazon Security Lake source. Enables source types for member accounts in required AWS Regions, based on the parameters you specify. You can choose any source type in any Region for either accounts that are part of a trusted organization or standalone accounts. Once you add an AWS service as a source, Security Lake starts collecting logs and events from it.
│         │ │  name: AwsLogSource
│         │ └ properties
│         │    ├SourceName: string
│         │    └SourceVersion: string
│         ├[+] type CustomLogSource
│         │ ├  documentation: Third-party custom log source that meets the requirements to be added to Amazon Security Lake . For more details, see [Custom log source](https://docs.aws.amazon.com//security-lake/latest/userguide/custom-sources.html#iam-roles-custom-sources) in the *Amazon Security Lake User Guide* .
│         │ │  name: CustomLogSource
│         │ └ properties
│         │    ├SourceName: string
│         │    └SourceVersion: string
│         └[+] type Source
│           ├  documentation: Sources are logs and events generated from a single system that match a specific event class in the Open Cybersecurity Schema Framework (OCSF) schema. Amazon Security Lake can collect logs and events from a variety of sources, including natively supported AWS services and third-party custom sources.
│           │  name: Source
│           └ properties
│              ├AwsLogSource: AwsLogSource
│              └CustomLogSource: CustomLogSource
└[~] service aws-systemsmanagersap
  └ resources
     └[~] resource AWS::SystemsManagerSAP::Application
       └ properties
          └[+] DatabaseArn: string (immutable)

Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec`
@aws-cdk-automation aws-cdk-automation added auto-approve contribution/core This is a PR that came from AWS. dependencies This issue is a problem in a dependency or a pull request that updates a dependency file. pr-linter/exempt-readme The PR linter will not require README changes pr-linter/exempt-test The PR linter will not require test changes pr-linter/exempt-integ-test The PR linter will not require integ test changes labels Aug 15, 2024
@aws-cdk-automation aws-cdk-automation requested a review from a team August 15, 2024 02:36
@aws-cdk-automation aws-cdk-automation requested a review from a team August 15, 2024 02:36
@github-actions github-actions bot added the p2 label Aug 15, 2024
@colifran colifran added the pr/do-not-merge This PR should not be merged at this time. label Aug 15, 2024
@aws-cdk-automation aws-cdk-automation added the pr/needs-maintainer-review This PR needs a review from a Core Team Member label Aug 15, 2024
@colifran colifran removed the pr/do-not-merge This PR should not be merged at this time. label Aug 15, 2024
Copy link
Contributor

mergify bot commented Aug 15, 2024

Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork).

@aws-cdk-automation
Copy link
Collaborator Author

AWS CodeBuild CI Report

  • CodeBuild project: AutoBuildv2Project1C6BFA3F-wQm2hXv2jqQv
  • Commit ID: 0675c57
  • Result: SUCCEEDED
  • Build Logs (available for 30 days)

Powered by github-codebuild-logs, available on the AWS Serverless Application Repository

@mergify mergify bot merged commit 931ebba into main Aug 15, 2024
11 of 12 checks passed
Copy link
Contributor

mergify bot commented Aug 15, 2024

Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork).

@mergify mergify bot deleted the automation/spec-update branch August 15, 2024 15:06
Copy link

Comments on closed issues and PRs are hard for our team to see.
If you need help, please open a new issue that references this one.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 15, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
auto-approve contribution/core This is a PR that came from AWS. dependencies This issue is a problem in a dependency or a pull request that updates a dependency file. p2 pr/needs-maintainer-review This PR needs a review from a Core Team Member pr-linter/exempt-integ-test The PR linter will not require integ test changes pr-linter/exempt-readme The PR linter will not require README changes pr-linter/exempt-test The PR linter will not require test changes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants