@awboost/cfntypes 0.100.35 → 0.100.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10832,6 +10832,200 @@ export type AppStreamUserProps = {
10832
10832
  export type AppStreamUserAttributes = {
10833
10833
  Id: string;
10834
10834
  };
10835
+ /**
10836
+ * Resource type definition for `AWS::AppSync::Api`.
10837
+ * Resource schema for AppSync Api
10838
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-api.html}
10839
+ */
10840
+ export type AppSyncApiProps = {
10841
+ /**
10842
+ * The configuration for an Event Api
10843
+ */
10844
+ EventConfig?: AppSyncApiEventConfig;
10845
+ /**
10846
+ * The name of the AppSync API.
10847
+ * @minLength `1`
10848
+ * @maxLength `50`
10849
+ * @pattern `[A-Za-z0-9_\-\ ]+`
10850
+ */
10851
+ Name: string;
10852
+ /**
10853
+ * The owner contact information for an API resource.
10854
+ * @minLength `1`
10855
+ * @maxLength `250`
10856
+ * @pattern `[A-Za-z0-9_\-\ \.]+`
10857
+ */
10858
+ OwnerContact?: string;
10859
+ /**
10860
+ * An arbitrary set of tags (key-value pairs) for this AppSync API.
10861
+ */
10862
+ Tags?: AppSyncApiTag[];
10863
+ };
10864
+ /**
10865
+ * Attribute type definition for `AWS::AppSync::Api`.
10866
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-api.html#aws-resource-appsync-api-return-values}
10867
+ */
10868
+ export type AppSyncApiAttributes = {
10869
+ /**
10870
+ * The Amazon Resource Name (ARN) of the AppSync Api
10871
+ */
10872
+ ApiArn: string;
10873
+ /**
10874
+ * The unique identifier for the AppSync Api generated by the service
10875
+ */
10876
+ ApiId: string;
10877
+ /**
10878
+ * A map of DNS names for the AppSync API.
10879
+ */
10880
+ Dns: Record<string, string>;
10881
+ };
10882
+ /**
10883
+ * Type definition for `AWS::AppSync::Api.AuthenticationType`.
10884
+ * Security configuration for your AppSync API.
10885
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-authenticationtype.html}
10886
+ */
10887
+ export type AppSyncApiAuthenticationType = "AMAZON_COGNITO_USER_POOLS" | "AWS_IAM" | "API_KEY" | "OPENID_CONNECT" | "AWS_LAMBDA";
10888
+ /**
10889
+ * Type definition for `AWS::AppSync::Api.AuthMode`.
10890
+ * An auth mode.
10891
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-authmode.html}
10892
+ */
10893
+ export type AppSyncApiAuthMode = {
10894
+ /**
10895
+ * Security configuration for your AppSync API.
10896
+ */
10897
+ AuthType?: AppSyncApiAuthenticationType;
10898
+ };
10899
+ /**
10900
+ * Type definition for `AWS::AppSync::Api.AuthProvider`.
10901
+ * An auth provider for the AppSync API.
10902
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-authprovider.html}
10903
+ */
10904
+ export type AppSyncApiAuthProvider = {
10905
+ /**
10906
+ * Security configuration for your AppSync API.
10907
+ */
10908
+ AuthType: AppSyncApiAuthenticationType;
10909
+ /**
10910
+ * Optional authorization configuration for using Amazon Cognito user pools with your API endpoint.
10911
+ */
10912
+ CognitoConfig?: AppSyncApiCognitoConfig;
10913
+ /**
10914
+ * A LambdaAuthorizerConfig holds configuration on how to authorize AWS AppSync API access when using the AWS_LAMBDA authorizer mode. Be aware that an AWS AppSync API may have only one Lambda authorizer configured at a time.
10915
+ */
10916
+ LambdaAuthorizerConfig?: AppSyncApiLambdaAuthorizerConfig;
10917
+ /**
10918
+ * The OpenID Connect configuration.
10919
+ */
10920
+ OpenIDConnectConfig?: AppSyncApiOpenIDConnectConfig;
10921
+ };
10922
+ /**
10923
+ * Type definition for `AWS::AppSync::Api.CognitoConfig`.
10924
+ * Optional authorization configuration for using Amazon Cognito user pools with your API endpoint.
10925
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-cognitoconfig.html}
10926
+ */
10927
+ export type AppSyncApiCognitoConfig = {
10928
+ AppIdClientRegex?: string;
10929
+ AwsRegion: string;
10930
+ UserPoolId: string;
10931
+ };
10932
+ /**
10933
+ * Type definition for `AWS::AppSync::Api.DnsMap`.
10934
+ * A map of DNS names for the AppSync API.
10935
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-dnsmap.html}
10936
+ */
10937
+ export type AppSyncApiDnsMap = Record<string, string>;
10938
+ /**
10939
+ * Type definition for `AWS::AppSync::Api.EventConfig`.
10940
+ * The configuration for an Event Api
10941
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-eventconfig.html}
10942
+ */
10943
+ export type AppSyncApiEventConfig = {
10944
+ /**
10945
+ * A list of auth providers for the AppSync API.
10946
+ */
10947
+ AuthProviders: AppSyncApiAuthProvider[];
10948
+ /**
10949
+ * A list of auth modes for the AppSync API.
10950
+ */
10951
+ ConnectionAuthModes: AppSyncApiAuthMode[];
10952
+ /**
10953
+ * A list of auth modes for the AppSync API.
10954
+ */
10955
+ DefaultPublishAuthModes: AppSyncApiAuthMode[];
10956
+ /**
10957
+ * A list of auth modes for the AppSync API.
10958
+ */
10959
+ DefaultSubscribeAuthModes: AppSyncApiAuthMode[];
10960
+ /**
10961
+ * The log config for the AppSync API.
10962
+ */
10963
+ LogConfig?: AppSyncApiEventLogConfig;
10964
+ };
10965
+ /**
10966
+ * Type definition for `AWS::AppSync::Api.EventLogConfig`.
10967
+ * The log config for the AppSync API.
10968
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-eventlogconfig.html}
10969
+ */
10970
+ export type AppSyncApiEventLogConfig = {
10971
+ CloudWatchLogsRoleArn: string;
10972
+ /**
10973
+ * Logging level for the AppSync API.
10974
+ */
10975
+ LogLevel: AppSyncApiEventLogLevel;
10976
+ };
10977
+ /**
10978
+ * Type definition for `AWS::AppSync::Api.EventLogLevel`.
10979
+ * Logging level for the AppSync API.
10980
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-eventloglevel.html}
10981
+ */
10982
+ export type AppSyncApiEventLogLevel = "NONE" | "ERROR" | "ALL" | "INFO" | "DEBUG";
10983
+ /**
10984
+ * Type definition for `AWS::AppSync::Api.LambdaAuthorizerConfig`.
10985
+ * A LambdaAuthorizerConfig holds configuration on how to authorize AWS AppSync API access when using the AWS_LAMBDA authorizer mode. Be aware that an AWS AppSync API may have only one Lambda authorizer configured at a time.
10986
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-lambdaauthorizerconfig.html}
10987
+ */
10988
+ export type AppSyncApiLambdaAuthorizerConfig = {
10989
+ /**
10990
+ * @min `0`
10991
+ * @max `3600`
10992
+ */
10993
+ AuthorizerResultTtlInSeconds?: number;
10994
+ AuthorizerUri: string;
10995
+ IdentityValidationExpression?: string;
10996
+ };
10997
+ /**
10998
+ * Type definition for `AWS::AppSync::Api.OpenIDConnectConfig`.
10999
+ * The OpenID Connect configuration.
11000
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-openidconnectconfig.html}
11001
+ */
11002
+ export type AppSyncApiOpenIDConnectConfig = {
11003
+ AuthTTL?: number;
11004
+ ClientId?: string;
11005
+ IatTTL?: number;
11006
+ Issuer: string;
11007
+ };
11008
+ /**
11009
+ * Type definition for `AWS::AppSync::Api.Tag`.
11010
+ * An arbitrary set of tags (key-value pairs) for this AppSync API.
11011
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-api-tag.html}
11012
+ */
11013
+ export type AppSyncApiTag = {
11014
+ /**
11015
+ * A string used to identify this tag. You can specify a maximum of 128 characters for a tag key.
11016
+ * @minLength `1`
11017
+ * @maxLength `128`
11018
+ * @pattern `^(?!aws:)[ a-zA-Z+-=._:/]+$`
11019
+ */
11020
+ Key: string;
11021
+ /**
11022
+ * A string containing the value for this tag. You can specify a maximum of 256 characters for a tag value.
11023
+ * @minLength `0`
11024
+ * @maxLength `256`
11025
+ * @pattern `^[\s\w+-=\.:/@]*$`
11026
+ */
11027
+ Value: string;
11028
+ };
10835
11029
  /**
10836
11030
  * Resource Type definition for AWS::AppSync::ApiCache
10837
11031
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-apicache.html}
@@ -10870,6 +11064,94 @@ export type AppSyncApiKeyAttributes = {
10870
11064
  ApiKeyId: string;
10871
11065
  Arn: string;
10872
11066
  };
11067
+ /**
11068
+ * Resource type definition for `AWS::AppSync::ChannelNamespace`.
11069
+ * Resource schema for AppSync ChannelNamespace
11070
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-channelnamespace.html}
11071
+ */
11072
+ export type AppSyncChannelNamespaceProps = {
11073
+ /**
11074
+ * AppSync Api Id that this Channel Namespace belongs to.
11075
+ */
11076
+ ApiId: string;
11077
+ /**
11078
+ * String of APPSYNC_JS code to be used by the handlers.
11079
+ * @minLength `1`
11080
+ * @maxLength `32768`
11081
+ */
11082
+ CodeHandlers?: string;
11083
+ /**
11084
+ * The Amazon S3 endpoint where the code is located.
11085
+ */
11086
+ CodeS3Location?: string;
11087
+ /**
11088
+ * Namespace indentifier.
11089
+ * @minLength `1`
11090
+ * @maxLength `50`
11091
+ * @pattern `([A-Za-z0-9](?:[A-Za-z0-9\-]{0,48}[A-Za-z0-9])?)`
11092
+ */
11093
+ Name: string;
11094
+ /**
11095
+ * List of AuthModes supported for Publish operations.
11096
+ */
11097
+ PublishAuthModes?: AppSyncChannelNamespaceAuthMode[];
11098
+ /**
11099
+ * List of AuthModes supported for Subscribe operations.
11100
+ */
11101
+ SubscribeAuthModes?: AppSyncChannelNamespaceAuthMode[];
11102
+ /**
11103
+ * An arbitrary set of tags (key-value pairs) for this AppSync API.
11104
+ */
11105
+ Tags?: AppSyncChannelNamespaceTag[];
11106
+ };
11107
+ /**
11108
+ * Attribute type definition for `AWS::AppSync::ChannelNamespace`.
11109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-channelnamespace.html#aws-resource-appsync-channelnamespace-return-values}
11110
+ */
11111
+ export type AppSyncChannelNamespaceAttributes = {
11112
+ /**
11113
+ * The Amazon Resource Name (ARN) for the Channel Namespace.
11114
+ */
11115
+ ChannelNamespaceArn: string;
11116
+ };
11117
+ /**
11118
+ * Type definition for `AWS::AppSync::ChannelNamespace.AuthenticationType`.
11119
+ * Security configuration for your AppSync API.
11120
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-authenticationtype.html}
11121
+ */
11122
+ export type AppSyncChannelNamespaceAuthenticationType = "AMAZON_COGNITO_USER_POOLS" | "AWS_IAM" | "API_KEY" | "OPENID_CONNECT" | "AWS_LAMBDA";
11123
+ /**
11124
+ * Type definition for `AWS::AppSync::ChannelNamespace.AuthMode`.
11125
+ * An auth mode.
11126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-authmode.html}
11127
+ */
11128
+ export type AppSyncChannelNamespaceAuthMode = {
11129
+ /**
11130
+ * Security configuration for your AppSync API.
11131
+ */
11132
+ AuthType?: AppSyncChannelNamespaceAuthenticationType;
11133
+ };
11134
+ /**
11135
+ * Type definition for `AWS::AppSync::ChannelNamespace.Tag`.
11136
+ * An arbitrary set of tags (key-value pairs) for this AppSync API.
11137
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-channelnamespace-tag.html}
11138
+ */
11139
+ export type AppSyncChannelNamespaceTag = {
11140
+ /**
11141
+ * A string used to identify this tag. You can specify a maximum of 128 characters for a tag key.
11142
+ * @minLength `1`
11143
+ * @maxLength `128`
11144
+ * @pattern `^(?!aws:)[ a-zA-Z+-=._:/]+$`
11145
+ */
11146
+ Key: string;
11147
+ /**
11148
+ * A string containing the value for this tag. You can specify a maximum of 256 characters for a tag value.
11149
+ * @minLength `0`
11150
+ * @maxLength `256`
11151
+ * @pattern `^[\s\w+-=\.:/@]*$`
11152
+ */
11153
+ Value: string;
11154
+ };
10873
11155
  /**
10874
11156
  * Resource Type definition for AWS::AppSync::DataSource
10875
11157
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html}
@@ -17262,6 +17544,144 @@ export type BedrockAgentAliasAgentAliasStatus = "CREATING" | "PREPARED" | "FAILE
17262
17544
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agentalias-tagsmap.html}
17263
17545
  */
17264
17546
  export type BedrockAgentAliasTagsMap = Record<string, string>;
17547
+ /**
17548
+ * Definition of AWS::Bedrock::ApplicationInferenceProfile Resource Type
17549
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html}
17550
+ */
17551
+ export type BedrockApplicationInferenceProfileProps = {
17552
+ /**
17553
+ * Description of the inference profile
17554
+ * @minLength `1`
17555
+ * @maxLength `200`
17556
+ * @pattern `^([0-9a-zA-Z:.][ _-]?)+$`
17557
+ */
17558
+ Description?: string;
17559
+ /**
17560
+ * @minLength `1`
17561
+ * @maxLength `64`
17562
+ * @pattern `^([0-9a-zA-Z][ _-]?)+$`
17563
+ */
17564
+ InferenceProfileName: string;
17565
+ ModelSource?: BedrockApplicationInferenceProfileInferenceProfileModelSource;
17566
+ /**
17567
+ * List of Tags
17568
+ * @minLength `0`
17569
+ * @maxLength `200`
17570
+ */
17571
+ Tags?: BedrockApplicationInferenceProfileTag[];
17572
+ };
17573
+ /**
17574
+ * Attribute type definition for `AWS::Bedrock::ApplicationInferenceProfile`.
17575
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-applicationinferenceprofile.html#aws-resource-bedrock-applicationinferenceprofile-return-values}
17576
+ */
17577
+ export type BedrockApplicationInferenceProfileAttributes = {
17578
+ /**
17579
+ * Time Stamp
17580
+ */
17581
+ CreatedAt: string;
17582
+ /**
17583
+ * @minLength `1`
17584
+ * @maxLength `2048`
17585
+ * @pattern `^arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{0,20}):(|[0-9]{12}):(inference-profile|application-inference-profile)/[a-zA-Z0-9-:.]+$`
17586
+ */
17587
+ InferenceProfileArn: string;
17588
+ /**
17589
+ * @minLength `1`
17590
+ * @maxLength `64`
17591
+ * @pattern `^[a-zA-Z0-9-:.]+$`
17592
+ */
17593
+ InferenceProfileId: string;
17594
+ /**
17595
+ * Inference profile identifier. Supports both system-defined inference profile ids, and inference profile ARNs.
17596
+ * @minLength `1`
17597
+ * @maxLength `2048`
17598
+ * @pattern `^(arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{0,20}):(|[0-9]{12}):(inference-profile|application-inference-profile)/)?[a-zA-Z0-9-:.]+$`
17599
+ */
17600
+ InferenceProfileIdentifier: string;
17601
+ /**
17602
+ * List of model configuration
17603
+ * @minLength `1`
17604
+ * @maxLength `5`
17605
+ */
17606
+ Models: {
17607
+ /**
17608
+ * ARN for Foundation Models in Bedrock. These models can be used as base models for model customization jobs
17609
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/[a-z0-9-]{1,63}[.]{1}([a-z0-9-]{1,63}[.]){0,2}[a-z0-9-]{1,63}([:][a-z0-9-]{1,63}){0,2}$`
17610
+ */
17611
+ ModelArn: string;
17612
+ }[];
17613
+ /**
17614
+ * Status of the Inference Profile
17615
+ */
17616
+ Status: BedrockApplicationInferenceProfileInferenceProfileStatus;
17617
+ /**
17618
+ * Type of the Inference Profile
17619
+ */
17620
+ Type: BedrockApplicationInferenceProfileInferenceProfileType;
17621
+ /**
17622
+ * Time Stamp
17623
+ */
17624
+ UpdatedAt: string;
17625
+ };
17626
+ /**
17627
+ * Type definition for `AWS::Bedrock::ApplicationInferenceProfile.InferenceProfileModel`.
17628
+ * Model configuration
17629
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-applicationinferenceprofile-inferenceprofilemodel.html}
17630
+ */
17631
+ export type BedrockApplicationInferenceProfileInferenceProfileModel = {
17632
+ /**
17633
+ * ARN for Foundation Models in Bedrock. These models can be used as base models for model customization jobs
17634
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/[a-z0-9-]{1,63}[.]{1}([a-z0-9-]{1,63}[.]){0,2}[a-z0-9-]{1,63}([:][a-z0-9-]{1,63}){0,2}$`
17635
+ */
17636
+ ModelArn?: string;
17637
+ };
17638
+ /**
17639
+ * Type definition for `AWS::Bedrock::ApplicationInferenceProfile.InferenceProfileModelSource`.
17640
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-applicationinferenceprofile-inferenceprofilemodelsource.html}
17641
+ */
17642
+ export type BedrockApplicationInferenceProfileInferenceProfileModelSource = {
17643
+ /**
17644
+ * Source arns for a custom inference profile to copy its regional load balancing config from. This
17645
+ can either be a foundation model or predefined inference profile ARN.
17646
+ * @minLength `1`
17647
+ * @maxLength `2048`
17648
+ * @pattern `^arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{0,20}):(|[0-9]{12}):(inference-profile|foundation-model)/[a-zA-Z0-9-:.]+$`
17649
+ */
17650
+ CopyFrom: string;
17651
+ };
17652
+ /**
17653
+ * Type definition for `AWS::Bedrock::ApplicationInferenceProfile.InferenceProfileStatus`.
17654
+ * Status of the Inference Profile
17655
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-applicationinferenceprofile-inferenceprofilestatus.html}
17656
+ */
17657
+ export type BedrockApplicationInferenceProfileInferenceProfileStatus = "ACTIVE";
17658
+ /**
17659
+ * Type definition for `AWS::Bedrock::ApplicationInferenceProfile.InferenceProfileType`.
17660
+ * Type of the Inference Profile
17661
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-applicationinferenceprofile-inferenceprofiletype.html}
17662
+ */
17663
+ export type BedrockApplicationInferenceProfileInferenceProfileType = "APPLICATION" | "SYSTEM_DEFINED";
17664
+ /**
17665
+ * Type definition for `AWS::Bedrock::ApplicationInferenceProfile.Tag`.
17666
+ * Definition of the key/value pair for a tag
17667
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-applicationinferenceprofile-tag.html}
17668
+ */
17669
+ export type BedrockApplicationInferenceProfileTag = {
17670
+ /**
17671
+ * Tag Key
17672
+ * @minLength `1`
17673
+ * @maxLength `128`
17674
+ * @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
17675
+ */
17676
+ Key: string;
17677
+ /**
17678
+ * Tag Value
17679
+ * @minLength `0`
17680
+ * @maxLength `256`
17681
+ * @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
17682
+ */
17683
+ Value: string;
17684
+ };
17265
17685
  /**
17266
17686
  * Definition of AWS::Bedrock::DataSource Resource Type
17267
17687
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-datasource.html}
@@ -17338,7 +17758,7 @@ export type BedrockDataSourceBedrockFoundationModelConfiguration = {
17338
17758
  * The model's ARN.
17339
17759
  * @minLength `1`
17340
17760
  * @maxLength `2048`
17341
- * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})$`
17761
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})|(arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{1,20}):(|[0-9]{12}):(inference-profile|application-inference-profile)/[a-zA-Z0-9-:.]+)$`
17342
17762
  */
17343
17763
  ModelArn: string;
17344
17764
  /**
@@ -51440,7 +51860,7 @@ export type EC2VPNConnectionPhase2DHGroupNumbersRequestListValue = {
51440
51860
  /**
51441
51861
  * The Diffie-Hellmann group number.
51442
51862
  */
51443
- Value?: 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24;
51863
+ Value?: 2 | 5 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24;
51444
51864
  };
51445
51865
  /**
51446
51866
  * Type definition for `AWS::EC2::VPNConnection.Phase2EncryptionAlgorithmsRequestListValue`.
@@ -60406,6 +60826,7 @@ export type EntityResolutionSchemaMappingTag = {
60406
60826
  export type EventsApiDestinationProps = {
60407
60827
  /**
60408
60828
  * The arn of the connection.
60829
+ * @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection/[\.\-_A-Za-z0-9]+/[\-A-Za-z0-9]+$`
60409
60830
  */
60410
60831
  ConnectionArn: string;
60411
60832
  /**
@@ -60415,6 +60836,7 @@ export type EventsApiDestinationProps = {
60415
60836
  HttpMethod: "GET" | "HEAD" | "POST" | "OPTIONS" | "PUT" | "DELETE" | "PATCH";
60416
60837
  /**
60417
60838
  * Url endpoint to invoke.
60839
+ * @pattern `^((%[0-9A-Fa-f]{2}|[-()_.!~*';/?:@\x26=+$,A-Za-z0-9])+)([).!';/?:,])?$`
60418
60840
  */
60419
60841
  InvocationEndpoint: string;
60420
60842
  /**
@@ -60425,6 +60847,7 @@ export type EventsApiDestinationProps = {
60425
60847
  * Name of the apiDestination.
60426
60848
  * @minLength `1`
60427
60849
  * @maxLength `64`
60850
+ * @pattern `[\.\-_A-Za-z0-9]+`
60428
60851
  */
60429
60852
  Name?: string;
60430
60853
  };
@@ -60435,6 +60858,7 @@ export type EventsApiDestinationProps = {
60435
60858
  export type EventsApiDestinationAttributes = {
60436
60859
  /**
60437
60860
  * The arn of the api destination.
60861
+ * @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:api-destination/[\.\-_A-Za-z0-9]+/[\-A-Za-z0-9]+$`
60438
60862
  */
60439
60863
  Arn: string;
60440
60864
  };
@@ -60446,6 +60870,7 @@ export type EventsArchiveProps = {
60446
60870
  /**
60447
60871
  * @minLength `1`
60448
60872
  * @maxLength `48`
60873
+ * @pattern `[\.\-_A-Za-z0-9]+`
60449
60874
  */
60450
60875
  ArchiveName?: string;
60451
60876
  Description?: string;
@@ -60458,6 +60883,9 @@ export type EventsArchiveProps = {
60458
60883
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#aws-resource-events-archive-return-values}
60459
60884
  */
60460
60885
  export type EventsArchiveAttributes = {
60886
+ /**
60887
+ * @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:.+\/.+$`
60888
+ */
60461
60889
  Arn: string;
60462
60890
  };
60463
60891
  /**
@@ -60476,6 +60904,7 @@ export type EventsConnectionProps = {
60476
60904
  * Name of the connection.
60477
60905
  * @minLength `1`
60478
60906
  * @maxLength `64`
60907
+ * @pattern `[\.\-_A-Za-z0-9]+`
60479
60908
  */
60480
60909
  Name?: string;
60481
60910
  };
@@ -60486,10 +60915,12 @@ export type EventsConnectionProps = {
60486
60915
  export type EventsConnectionAttributes = {
60487
60916
  /**
60488
60917
  * The arn of the connection resource.
60918
+ * @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection\/[\.\-_A-Za-z0-9]+\/[\-A-Za-z0-9]+$`
60489
60919
  */
60490
60920
  Arn: string;
60491
60921
  /**
60492
60922
  * The arn of the secrets manager secret created in the customer account.
60923
+ * @pattern `^arn:aws([a-z]|\-)*:secretsmanager:([a-z]|\d|\-)*:([0-9]{12})?:secret:[\/_+=\.@\-A-Za-z0-9]+$`
60493
60924
  */
60494
60925
  SecretArn: string;
60495
60926
  };
@@ -60498,7 +60929,13 @@ export type EventsConnectionAttributes = {
60498
60929
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-apikeyauthparameters.html}
60499
60930
  */
60500
60931
  export type EventsConnectionApiKeyAuthParameters = {
60932
+ /**
60933
+ * @pattern `^[ \t]*[^\x00-\x1F\x7F]+([ \t]+[^\x00-\x1F\x7F]+)*[ \t]*$`
60934
+ */
60501
60935
  ApiKeyName: string;
60936
+ /**
60937
+ * @pattern `^[ \t]*[^\x00-\x1F\x7F]+([ \t]+[^\x00-\x1F\x7F]+)*[ \t]*$`
60938
+ */
60502
60939
  ApiKeyValue: string;
60503
60940
  };
60504
60941
  /**
@@ -60516,7 +60953,13 @@ export type EventsConnectionAuthParameters = {
60516
60953
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-basicauthparameters.html}
60517
60954
  */
60518
60955
  export type EventsConnectionBasicAuthParameters = {
60956
+ /**
60957
+ * @pattern `^[ \t]*[^\x00-\x1F\x7F]+([ \t]+[^\x00-\x1F\x7F]+)*[ \t]*$`
60958
+ */
60519
60959
  Password: string;
60960
+ /**
60961
+ * @pattern `^[ \t]*[^\x00-\x1F\x7F]+([ \t]+[^\x00-\x1F\x7F]+)*[ \t]*$`
60962
+ */
60520
60963
  Username: string;
60521
60964
  };
60522
60965
  /**
@@ -60524,7 +60967,13 @@ export type EventsConnectionBasicAuthParameters = {
60524
60967
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-clientparameters.html}
60525
60968
  */
60526
60969
  export type EventsConnectionClientParameters = {
60970
+ /**
60971
+ * @pattern `^[ \t]*[^\x00-\x1F\x7F]+([ \t]+[^\x00-\x1F\x7F]+)*[ \t]*$`
60972
+ */
60527
60973
  ClientID: string;
60974
+ /**
60975
+ * @pattern `^[ \t]*[^\x00-\x1F\x7F]+([ \t]+[^\x00-\x1F\x7F]+)*[ \t]*$`
60976
+ */
60528
60977
  ClientSecret: string;
60529
60978
  };
60530
60979
  /**
@@ -60544,6 +60993,7 @@ export type EventsConnectionOAuthParameters = {
60544
60993
  /**
60545
60994
  * @minLength `1`
60546
60995
  * @maxLength `2048`
60996
+ * @pattern `^((%[0-9A-Fa-f]{2}|[-()_.!~*';/?:@\x26=+$,A-Za-z0-9])+)([).!';/?:,])?$`
60547
60997
  */
60548
60998
  AuthorizationEndpoint: string;
60549
60999
  ClientParameters: EventsConnectionClientParameters;
@@ -89447,10 +89897,6 @@ export type LambdaVersionProps = {
89447
89897
  * @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
89448
89898
  */
89449
89899
  FunctionName: string;
89450
- /**
89451
- * The resource policy of your function
89452
- */
89453
- Policy?: Record<string, any>;
89454
89900
  /**
89455
89901
  * Specifies a provisioned concurrency configuration for a function's version. Updates are not supported for this property.
89456
89902
  */
@@ -103899,7 +104345,7 @@ export type MWAAEnvironmentProps = {
103899
104345
  LoggingConfiguration?: MWAAEnvironmentLoggingConfiguration;
103900
104346
  /**
103901
104347
  * Maximum webserver compute units.
103902
- * @min `2`
104348
+ * @min `1`
103903
104349
  */
103904
104350
  MaxWebservers?: number;
103905
104351
  /**
@@ -103909,7 +104355,7 @@ export type MWAAEnvironmentProps = {
103909
104355
  MaxWorkers?: number;
103910
104356
  /**
103911
104357
  * Minimum webserver compute units.
103912
- * @min `2`
104358
+ * @min `1`
103913
104359
  */
103914
104360
  MinWebservers?: number;
103915
104361
  /**
@@ -159345,7 +159791,7 @@ export type SageMakerStudioLifecycleConfigProps = {
159345
159791
  */
159346
159792
  StudioLifecycleConfigAppType: "JupyterServer" | "KernelGateway" | "CodeEditor" | "JupyterLab";
159347
159793
  /**
159348
- * The content of your Amazon SageMaker Studio Lifecycle Configuration script.
159794
+ * The content of your Amazon SageMaker Studio Lifecycle Configuration script. This content must be base64 encoded.
159349
159795
  * @minLength `1`
159350
159796
  * @maxLength `16384`
159351
159797
  * @pattern `[\S\s]+`
@@ -159359,7 +159805,7 @@ export type SageMakerStudioLifecycleConfigProps = {
159359
159805
  */
159360
159806
  StudioLifecycleConfigName: string;
159361
159807
  /**
159362
- * Tags to be associated with the Lifecycle Configuration.
159808
+ * Tags to be associated with the Lifecycle Configuration. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API.
159363
159809
  * @minLength `0`
159364
159810
  * @maxLength `50`
159365
159811
  */
@@ -160509,10 +160955,25 @@ export type SecretsManagerResourcePolicyAttributes = {
160509
160955
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html}
160510
160956
  */
160511
160957
  export type SecretsManagerRotationScheduleProps = {
160958
+ /**
160959
+ * Creates a new Lambda rotation function based on one of the Secrets Manager rotation function templates. To use a rotation function that already exists, specify RotationLambdaARN instead.
160960
+ */
160512
160961
  HostedRotationLambda?: SecretsManagerRotationScheduleHostedRotationLambda;
160962
+ /**
160963
+ * Specifies whether to rotate the secret immediately or wait until the next scheduled rotation window.
160964
+ */
160513
160965
  RotateImmediatelyOnUpdate?: boolean;
160966
+ /**
160967
+ * The ARN of an existing Lambda rotation function. To specify a rotation function that is also defined in this template, use the Ref function.
160968
+ */
160514
160969
  RotationLambdaARN?: string;
160970
+ /**
160971
+ * A structure that defines the rotation configuration for this secret.
160972
+ */
160515
160973
  RotationRules?: SecretsManagerRotationScheduleRotationRules;
160974
+ /**
160975
+ * The ARN or name of the secret to rotate.
160976
+ */
160516
160977
  SecretId: string;
160517
160978
  };
160518
160979
  /**
@@ -160520,6 +160981,9 @@ export type SecretsManagerRotationScheduleProps = {
160520
160981
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html#aws-resource-secretsmanager-rotationschedule-return-values}
160521
160982
  */
160522
160983
  export type SecretsManagerRotationScheduleAttributes = {
160984
+ /**
160985
+ * The ARN of the secret.
160986
+ */
160523
160987
  Id: string;
160524
160988
  };
160525
160989
  /**
@@ -160527,16 +160991,49 @@ export type SecretsManagerRotationScheduleAttributes = {
160527
160991
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-hostedrotationlambda.html}
160528
160992
  */
160529
160993
  export type SecretsManagerRotationScheduleHostedRotationLambda = {
160994
+ /**
160995
+ * A string of the characters that you don't want in the password.
160996
+ */
160530
160997
  ExcludeCharacters?: string;
160998
+ /**
160999
+ * The ARN of the KMS key that Secrets Manager uses to encrypt the secret. If you don't specify this value, then Secrets Manager uses the key aws/secretsmanager. If aws/secretsmanager doesn't yet exist, then Secrets Manager creates it for you automatically the first time it encrypts the secret value.
161000
+ */
160531
161001
  KmsKeyArn?: string;
161002
+ /**
161003
+ * The ARN of the secret that contains superuser credentials, if you use the alternating users rotation strategy. CloudFormation grants the execution role for the Lambda rotation function GetSecretValue permission to the secret in this property.
161004
+ */
160532
161005
  MasterSecretArn?: string;
161006
+ /**
161007
+ * The ARN of the KMS key that Secrets Manager used to encrypt the superuser secret, if you use the alternating users strategy and the superuser secret is encrypted with a customer managed key. You don't need to specify this property if the superuser secret is encrypted using the key aws/secretsmanager. CloudFormation grants the execution role for the Lambda rotation function Decrypt, DescribeKey, and GenerateDataKey permission to the key in this property.
161008
+ */
160533
161009
  MasterSecretKmsKeyArn?: string;
161010
+ /**
161011
+ * The name of the Lambda rotation function.
161012
+ */
160534
161013
  RotationLambdaName?: string;
161014
+ /**
161015
+ * The type of rotation template to use
161016
+ */
160535
161017
  RotationType: string;
161018
+ /**
161019
+ * The python runtime associated with the Lambda function
161020
+ */
160536
161021
  Runtime?: string;
161022
+ /**
161023
+ * The ARN of the secret that contains superuser credentials, if you use the alternating users rotation strategy. CloudFormation grants the execution role for the Lambda rotation function GetSecretValue permission to the secret in this property.
161024
+ */
160537
161025
  SuperuserSecretArn?: string;
161026
+ /**
161027
+ * The ARN of the KMS key that Secrets Manager used to encrypt the superuser secret, if you use the alternating users strategy and the superuser secret is encrypted with a customer managed key. You don't need to specify this property if the superuser secret is encrypted using the key aws/secretsmanager. CloudFormation grants the execution role for the Lambda rotation function Decrypt, DescribeKey, and GenerateDataKey permission to the key in this property.
161028
+ */
160538
161029
  SuperuserSecretKmsKeyArn?: string;
161030
+ /**
161031
+ * A comma-separated list of security group IDs applied to the target database.
161032
+ */
160539
161033
  VpcSecurityGroupIds?: string;
161034
+ /**
161035
+ * A comma separated list of VPC subnet IDs of the target database network. The Lambda rotation function is in the same subnet group.
161036
+ */
160540
161037
  VpcSubnetIds?: string;
160541
161038
  };
160542
161039
  /**
@@ -160544,8 +161041,17 @@ export type SecretsManagerRotationScheduleHostedRotationLambda = {
160544
161041
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-rotationrules.html}
160545
161042
  */
160546
161043
  export type SecretsManagerRotationScheduleRotationRules = {
161044
+ /**
161045
+ * The number of days between automatic scheduled rotations of the secret. You can use this value to check that your secret meets your compliance guidelines for how often secrets must be rotated.
161046
+ */
160547
161047
  AutomaticallyAfterDays?: number;
161048
+ /**
161049
+ * The length of the rotation window in hours, for example 3h for a three hour window. Secrets Manager rotates your secret at any time during this window. The window must not extend into the next rotation window or the next UTC day. The window starts according to the ScheduleExpression. If you don't specify a Duration, for a ScheduleExpression in hours, the window automatically closes after one hour. For a ScheduleExpression in days, the window automatically closes at the end of the UTC day.
161050
+ */
160548
161051
  Duration?: string;
161052
+ /**
161053
+ * A cron() or rate() expression that defines the schedule for rotating your secret. Secrets Manager rotation schedules use UTC time zone.
161054
+ */
160549
161055
  ScheduleExpression?: string;
160550
161056
  };
160551
161057
  /**
@@ -163824,6 +164330,12 @@ export type SESConfigurationSetDashboardOptions = {
163824
164330
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-deliveryoptions.html}
163825
164331
  */
163826
164332
  export type SESConfigurationSetDeliveryOptions = {
164333
+ /**
164334
+ * Specifies the maximum time until which SES will retry sending emails
164335
+ * @min `300`
164336
+ * @max `50400`
164337
+ */
164338
+ MaxDeliverySeconds?: number;
163827
164339
  /**
163828
164340
  * The name of the dedicated IP pool to associate with the configuration set.
163829
164341
  */
@@ -173417,7 +173929,7 @@ export type WAFv2RuleGroupRateBasedStatement = {
173417
173929
  EvaluationWindowSec?: WAFv2RuleGroupEvaluationWindowSec;
173418
173930
  ForwardedIPConfig?: WAFv2RuleGroupForwardedIPConfiguration;
173419
173931
  /**
173420
- * @min `100`
173932
+ * @min `10`
173421
173933
  * @max `2000000000`
173422
173934
  */
173423
173935
  Limit: number;
@@ -174570,7 +175082,7 @@ export type WAFv2WebACLRateBasedStatement = {
174570
175082
  EvaluationWindowSec?: WAFv2WebACLEvaluationWindowSec;
174571
175083
  ForwardedIPConfig?: WAFv2WebACLForwardedIPConfiguration;
174572
175084
  /**
174573
- * @min `100`
175085
+ * @min `10`
174574
175086
  * @max `2000000000`
174575
175087
  */
174576
175088
  Limit: number;
@@ -175246,6 +175758,40 @@ export type WisdomAIPromptTextFullAIPromptEditTemplateConfiguration = {
175246
175758
  */
175247
175759
  Text: string;
175248
175760
  };
175761
+ /**
175762
+ * Definition of AWS::Wisdom::AIPromptVersion Resource Type
175763
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html}
175764
+ */
175765
+ export type WisdomAIPromptVersionProps = {
175766
+ /**
175767
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
175768
+ */
175769
+ AIPromptId: string;
175770
+ /**
175771
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
175772
+ */
175773
+ AssistantId: string;
175774
+ ModifiedTimeSeconds?: number;
175775
+ };
175776
+ /**
175777
+ * Attribute type definition for `AWS::Wisdom::AIPromptVersion`.
175778
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aipromptversion.html#aws-resource-wisdom-aipromptversion-return-values}
175779
+ */
175780
+ export type WisdomAIPromptVersionAttributes = {
175781
+ /**
175782
+ * @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
175783
+ */
175784
+ AIPromptArn: string;
175785
+ /**
175786
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
175787
+ */
175788
+ AIPromptVersionId: string;
175789
+ /**
175790
+ * @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
175791
+ */
175792
+ AssistantArn: string;
175793
+ VersionNumber: number;
175794
+ };
175249
175795
  /**
175250
175796
  * Definition of AWS::Wisdom::Assistant Resource Type
175251
175797
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-assistant.html}
@@ -176874,8 +177420,10 @@ export interface ResourceTypes {
176874
177420
  "AWS::AppStream::StackFleetAssociation": AppStreamStackFleetAssociationProps;
176875
177421
  "AWS::AppStream::StackUserAssociation": AppStreamStackUserAssociationProps;
176876
177422
  "AWS::AppStream::User": AppStreamUserProps;
177423
+ "AWS::AppSync::Api": AppSyncApiProps;
176877
177424
  "AWS::AppSync::ApiCache": AppSyncApiCacheProps;
176878
177425
  "AWS::AppSync::ApiKey": AppSyncApiKeyProps;
177426
+ "AWS::AppSync::ChannelNamespace": AppSyncChannelNamespaceProps;
176879
177427
  "AWS::AppSync::DataSource": AppSyncDataSourceProps;
176880
177428
  "AWS::AppSync::DomainName": AppSyncDomainNameProps;
176881
177429
  "AWS::AppSync::DomainNameApiAssociation": AppSyncDomainNameApiAssociationProps;
@@ -176923,6 +177471,7 @@ export interface ResourceTypes {
176923
177471
  "AWS::BCMDataExports::Export": BCMDataExportsExportProps;
176924
177472
  "AWS::Bedrock::Agent": BedrockAgentProps;
176925
177473
  "AWS::Bedrock::AgentAlias": BedrockAgentAliasProps;
177474
+ "AWS::Bedrock::ApplicationInferenceProfile": BedrockApplicationInferenceProfileProps;
176926
177475
  "AWS::Bedrock::DataSource": BedrockDataSourceProps;
176927
177476
  "AWS::Bedrock::Flow": BedrockFlowProps;
176928
177477
  "AWS::Bedrock::FlowAlias": BedrockFlowAliasProps;
@@ -178082,6 +178631,7 @@ export interface ResourceTypes {
178082
178631
  "AWS::WAFv2::WebACL": WAFv2WebACLProps;
178083
178632
  "AWS::WAFv2::WebACLAssociation": WAFv2WebACLAssociationProps;
178084
178633
  "AWS::Wisdom::AIPrompt": WisdomAIPromptProps;
178634
+ "AWS::Wisdom::AIPromptVersion": WisdomAIPromptVersionProps;
178085
178635
  "AWS::Wisdom::Assistant": WisdomAssistantProps;
178086
178636
  "AWS::Wisdom::AssistantAssociation": WisdomAssistantAssociationProps;
178087
178637
  "AWS::Wisdom::KnowledgeBase": WisdomKnowledgeBaseProps;
@@ -178183,8 +178733,10 @@ export interface AttributeTypes {
178183
178733
  "AWS::AppStream::StackFleetAssociation": AppStreamStackFleetAssociationAttributes;
178184
178734
  "AWS::AppStream::StackUserAssociation": AppStreamStackUserAssociationAttributes;
178185
178735
  "AWS::AppStream::User": AppStreamUserAttributes;
178736
+ "AWS::AppSync::Api": AppSyncApiAttributes;
178186
178737
  "AWS::AppSync::ApiCache": AppSyncApiCacheAttributes;
178187
178738
  "AWS::AppSync::ApiKey": AppSyncApiKeyAttributes;
178739
+ "AWS::AppSync::ChannelNamespace": AppSyncChannelNamespaceAttributes;
178188
178740
  "AWS::AppSync::DataSource": AppSyncDataSourceAttributes;
178189
178741
  "AWS::AppSync::DomainName": AppSyncDomainNameAttributes;
178190
178742
  "AWS::AppSync::DomainNameApiAssociation": AppSyncDomainNameApiAssociationAttributes;
@@ -178224,6 +178776,7 @@ export interface AttributeTypes {
178224
178776
  "AWS::BCMDataExports::Export": BCMDataExportsExportAttributes;
178225
178777
  "AWS::Bedrock::Agent": BedrockAgentAttributes;
178226
178778
  "AWS::Bedrock::AgentAlias": BedrockAgentAliasAttributes;
178779
+ "AWS::Bedrock::ApplicationInferenceProfile": BedrockApplicationInferenceProfileAttributes;
178227
178780
  "AWS::Bedrock::DataSource": BedrockDataSourceAttributes;
178228
178781
  "AWS::Bedrock::Flow": BedrockFlowAttributes;
178229
178782
  "AWS::Bedrock::FlowAlias": BedrockFlowAliasAttributes;
@@ -179255,6 +179808,7 @@ export interface AttributeTypes {
179255
179808
  "AWS::WAFv2::RuleGroup": WAFv2RuleGroupAttributes;
179256
179809
  "AWS::WAFv2::WebACL": WAFv2WebACLAttributes;
179257
179810
  "AWS::Wisdom::AIPrompt": WisdomAIPromptAttributes;
179811
+ "AWS::Wisdom::AIPromptVersion": WisdomAIPromptVersionAttributes;
179258
179812
  "AWS::Wisdom::Assistant": WisdomAssistantAttributes;
179259
179813
  "AWS::Wisdom::AssistantAssociation": WisdomAssistantAssociationAttributes;
179260
179814
  "AWS::Wisdom::KnowledgeBase": WisdomKnowledgeBaseAttributes;
@@ -179364,8 +179918,10 @@ export declare const ResourceType: {
179364
179918
  readonly AppStreamStackFleetAssociation: "AWS::AppStream::StackFleetAssociation";
179365
179919
  readonly AppStreamStackUserAssociation: "AWS::AppStream::StackUserAssociation";
179366
179920
  readonly AppStreamUser: "AWS::AppStream::User";
179921
+ readonly AppSyncApi: "AWS::AppSync::Api";
179367
179922
  readonly AppSyncApiCache: "AWS::AppSync::ApiCache";
179368
179923
  readonly AppSyncApiKey: "AWS::AppSync::ApiKey";
179924
+ readonly AppSyncChannelNamespace: "AWS::AppSync::ChannelNamespace";
179369
179925
  readonly AppSyncDataSource: "AWS::AppSync::DataSource";
179370
179926
  readonly AppSyncDomainName: "AWS::AppSync::DomainName";
179371
179927
  readonly AppSyncDomainNameApiAssociation: "AWS::AppSync::DomainNameApiAssociation";
@@ -179413,6 +179969,7 @@ export declare const ResourceType: {
179413
179969
  readonly BCMDataExportsExport: "AWS::BCMDataExports::Export";
179414
179970
  readonly BedrockAgent: "AWS::Bedrock::Agent";
179415
179971
  readonly BedrockAgentAlias: "AWS::Bedrock::AgentAlias";
179972
+ readonly BedrockApplicationInferenceProfile: "AWS::Bedrock::ApplicationInferenceProfile";
179416
179973
  readonly BedrockDataSource: "AWS::Bedrock::DataSource";
179417
179974
  readonly BedrockFlow: "AWS::Bedrock::Flow";
179418
179975
  readonly BedrockFlowAlias: "AWS::Bedrock::FlowAlias";
@@ -180572,6 +181129,7 @@ export declare const ResourceType: {
180572
181129
  readonly WAFv2WebACL: "AWS::WAFv2::WebACL";
180573
181130
  readonly WAFv2WebACLAssociation: "AWS::WAFv2::WebACLAssociation";
180574
181131
  readonly WisdomAIPrompt: "AWS::Wisdom::AIPrompt";
181132
+ readonly WisdomAIPromptVersion: "AWS::Wisdom::AIPromptVersion";
180575
181133
  readonly WisdomAssistant: "AWS::Wisdom::Assistant";
180576
181134
  readonly WisdomAssistantAssociation: "AWS::Wisdom::AssistantAssociation";
180577
181135
  readonly WisdomKnowledgeBase: "AWS::Wisdom::KnowledgeBase";