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

chore(config): add 3 new resource types #32599

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/aws-cdk-lib/aws-config/lib/rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2145,6 +2145,8 @@ export class ResourceType {
public static readonly CLOUDWATCH_ALARM = new ResourceType('AWS::CloudWatch::Alarm');
/** Amazon CloudWatch RUM */
public static readonly CLOUDWATCH_RUM_APP_MONITOR = new ResourceType('AWS::RUM::AppMonitor');
/** Amazon Cognito IdentityPool */
public static readonly COGNITO_IDENTITY_POOL = new ResourceType('AWS::Cognito::IdentityPool');
/** Amazon DynamoDB Table */
public static readonly DYNAMODB_TABLE = new ResourceType('AWS::DynamoDB::Table');
/** Elastic Block Store (EBS) volume */
Expand Down Expand Up @@ -2253,6 +2255,8 @@ export class ResourceType {
public static readonly IVS_PLAYBACK_KEYPAIR = new ResourceType('AWS::IVS::PlaybackKeyPair');
/** Amazon OpenSearch domain */
public static readonly OPENSEARCH_DOMAIN = new ResourceType('AWS::OpenSearch::Domain');
/** Amazon OpenSearch Serverless VPC Endpoint */
public static readonly OPENSEARCH_SERVERLESS_VPC_ENDPOINT = new ResourceType('AWS::OpenSearchServerless::VpcEndpoint');
/** Amazon QLDB ledger */
public static readonly QLDB_LEDGER = new ResourceType('AWS::QLDB::Ledger');
/** Amazon Kinesis stream */
Expand Down Expand Up @@ -2814,6 +2818,8 @@ export class ResourceType {
public static readonly MEDIACONNECT_FLOW_ENTITLEMENT = new ResourceType('AWS::MediaConnect::FlowEntitlement');
/** AWS Elemental MediaConnect FlowVpcInterface */
public static readonly MEDIACONNECT_FLOW_VPC_INTERFACE = new ResourceType('AWS::MediaConnect::FlowVpcInterface');
/** AWS Elemental MediaConnect Gateway */
public static readonly MEDIACONNECT_GATEWAY = new ResourceType('AWS::MediaConnect::Gateway');
/** AWS Elemental MediaTailor PlaybackConfiguration */
public static readonly MEDIATAILOR_PLAYBACK_CONFIGURATION = new ResourceType('AWS::MediaTailor::PlaybackConfiguration');
/** Amazon MSK Configuration */
Expand Down
Loading