Skip to content

feat: Updates supported resource types (37)#1344

Open
udondan wants to merge 1 commit into
mainfrom
resource-type-updates
Open

feat: Updates supported resource types (37)#1344
udondan wants to merge 1 commit into
mainfrom
resource-type-updates

Conversation

@udondan

@udondan udondan commented Jul 1, 2026

Copy link
Copy Markdown
Owner

Added resources:

  • AWS::AWSExternalAnthropic::Workspace
  • AWS::ApiGatewayV2::Stage
  • AWS::AppStream::StackFleetAssociation
  • AWS::AppStream::StackUserAssociation
  • AWS::AppStream::User
  • AWS::BCM::Dashboard
  • AWS::BedrockAgentCore::ConfigurationBundle
  • AWS::BedrockAgentCore::Dataset
  • AWS::BedrockAgentCore::Harness
  • AWS::BedrockAgentCore::PaymentConnector
  • AWS::BedrockAgentCore::PaymentCredentialProvider
  • AWS::BedrockAgentCore::PaymentManager
  • AWS::BedrockAgentCore::ResourcePolicy
  • AWS::Chime::AppInstance
  • AWS::Chime::AppInstanceBot
  • AWS::CloudWatch::LogAlarm
  • AWS::CloudWatch::OTelEnrichment
  • AWS::Config::RemediationConfiguration
  • AWS::CustomerProfiles::DomainObjectType
  • AWS::DevOpsAgent::PrivateConnection
  • AWS::ElastiCache::CacheCluster
  • AWS::ElasticLoadBalancing::LoadBalancer
  • AWS::ElementalInference::Dictionary
  • AWS::IoTAnalytics::Channel
  • AWS::IoTAnalytics::Dataset
  • AWS::IoTAnalytics::Datastore
  • AWS::IoTAnalytics::Pipeline
  • AWS::OpenSearchServerless::CollectionIndex
  • AWS::RTBFabric::LinkRoutingRule
  • AWS::ResilienceHubV2::Policy
  • AWS::ResilienceHubV2::Service
  • AWS::ResilienceHubV2::ServiceFunction
  • AWS::ResilienceHubV2::System
  • AWS::ResilienceHubV2::UserJourney
  • AWS::SageMaker::MlflowApp
  • AWS::SimSpaceWeaver::Simulation
  • AWS::VerifiedPermissions::PolicyStoreAlias

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the SUPPORTED_RESOURCE_TYPES array in src/supported_resource_types.rs to include several new AWS resource types, increasing the total count from 1377 to 1414. The review feedback suggests defining SUPPORTED_RESOURCE_TYPES as a static slice (&[&str]) instead of a fixed-size array to improve maintainability and let the compiler automatically infer the size, eliminating the need for manual size updates in the future.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

@@ -1,4 +1,4 @@
pub static SUPPORTED_RESOURCE_TYPES: [&str; 1377] = [
pub static SUPPORTED_RESOURCE_TYPES: [&str; 1414] = [

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve maintainability and avoid having to manually update the array size (e.g., 1414) every time a resource type is added or removed, you can define SUPPORTED_RESOURCE_TYPES as a static slice (&[&str]) instead of a fixed-size array. This allows the compiler to automatically infer the size.

Suggested change
pub static SUPPORTED_RESOURCE_TYPES: [&str; 1414] = [
pub static SUPPORTED_RESOURCE_TYPES: &[&str] = &[

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant