@awboost/cfntypes 0.100.351 → 0.100.353

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.
@@ -28488,7 +28488,7 @@ export type BillingConductorCustomLineItemProps = {
28488
28488
  /**
28489
28489
  * The display settings of the Custom Line Item.
28490
28490
  */
28491
- ComputationRule?: "CONSOLIDATED";
28491
+ ComputationRule?: "CONSOLIDATED" | "ITEMIZED";
28492
28492
  CustomLineItemChargeDetails?: BillingConductorCustomLineItemCustomLineItemChargeDetails;
28493
28493
  /**
28494
28494
  * @maxLength `255`
@@ -28589,9 +28589,10 @@ export type BillingConductorCustomLineItemCustomLineItemPercentageChargeDetails
28589
28589
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billingconductor-customlineitem-lineitemfilter.html}
28590
28590
  */
28591
28591
  export type BillingConductorCustomLineItemLineItemFilter = {
28592
- Attribute: "LINE_ITEM_TYPE";
28593
- MatchOption: "NOT_EQUAL";
28594
- Values: BillingConductorCustomLineItemLineItemFilterValue[];
28592
+ Attribute: "LINE_ITEM_TYPE" | "SERVICE";
28593
+ AttributeValues?: string[];
28594
+ MatchOption: "NOT_EQUAL" | "EQUAL";
28595
+ Values?: BillingConductorCustomLineItemLineItemFilterValue[];
28595
28596
  };
28596
28597
  /**
28597
28598
  * Type definition for `AWS::BillingConductor::CustomLineItem.LineItemFilterValue`.
@@ -30076,6 +30077,7 @@ export type CleanRoomsAnalysisTemplateProps = {
30076
30077
  Schema?: CleanRoomsAnalysisTemplateAnalysisSchema;
30077
30078
  Source: CleanRoomsAnalysisTemplateAnalysisSource;
30078
30079
  SourceMetadata?: CleanRoomsAnalysisTemplateAnalysisSourceMetadata;
30080
+ SyntheticDataParameters?: CleanRoomsAnalysisTemplateSyntheticDataParameters;
30079
30081
  /**
30080
30082
  * An arbitrary set of tags (key-value pairs) for this cleanrooms analysis template.
30081
30083
  */
@@ -30191,6 +30193,17 @@ export type CleanRoomsAnalysisTemplateAnalysisTemplateArtifacts = {
30191
30193
  */
30192
30194
  RoleArn: string;
30193
30195
  };
30196
+ /**
30197
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.ColumnClassificationDetails`.
30198
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-columnclassificationdetails.html}
30199
+ */
30200
+ export type CleanRoomsAnalysisTemplateColumnClassificationDetails = {
30201
+ /**
30202
+ * @minLength `5`
30203
+ * @maxLength `1000`
30204
+ */
30205
+ ColumnMapping: CleanRoomsAnalysisTemplateSyntheticDataColumnProperties[];
30206
+ };
30194
30207
  /**
30195
30208
  * Type definition for `AWS::CleanRooms::AnalysisTemplate.ErrorMessageConfiguration`.
30196
30209
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-errormessageconfiguration.html}
@@ -30205,6 +30218,23 @@ export type CleanRoomsAnalysisTemplateErrorMessageConfiguration = {
30205
30218
  export type CleanRoomsAnalysisTemplateHash = {
30206
30219
  Sha256?: string;
30207
30220
  };
30221
+ /**
30222
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.MLSyntheticDataParameters`.
30223
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-mlsyntheticdataparameters.html}
30224
+ */
30225
+ export type CleanRoomsAnalysisTemplateMLSyntheticDataParameters = {
30226
+ ColumnClassification: CleanRoomsAnalysisTemplateColumnClassificationDetails;
30227
+ /**
30228
+ * @min `0.0001`
30229
+ * @max `10`
30230
+ */
30231
+ Epsilon: number;
30232
+ /**
30233
+ * @min `0.5`
30234
+ * @max `1`
30235
+ */
30236
+ MaxMembershipInferenceAttackScore: number;
30237
+ };
30208
30238
  /**
30209
30239
  * Type definition for `AWS::CleanRooms::AnalysisTemplate.S3Location`.
30210
30240
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html}
@@ -30217,6 +30247,26 @@ export type CleanRoomsAnalysisTemplateS3Location = {
30217
30247
  Bucket: string;
30218
30248
  Key: string;
30219
30249
  };
30250
+ /**
30251
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataColumnProperties`.
30252
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdatacolumnproperties.html}
30253
+ */
30254
+ export type CleanRoomsAnalysisTemplateSyntheticDataColumnProperties = {
30255
+ /**
30256
+ * @maxLength `128`
30257
+ * @pattern `^[a-z0-9_](([a-z0-9_]+-)*([a-z0-9_]+))?$`
30258
+ */
30259
+ ColumnName: string;
30260
+ ColumnType: "CATEGORICAL" | "NUMERICAL";
30261
+ IsPredictiveValue: boolean;
30262
+ };
30263
+ /**
30264
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataParameters`.
30265
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdataparameters.html}
30266
+ */
30267
+ export type CleanRoomsAnalysisTemplateSyntheticDataParameters = {
30268
+ MlSyntheticDataParameters: CleanRoomsAnalysisTemplateMLSyntheticDataParameters;
30269
+ };
30220
30270
  /**
30221
30271
  * Type definition for `AWS::CleanRooms::AnalysisTemplate.Tag`.
30222
30272
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-tag.html}
@@ -30374,6 +30424,7 @@ export type CleanRoomsCollaborationMLMemberAbilities = {
30374
30424
  export type CleanRoomsCollaborationMLPaymentConfig = {
30375
30425
  ModelInference?: CleanRoomsCollaborationModelInferencePaymentConfig;
30376
30426
  ModelTraining?: CleanRoomsCollaborationModelTrainingPaymentConfig;
30427
+ SyntheticDataGeneration?: CleanRoomsCollaborationSyntheticDataGenerationPaymentConfig;
30377
30428
  };
30378
30429
  /**
30379
30430
  * Type definition for `AWS::CleanRooms::Collaboration.ModelInferencePaymentConfig`.
@@ -30410,6 +30461,13 @@ export type CleanRoomsCollaborationQueryComputePaymentConfig = {
30410
30461
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-supporteds3region.html}
30411
30462
  */
30412
30463
  export type CleanRoomsCollaborationSupportedS3Region = "us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1";
30464
+ /**
30465
+ * Type definition for `AWS::CleanRooms::Collaboration.SyntheticDataGenerationPaymentConfig`.
30466
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-syntheticdatagenerationpaymentconfig.html}
30467
+ */
30468
+ export type CleanRoomsCollaborationSyntheticDataGenerationPaymentConfig = {
30469
+ IsResponsible: boolean;
30470
+ };
30413
30471
  /**
30414
30472
  * Type definition for `AWS::CleanRooms::Collaboration.Tag`.
30415
30473
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-tag.html}
@@ -31226,6 +31284,7 @@ export type CleanRoomsMembershipMembershipJobLogStatus = "ENABLED" | "DISABLED";
31226
31284
  export type CleanRoomsMembershipMembershipMLPaymentConfig = {
31227
31285
  ModelInference?: CleanRoomsMembershipMembershipModelInferencePaymentConfig;
31228
31286
  ModelTraining?: CleanRoomsMembershipMembershipModelTrainingPaymentConfig;
31287
+ SyntheticDataGeneration?: CleanRoomsMembershipMembershipSyntheticDataGenerationPaymentConfig;
31229
31288
  };
31230
31289
  /**
31231
31290
  * Type definition for `AWS::CleanRooms::Membership.MembershipModelInferencePaymentConfig`.
@@ -31300,6 +31359,13 @@ export type CleanRoomsMembershipMembershipQueryComputePaymentConfig = {
31300
31359
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipquerylogstatus.html}
31301
31360
  */
31302
31361
  export type CleanRoomsMembershipMembershipQueryLogStatus = "ENABLED" | "DISABLED";
31362
+ /**
31363
+ * Type definition for `AWS::CleanRooms::Membership.MembershipSyntheticDataGenerationPaymentConfig`.
31364
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipsyntheticdatagenerationpaymentconfig.html}
31365
+ */
31366
+ export type CleanRoomsMembershipMembershipSyntheticDataGenerationPaymentConfig = {
31367
+ IsResponsible: boolean;
31368
+ };
31303
31369
  /**
31304
31370
  * Type definition for `AWS::CleanRooms::Membership.ProtectedJobS3OutputConfigurationInput`.
31305
31371
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedjobs3outputconfigurationinput.html}
@@ -32927,6 +32993,7 @@ export type CloudFrontAnycastIpListProps = {
32927
32993
  * The number of IP addresses in the Anycast static IP list.
32928
32994
  */
32929
32995
  IpCount: number;
32996
+ IpamCidrConfigs?: CloudFrontAnycastIpListIpamCidrConfig[];
32930
32997
  /**
32931
32998
  * The name of the Anycast static IP list.
32932
32999
  * @minLength `1`
@@ -32965,6 +33032,12 @@ export type CloudFrontAnycastIpListAttributes = {
32965
33032
  * The number of IP addresses in the Anycast static IP list.
32966
33033
  */
32967
33034
  IpCount: number;
33035
+ IpamCidrConfigResults: {
33036
+ AnycastIp: string;
33037
+ Cidr: string;
33038
+ IpamPoolArn: string;
33039
+ Status: string;
33040
+ }[];
32968
33041
  /**
32969
33042
  * The last time the Anycast static IP list was modified.
32970
33043
  */
@@ -32983,6 +33056,12 @@ export type CloudFrontAnycastIpListAttributes = {
32983
33056
  };
32984
33057
  ETag: string;
32985
33058
  Id: string;
33059
+ IpamCidrConfigResults: {
33060
+ AnycastIp: string;
33061
+ Cidr: string;
33062
+ IpamPoolArn: string;
33063
+ Status: string;
33064
+ }[];
32986
33065
  };
32987
33066
  /**
32988
33067
  * Type definition for `AWS::CloudFront::AnycastIpList.AnycastIpList`.
@@ -33007,6 +33086,7 @@ export type CloudFrontAnycastIpListAnycastIpList = {
33007
33086
  * The number of IP addresses in the Anycast static IP list.
33008
33087
  */
33009
33088
  IpCount: number;
33089
+ IpamCidrConfigResults?: CloudFrontAnycastIpListIpamCidrConfigResult[];
33010
33090
  /**
33011
33091
  * The last time the Anycast static IP list was modified.
33012
33092
  */
@@ -33028,6 +33108,24 @@ export type CloudFrontAnycastIpListAnycastIpList = {
33028
33108
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipaddresstype.html}
33029
33109
  */
33030
33110
  export type CloudFrontAnycastIpListIpAddressType = "ipv4" | "dualstack";
33111
+ /**
33112
+ * Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfig`.
33113
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfig.html}
33114
+ */
33115
+ export type CloudFrontAnycastIpListIpamCidrConfig = {
33116
+ Cidr: string;
33117
+ IpamPoolArn: string;
33118
+ };
33119
+ /**
33120
+ * Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfigResult`.
33121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfigresult.html}
33122
+ */
33123
+ export type CloudFrontAnycastIpListIpamCidrConfigResult = {
33124
+ AnycastIp?: string;
33125
+ Cidr?: string;
33126
+ IpamPoolArn?: string;
33127
+ Status?: string;
33128
+ };
33031
33129
  /**
33032
33130
  * Type definition for `AWS::CloudFront::AnycastIpList.Tag`.
33033
33131
  * A complex type that contains ``Tag`` key and ``Tag`` value.
@@ -46248,6 +46346,12 @@ export type ConnectCampaignsV2CampaignTelephonyOutboundConfig = {
46248
46346
  * @maxLength `100`
46249
46347
  */
46250
46348
  ConnectSourcePhoneNumber?: string;
46349
+ /**
46350
+ * Maximum ring time for outbound calls in seconds
46351
+ * @min `15`
46352
+ * @max `60`
46353
+ */
46354
+ RingTimeout?: number;
46251
46355
  };
46252
46356
  /**
46253
46357
  * Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyOutboundMode`.
@@ -51948,6 +52052,11 @@ export type DataZoneConnectionConnectionPropertiesInput = {
51948
52052
  * S3 Properties Input
51949
52053
  */
51950
52054
  S3Properties: DataZoneConnectionS3PropertiesInput;
52055
+ } | {
52056
+ /**
52057
+ * MLflow Properties Input
52058
+ */
52059
+ MlflowProperties: DataZoneConnectionMlflowPropertiesInput;
51951
52060
  };
51952
52061
  /**
51953
52062
  * Type definition for `AWS::DataZone::Connection.CredentialMap`.
@@ -52082,6 +52191,17 @@ export type DataZoneConnectionLineageSyncSchedule = {
52082
52191
  */
52083
52192
  Schedule?: string;
52084
52193
  };
52194
+ /**
52195
+ * Type definition for `AWS::DataZone::Connection.MlflowPropertiesInput`.
52196
+ * MLflow Properties Input
52197
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-mlflowpropertiesinput.html}
52198
+ */
52199
+ export type DataZoneConnectionMlflowPropertiesInput = {
52200
+ /**
52201
+ * The ARN of the MLflow tracking server
52202
+ */
52203
+ TrackingServerArn?: string;
52204
+ };
52085
52205
  /**
52086
52206
  * Type definition for `AWS::DataZone::Connection.OAuth2ClientApplication`.
52087
52207
  * OAuth2 Client Application
@@ -52275,7 +52395,7 @@ export type DataZoneConnectionS3PropertiesInput = {
52275
52395
  export type DataZoneConnectionSparkEmrPropertiesInput = {
52276
52396
  /**
52277
52397
  * @maxLength `2048`
52278
- * @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless):.*`
52398
+ * @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless|emr-containers):.*`
52279
52399
  */
52280
52400
  ComputeArn?: string;
52281
52401
  /**
@@ -52293,6 +52413,10 @@ export type DataZoneConnectionSparkEmrPropertiesInput = {
52293
52413
  * @pattern `^s3://.+$`
52294
52414
  */
52295
52415
  LogUri?: string;
52416
+ /**
52417
+ * @maxLength `2048`
52418
+ */
52419
+ ManagedEndpointArn?: string;
52296
52420
  /**
52297
52421
  * @maxLength `256`
52298
52422
  * @pattern `^[\S]*$`
@@ -58018,6 +58142,10 @@ export type DSQLClusterAttributes = {
58018
58142
  * The status of the cluster.
58019
58143
  */
58020
58144
  Status: string;
58145
+ /**
58146
+ * The DSQL cluster VPC endpoint.
58147
+ */
58148
+ VpcEndpoint: string;
58021
58149
  /**
58022
58150
  * The VPC endpoint service name.
58023
58151
  */
@@ -59558,6 +59686,7 @@ export type EC2EC2FleetInstanceRequirementsRequest = {
59558
59686
  NetworkBandwidthGbps?: EC2EC2FleetNetworkBandwidthGbpsRequest;
59559
59687
  NetworkInterfaceCount?: EC2EC2FleetNetworkInterfaceCountRequest;
59560
59688
  OnDemandMaxPricePercentageOverLowestPrice?: number;
59689
+ RequireEncryptionInTransit?: boolean;
59561
59690
  RequireHibernateSupport?: boolean;
59562
59691
  SpotMaxPricePercentageOverLowestPrice?: number;
59563
59692
  TotalLocalStorageGB?: EC2EC2FleetTotalLocalStorageGBRequest;
@@ -64362,6 +64491,10 @@ export type EC2NetworkInterfaceProps = {
64362
64491
  * Assigns a list of private IP addresses to the network interface. You can specify a primary private IP address by setting the value of the Primary property to true in the PrivateIpAddressSpecification property. If you want EC2 to automatically assign private IP addresses, use the SecondaryPrivateIpAddressCount property and do not specify this property.
64363
64492
  */
64364
64493
  PrivateIpAddresses?: EC2NetworkInterfacePrivateIpAddressSpecification[];
64494
+ /**
64495
+ * Public IP DNS hostname type
64496
+ */
64497
+ PublicIpDnsHostnameTypeSpecification?: "public-dual-stack-dns-name" | "public-ipv4-dns-name" | "public-ipv6-dns-name";
64365
64498
  /**
64366
64499
  * The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using privateIpAddresses
64367
64500
  */
@@ -64396,6 +64529,15 @@ export type EC2NetworkInterfaceAttributes = {
64396
64529
  * Returns the primary private IP address of the network interface.
64397
64530
  */
64398
64531
  PrimaryPrivateIpAddress: string;
64532
+ /**
64533
+ * Describes the public hostname type options, including public hostname type, IPv4-enabled public hostname, IPv6-enabled public hostname, and dual-stack public hostname.
64534
+ */
64535
+ PublicIpDnsNameOptions: {
64536
+ DnsHostnameType: string;
64537
+ PublicDualStackDnsName: string;
64538
+ PublicIpv4DnsName: string;
64539
+ PublicIpv6DnsName: string;
64540
+ };
64399
64541
  /**
64400
64542
  * Returns the secondary private IP addresses of the network interface.
64401
64543
  */
@@ -64443,6 +64585,17 @@ export type EC2NetworkInterfacePrivateIpAddressSpecification = {
64443
64585
  Primary: boolean;
64444
64586
  PrivateIpAddress: string;
64445
64587
  };
64588
+ /**
64589
+ * Type definition for `AWS::EC2::NetworkInterface.PublicIpDnsNameOptions`.
64590
+ * Describes the public hostname type options, including public hostname type, IPv4-enabled public hostname, IPv6-enabled public hostname, and dual-stack public hostname.
64591
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-publicipdnsnameoptions.html}
64592
+ */
64593
+ export type EC2NetworkInterfacePublicIpDnsNameOptions = {
64594
+ DnsHostnameType?: string;
64595
+ PublicDualStackDnsName?: string;
64596
+ PublicIpv4DnsName?: string;
64597
+ PublicIpv6DnsName?: string;
64598
+ };
64446
64599
  /**
64447
64600
  * Type definition for `AWS::EC2::NetworkInterface.Tag`.
64448
64601
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-tag.html}
@@ -65319,6 +65472,10 @@ export type EC2SnapshotBlockPublicAccessAttributes = {
65319
65472
  */
65320
65473
  export type EC2SpotFleetProps = {
65321
65474
  SpotFleetRequestConfigData: EC2SpotFleetSpotFleetRequestConfigData;
65475
+ /**
65476
+ * The tags to specify in SpotFleetRequestConfigData
65477
+ */
65478
+ Tags?: EC2SpotFleetTag[];
65322
65479
  };
65323
65480
  /**
65324
65481
  * Attribute type definition for `AWS::EC2::SpotFleet`.
@@ -65479,6 +65636,7 @@ export type EC2SpotFleetInstanceRequirementsRequest = {
65479
65636
  NetworkBandwidthGbps?: EC2SpotFleetNetworkBandwidthGbpsRequest;
65480
65637
  NetworkInterfaceCount?: EC2SpotFleetNetworkInterfaceCountRequest;
65481
65638
  OnDemandMaxPricePercentageOverLowestPrice?: number;
65639
+ RequireEncryptionInTransit?: boolean;
65482
65640
  RequireHibernateSupport?: boolean;
65483
65641
  SpotMaxPricePercentageOverLowestPrice?: number;
65484
65642
  TotalLocalStorageGB?: EC2SpotFleetTotalLocalStorageGBRequest;
@@ -98991,38 +99149,6 @@ export type IoTEventsInputTag = {
98991
99149
  */
98992
99150
  Value: string;
98993
99151
  };
98994
- /**
98995
- * Resource Type definition for AWS::IoTFleetHub::Application
98996
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html}
98997
- */
98998
- export type IoTFleetHubApplicationProps = {
98999
- ApplicationDescription?: string;
99000
- ApplicationName: string;
99001
- RoleArn: string;
99002
- Tags?: IoTFleetHubApplicationTag[];
99003
- };
99004
- /**
99005
- * Attribute type definition for `AWS::IoTFleetHub::Application`.
99006
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#aws-resource-iotfleethub-application-return-values}
99007
- */
99008
- export type IoTFleetHubApplicationAttributes = {
99009
- ApplicationArn: string;
99010
- ApplicationCreationDate: number;
99011
- ApplicationId: string;
99012
- ApplicationLastUpdateDate: number;
99013
- ApplicationState: string;
99014
- ApplicationUrl: string;
99015
- ErrorMessage: string;
99016
- SsoClientId: string;
99017
- };
99018
- /**
99019
- * Type definition for `AWS::IoTFleetHub::Application.Tag`.
99020
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleethub-application-tag.html}
99021
- */
99022
- export type IoTFleetHubApplicationTag = {
99023
- Key: string;
99024
- Value: string;
99025
- };
99026
99152
  /**
99027
99153
  * Definition of AWS::IoTFleetWise::Campaign Resource Type
99028
99154
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-campaign.html}
@@ -117895,461 +118021,6 @@ export type LookoutEquipmentInferenceSchedulerTag = {
117895
118021
  */
117896
118022
  Value: string;
117897
118023
  };
117898
- /**
117899
- * Resource Type definition for AWS::LookoutMetrics::Alert
117900
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutmetrics-alert.html}
117901
- */
117902
- export type LookoutMetricsAlertProps = {
117903
- /**
117904
- * The action to be taken by the alert when an anomaly is detected.
117905
- */
117906
- Action: LookoutMetricsAlertAction;
117907
- /**
117908
- * A description for the alert.
117909
- * @maxLength `256`
117910
- * @pattern `.*\S.*`
117911
- */
117912
- AlertDescription?: string;
117913
- /**
117914
- * The name of the alert. If not provided, a name is generated automatically.
117915
- * @minLength `1`
117916
- * @maxLength `63`
117917
- * @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
117918
- */
117919
- AlertName?: string;
117920
- /**
117921
- * A number between 0 and 100 (inclusive) that tunes the sensitivity of the alert.
117922
- * @min `0`
117923
- * @max `100`
117924
- */
117925
- AlertSensitivityThreshold: number;
117926
- /**
117927
- * The Amazon resource name (ARN) of the Anomaly Detector to alert.
117928
- * @maxLength `256`
117929
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
117930
- */
117931
- AnomalyDetectorArn: string;
117932
- };
117933
- /**
117934
- * Attribute type definition for `AWS::LookoutMetrics::Alert`.
117935
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutmetrics-alert.html#aws-resource-lookoutmetrics-alert-return-values}
117936
- */
117937
- export type LookoutMetricsAlertAttributes = {
117938
- /**
117939
- * ARN assigned to the alert.
117940
- * @maxLength `256`
117941
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
117942
- */
117943
- Arn: string;
117944
- };
117945
- /**
117946
- * Type definition for `AWS::LookoutMetrics::Alert.Action`.
117947
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-action.html}
117948
- */
117949
- export type LookoutMetricsAlertAction = {
117950
- /**
117951
- * Configuration options for a Lambda alert action.
117952
- */
117953
- LambdaConfiguration?: LookoutMetricsAlertLambdaConfiguration;
117954
- /**
117955
- * Configuration options for an SNS alert action.
117956
- */
117957
- SNSConfiguration?: LookoutMetricsAlertSNSConfiguration;
117958
- };
117959
- /**
117960
- * Type definition for `AWS::LookoutMetrics::Alert.LambdaConfiguration`.
117961
- * Configuration options for a Lambda alert action.
117962
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-lambdaconfiguration.html}
117963
- */
117964
- export type LookoutMetricsAlertLambdaConfiguration = {
117965
- /**
117966
- * ARN of a Lambda to send alert notifications to.
117967
- * @maxLength `256`
117968
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
117969
- */
117970
- LambdaArn: string;
117971
- /**
117972
- * ARN of an IAM role that LookoutMetrics should assume to access the Lambda function.
117973
- * @maxLength `256`
117974
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
117975
- */
117976
- RoleArn: string;
117977
- };
117978
- /**
117979
- * Type definition for `AWS::LookoutMetrics::Alert.SNSConfiguration`.
117980
- * Configuration options for an SNS alert action.
117981
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-snsconfiguration.html}
117982
- */
117983
- export type LookoutMetricsAlertSNSConfiguration = {
117984
- /**
117985
- * ARN of an IAM role that LookoutMetrics should assume to access the SNS topic.
117986
- * @maxLength `256`
117987
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
117988
- */
117989
- RoleArn: string;
117990
- /**
117991
- * ARN of an SNS topic to send alert notifications to.
117992
- * @maxLength `256`
117993
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
117994
- */
117995
- SnsTopicArn: string;
117996
- };
117997
- /**
117998
- * Resource type definition for `AWS::LookoutMetrics::AnomalyDetector`.
117999
- * An Amazon Lookout for Metrics Detector
118000
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutmetrics-anomalydetector.html}
118001
- */
118002
- export type LookoutMetricsAnomalyDetectorProps = {
118003
- /**
118004
- * Configuration options for the AnomalyDetector
118005
- */
118006
- AnomalyDetectorConfig: LookoutMetricsAnomalyDetectorAnomalyDetectorConfig;
118007
- /**
118008
- * A description for the AnomalyDetector.
118009
- * @maxLength `256`
118010
- * @pattern `.*\S.*`
118011
- */
118012
- AnomalyDetectorDescription?: string;
118013
- /**
118014
- * Name for the Amazon Lookout for Metrics Anomaly Detector
118015
- * @minLength `1`
118016
- * @maxLength `63`
118017
- * @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
118018
- */
118019
- AnomalyDetectorName?: string;
118020
- /**
118021
- * KMS key used to encrypt the AnomalyDetector data
118022
- * @minLength `20`
118023
- * @maxLength `2048`
118024
- * @pattern `arn:aws.*:kms:.*:[0-9]{12}:key/.*`
118025
- */
118026
- KmsKeyArn?: string;
118027
- /**
118028
- * List of metric sets for anomaly detection
118029
- * @minLength `1`
118030
- * @maxLength `1`
118031
- */
118032
- MetricSetList: LookoutMetricsAnomalyDetectorMetricSet[];
118033
- };
118034
- /**
118035
- * Attribute type definition for `AWS::LookoutMetrics::AnomalyDetector`.
118036
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutmetrics-anomalydetector.html#aws-resource-lookoutmetrics-anomalydetector-return-values}
118037
- */
118038
- export type LookoutMetricsAnomalyDetectorAttributes = {
118039
- /**
118040
- * @maxLength `256`
118041
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
118042
- */
118043
- Arn: string;
118044
- };
118045
- /**
118046
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.AnomalyDetectorConfig`.
118047
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-anomalydetectorconfig.html}
118048
- */
118049
- export type LookoutMetricsAnomalyDetectorAnomalyDetectorConfig = {
118050
- /**
118051
- * Frequency of anomaly detection
118052
- */
118053
- AnomalyDetectorFrequency: LookoutMetricsAnomalyDetectorAnomalyDetectorFrequency;
118054
- };
118055
- /**
118056
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.AnomalyDetectorFrequency`.
118057
- * Frequency of anomaly detection
118058
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-anomalydetectorfrequency.html}
118059
- */
118060
- export type LookoutMetricsAnomalyDetectorAnomalyDetectorFrequency = "PT5M" | "PT10M" | "PT1H" | "P1D";
118061
- /**
118062
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.AppFlowConfig`.
118063
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-appflowconfig.html}
118064
- */
118065
- export type LookoutMetricsAnomalyDetectorAppFlowConfig = {
118066
- /**
118067
- * @maxLength `256`
118068
- * @pattern `[a-zA-Z0-9][\w!@#.-]+`
118069
- */
118070
- FlowName: string;
118071
- /**
118072
- * @maxLength `256`
118073
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
118074
- */
118075
- RoleArn: string;
118076
- };
118077
- /**
118078
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.CloudwatchConfig`.
118079
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-cloudwatchconfig.html}
118080
- */
118081
- export type LookoutMetricsAnomalyDetectorCloudwatchConfig = {
118082
- /**
118083
- * @maxLength `256`
118084
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
118085
- */
118086
- RoleArn: string;
118087
- };
118088
- /**
118089
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.CsvFormatDescriptor`.
118090
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-csvformatdescriptor.html}
118091
- */
118092
- export type LookoutMetricsAnomalyDetectorCsvFormatDescriptor = {
118093
- /**
118094
- * @maxLength `63`
118095
- * @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
118096
- */
118097
- Charset?: string;
118098
- ContainsHeader?: boolean;
118099
- /**
118100
- * @maxLength `1`
118101
- * @pattern `[^\r\n]`
118102
- */
118103
- Delimiter?: string;
118104
- FileCompression?: "NONE" | "GZIP";
118105
- HeaderList?: string[];
118106
- /**
118107
- * @maxLength `1`
118108
- * @pattern `[^\r\n]|^$`
118109
- */
118110
- QuoteSymbol?: string;
118111
- };
118112
- /**
118113
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.FileFormatDescriptor`.
118114
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-fileformatdescriptor.html}
118115
- */
118116
- export type LookoutMetricsAnomalyDetectorFileFormatDescriptor = {
118117
- CsvFormatDescriptor?: LookoutMetricsAnomalyDetectorCsvFormatDescriptor;
118118
- JsonFormatDescriptor?: LookoutMetricsAnomalyDetectorJsonFormatDescriptor;
118119
- };
118120
- /**
118121
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.JsonFormatDescriptor`.
118122
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-jsonformatdescriptor.html}
118123
- */
118124
- export type LookoutMetricsAnomalyDetectorJsonFormatDescriptor = {
118125
- /**
118126
- * @maxLength `63`
118127
- * @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
118128
- */
118129
- Charset?: string;
118130
- FileCompression?: "NONE" | "GZIP";
118131
- };
118132
- /**
118133
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.Metric`.
118134
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-metric.html}
118135
- */
118136
- export type LookoutMetricsAnomalyDetectorMetric = {
118137
- /**
118138
- * Operator used to aggregate metric values
118139
- */
118140
- AggregationFunction: "AVG" | "SUM";
118141
- /**
118142
- * Name of a column in the data.
118143
- * @minLength `1`
118144
- * @maxLength `63`
118145
- * @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
118146
- */
118147
- MetricName: string;
118148
- /**
118149
- * @minLength `1`
118150
- * @maxLength `255`
118151
- * @pattern `[^:].*`
118152
- */
118153
- Namespace?: string;
118154
- };
118155
- /**
118156
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.MetricSet`.
118157
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-metricset.html}
118158
- */
118159
- export type LookoutMetricsAnomalyDetectorMetricSet = {
118160
- /**
118161
- * Dimensions for this MetricSet.
118162
- * @minLength `0`
118163
- */
118164
- DimensionList?: string[];
118165
- /**
118166
- * Metrics captured by this MetricSet.
118167
- * @minLength `1`
118168
- */
118169
- MetricList: LookoutMetricsAnomalyDetectorMetric[];
118170
- /**
118171
- * A description for the MetricSet.
118172
- * @maxLength `256`
118173
- * @pattern `.*\S.*`
118174
- */
118175
- MetricSetDescription?: string;
118176
- /**
118177
- * A frequency period to aggregate the data
118178
- */
118179
- MetricSetFrequency?: "PT5M" | "PT10M" | "PT1H" | "P1D";
118180
- /**
118181
- * The name of the MetricSet.
118182
- * @minLength `1`
118183
- * @maxLength `63`
118184
- * @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
118185
- */
118186
- MetricSetName: string;
118187
- MetricSource: LookoutMetricsAnomalyDetectorMetricSource;
118188
- /**
118189
- * Offset, in seconds, between the frequency interval and the time at which the metrics are available.
118190
- * @min `0`
118191
- * @max `432000`
118192
- */
118193
- Offset?: number;
118194
- TimestampColumn?: LookoutMetricsAnomalyDetectorTimestampColumn;
118195
- /**
118196
- * @maxLength `60`
118197
- * @pattern `.*\S.*`
118198
- */
118199
- Timezone?: string;
118200
- };
118201
- /**
118202
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.MetricSource`.
118203
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-metricsource.html}
118204
- */
118205
- export type LookoutMetricsAnomalyDetectorMetricSource = {
118206
- AppFlowConfig?: LookoutMetricsAnomalyDetectorAppFlowConfig;
118207
- CloudwatchConfig?: LookoutMetricsAnomalyDetectorCloudwatchConfig;
118208
- RDSSourceConfig?: LookoutMetricsAnomalyDetectorRDSSourceConfig;
118209
- RedshiftSourceConfig?: LookoutMetricsAnomalyDetectorRedshiftSourceConfig;
118210
- S3SourceConfig?: LookoutMetricsAnomalyDetectorS3SourceConfig;
118211
- };
118212
- /**
118213
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.RDSSourceConfig`.
118214
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html}
118215
- */
118216
- export type LookoutMetricsAnomalyDetectorRDSSourceConfig = {
118217
- /**
118218
- * @minLength `1`
118219
- * @maxLength `63`
118220
- * @pattern `^[a-zA-Z](?!.*--)(?!.*-$)[0-9a-zA-Z\-]*$`
118221
- */
118222
- DBInstanceIdentifier: string;
118223
- /**
118224
- * @minLength `1`
118225
- * @maxLength `253`
118226
- * @pattern `.*\S.*`
118227
- */
118228
- DatabaseHost: string;
118229
- /**
118230
- * @minLength `1`
118231
- * @maxLength `64`
118232
- * @pattern `[a-zA-Z0-9_]+`
118233
- */
118234
- DatabaseName: string;
118235
- /**
118236
- * @min `1`
118237
- * @max `65535`
118238
- */
118239
- DatabasePort: number;
118240
- /**
118241
- * @maxLength `256`
118242
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
118243
- */
118244
- RoleArn: string;
118245
- /**
118246
- * @maxLength `256`
118247
- * @pattern `arn:([a-z\d-]+):.*:.*:secret:AmazonLookoutMetrics-.+`
118248
- */
118249
- SecretManagerArn: string;
118250
- /**
118251
- * @minLength `1`
118252
- * @maxLength `100`
118253
- * @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
118254
- */
118255
- TableName: string;
118256
- VpcConfiguration: LookoutMetricsAnomalyDetectorVpcConfiguration;
118257
- };
118258
- /**
118259
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.RedshiftSourceConfig`.
118260
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-redshiftsourceconfig.html}
118261
- */
118262
- export type LookoutMetricsAnomalyDetectorRedshiftSourceConfig = {
118263
- /**
118264
- * @minLength `1`
118265
- * @maxLength `63`
118266
- * @pattern `^[a-z](?!.*--)(?!.*-$)[0-9a-z\-]*$`
118267
- */
118268
- ClusterIdentifier: string;
118269
- /**
118270
- * @minLength `1`
118271
- * @maxLength `253`
118272
- * @pattern `.*\S.*`
118273
- */
118274
- DatabaseHost: string;
118275
- /**
118276
- * @minLength `1`
118277
- * @maxLength `100`
118278
- * @pattern `[a-z0-9]+`
118279
- */
118280
- DatabaseName: string;
118281
- /**
118282
- * @min `1`
118283
- * @max `65535`
118284
- */
118285
- DatabasePort: number;
118286
- /**
118287
- * @maxLength `256`
118288
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
118289
- */
118290
- RoleArn: string;
118291
- /**
118292
- * @maxLength `256`
118293
- * @pattern `arn:([a-z\d-]+):.*:.*:secret:AmazonLookoutMetrics-.+`
118294
- */
118295
- SecretManagerArn: string;
118296
- /**
118297
- * @minLength `1`
118298
- * @maxLength `100`
118299
- * @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
118300
- */
118301
- TableName: string;
118302
- VpcConfiguration: LookoutMetricsAnomalyDetectorVpcConfiguration;
118303
- };
118304
- /**
118305
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.S3SourceConfig`.
118306
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-s3sourceconfig.html}
118307
- */
118308
- export type LookoutMetricsAnomalyDetectorS3SourceConfig = {
118309
- FileFormatDescriptor: LookoutMetricsAnomalyDetectorFileFormatDescriptor;
118310
- /**
118311
- * @minLength `1`
118312
- * @maxLength `1`
118313
- */
118314
- HistoricalDataPathList?: string[];
118315
- /**
118316
- * @maxLength `256`
118317
- * @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
118318
- */
118319
- RoleArn: string;
118320
- /**
118321
- * @minLength `1`
118322
- * @maxLength `1`
118323
- */
118324
- TemplatedPathList?: string[];
118325
- };
118326
- /**
118327
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.TimestampColumn`.
118328
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-timestampcolumn.html}
118329
- */
118330
- export type LookoutMetricsAnomalyDetectorTimestampColumn = {
118331
- /**
118332
- * A timestamp format for the timestamps in the dataset
118333
- * @maxLength `63`
118334
- * @pattern `.*\S.*`
118335
- */
118336
- ColumnFormat?: string;
118337
- /**
118338
- * Name of a column in the data.
118339
- * @minLength `1`
118340
- * @maxLength `63`
118341
- * @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
118342
- */
118343
- ColumnName?: string;
118344
- };
118345
- /**
118346
- * Type definition for `AWS::LookoutMetrics::AnomalyDetector.VpcConfiguration`.
118347
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-vpcconfiguration.html}
118348
- */
118349
- export type LookoutMetricsAnomalyDetectorVpcConfiguration = {
118350
- SecurityGroupIdList: string[];
118351
- SubnetIdList: string[];
118352
- };
118353
118024
  /**
118354
118025
  * The AWS::LookoutVision::Project type creates an Amazon Lookout for Vision project. A project is a grouping of the resources needed to create and manage a Lookout for Vision model.
118355
118026
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutvision-project.html}
@@ -131317,6 +130988,10 @@ export type NetworkManagerConnectAttachmentProps = {
131317
130988
  * The attachment to move from one segment to another.
131318
130989
  */
131319
130990
  ProposedSegmentChange?: NetworkManagerConnectAttachmentProposedSegmentChange;
130991
+ /**
130992
+ * Routing policy label
130993
+ */
130994
+ RoutingPolicyLabel?: string;
131320
130995
  /**
131321
130996
  * Tags for the attachment.
131322
130997
  */
@@ -131756,6 +131431,25 @@ export type NetworkManagerCoreNetworkTag = {
131756
131431
  */
131757
131432
  Value: string;
131758
131433
  };
131434
+ /**
131435
+ * Resource Type definition for AWS::NetworkManager::CoreNetworkPrefixListAssociation which associates a prefix list with a core network.
131436
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetworkprefixlistassociation.html}
131437
+ */
131438
+ export type NetworkManagerCoreNetworkPrefixListAssociationProps = {
131439
+ /**
131440
+ * The ID of the core network.
131441
+ */
131442
+ CoreNetworkId: string;
131443
+ /**
131444
+ * The alias of the prefix list
131445
+ */
131446
+ PrefixListAlias: string;
131447
+ /**
131448
+ * The Amazon Resource Name (ARN) of the prefix list.
131449
+ * @pattern `^arn:[a-z0-9-]+:ec2:[a-z]+-[a-z]+-[0-9]:([0-9]{12}):prefix-list/pl-[a-z0-9]+$`
131450
+ */
131451
+ PrefixListArn: string;
131452
+ };
131759
131453
  /**
131760
131454
  * The AWS::NetworkManager::CustomerGatewayAssociation type associates a customer gateway with a device and optionally, with a link.
131761
131455
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html}
@@ -131920,6 +131614,10 @@ export type NetworkManagerDirectConnectGatewayAttachmentProps = {
131920
131614
  * The attachment to move from one segment to another.
131921
131615
  */
131922
131616
  ProposedSegmentChange?: NetworkManagerDirectConnectGatewayAttachmentProposedSegmentChange;
131617
+ /**
131618
+ * Routing policy label
131619
+ */
131620
+ RoutingPolicyLabel?: string;
131923
131621
  /**
131924
131622
  * Tags for the attachment.
131925
131623
  */
@@ -132286,6 +131984,10 @@ export type NetworkManagerSiteToSiteVpnAttachmentProps = {
132286
131984
  * The attachment to move from one segment to another.
132287
131985
  */
132288
131986
  ProposedSegmentChange?: NetworkManagerSiteToSiteVpnAttachmentProposedSegmentChange;
131987
+ /**
131988
+ * Routing policy label
131989
+ */
131990
+ RoutingPolicyLabel?: string;
132289
131991
  /**
132290
131992
  * Tags for the attachment.
132291
131993
  */
@@ -132520,6 +132222,10 @@ export type NetworkManagerTransitGatewayRouteTableAttachmentProps = {
132520
132222
  * The attachment to move from one segment to another.
132521
132223
  */
132522
132224
  ProposedSegmentChange?: NetworkManagerTransitGatewayRouteTableAttachmentProposedSegmentChange;
132225
+ /**
132226
+ * Routing policy label
132227
+ */
132228
+ RoutingPolicyLabel?: string;
132523
132229
  /**
132524
132230
  * An array of key-value pairs to apply to this resource.
132525
132231
  */
@@ -132661,6 +132367,10 @@ export type NetworkManagerVpcAttachmentProps = {
132661
132367
  * The attachment to move from one segment to another.
132662
132368
  */
132663
132369
  ProposedSegmentChange?: NetworkManagerVpcAttachmentProposedSegmentChange;
132370
+ /**
132371
+ * Routing policy label
132372
+ */
132373
+ RoutingPolicyLabel?: string;
132664
132374
  /**
132665
132375
  * Subnet Arn list
132666
132376
  */
@@ -137645,7 +137355,7 @@ export type OrganizationsPolicyProps = {
137645
137355
  /**
137646
137356
  * The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, S3_POLICY, INSPECTOR_POLICY, BEDROCK_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
137647
137357
  */
137648
- Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "S3_POLICY" | "INSPECTOR_POLICY" | "BEDROCK_POLICY" | "UPGRADE_ROLLOUT_POLICY";
137358
+ Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "S3_POLICY" | "INSPECTOR_POLICY" | "BEDROCK_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY";
137649
137359
  };
137650
137360
  /**
137651
137361
  * Attribute type definition for `AWS::Organizations::Policy`.
@@ -138313,6 +138023,7 @@ export type PaymentCryptographyKeyProps = {
138313
138023
  Exportable: boolean;
138314
138024
  KeyAttributes: PaymentCryptographyKeyKeyAttributes;
138315
138025
  KeyCheckValueAlgorithm?: PaymentCryptographyKeyKeyCheckValueAlgorithm;
138026
+ ReplicationRegions?: string[];
138316
138027
  /**
138317
138028
  * @minLength `0`
138318
138029
  * @maxLength `200`
@@ -138338,6 +138049,13 @@ export type PaymentCryptographyKeyAttributes = {
138338
138049
  * Defines the state of a key
138339
138050
  */
138340
138051
  KeyState: PaymentCryptographyKeyKeyState;
138052
+ ReplicationStatus: Record<string, {
138053
+ /**
138054
+ * Defines the replication state of a key
138055
+ */
138056
+ Status: PaymentCryptographyKeyKeyReplicationState;
138057
+ StatusMessage: string;
138058
+ }>;
138341
138059
  };
138342
138060
  /**
138343
138061
  * Type definition for `AWS::PaymentCryptography::Key.DeriveKeyUsage`.
@@ -138390,6 +138108,12 @@ export type PaymentCryptographyKeyKeyModesOfUse = {
138390
138108
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyorigin.html}
138391
138109
  */
138392
138110
  export type PaymentCryptographyKeyKeyOrigin = "EXTERNAL" | "AWS_PAYMENT_CRYPTOGRAPHY";
138111
+ /**
138112
+ * Type definition for `AWS::PaymentCryptography::Key.KeyReplicationState`.
138113
+ * Defines the replication state of a key
138114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyreplicationstate.html}
138115
+ */
138116
+ export type PaymentCryptographyKeyKeyReplicationState = "IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "SYNCHRONIZED";
138393
138117
  /**
138394
138118
  * Type definition for `AWS::PaymentCryptography::Key.KeyState`.
138395
138119
  * Defines the state of a key
@@ -138401,6 +138125,22 @@ export type PaymentCryptographyKeyKeyState = "CREATE_IN_PROGRESS" | "CREATE_COMP
138401
138125
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyusage.html}
138402
138126
  */
138403
138127
  export type PaymentCryptographyKeyKeyUsage = "TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_D1_ASYMMETRIC_KEY_FOR_DATA_ENCRYPTION" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_K3_ASYMMETRIC_KEY_FOR_KEY_AGREEMENT" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_S0_ASYMMETRIC_KEY_FOR_DIGITAL_SIGNATURE" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY" | "TR31_K2_TR34_ASYMMETRIC_KEY";
138128
+ /**
138129
+ * Type definition for `AWS::PaymentCryptography::Key.ReplicationStatus`.
138130
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatus.html}
138131
+ */
138132
+ export type PaymentCryptographyKeyReplicationStatus = Record<string, PaymentCryptographyKeyReplicationStatusType>;
138133
+ /**
138134
+ * Type definition for `AWS::PaymentCryptography::Key.ReplicationStatusType`.
138135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatustype.html}
138136
+ */
138137
+ export type PaymentCryptographyKeyReplicationStatusType = {
138138
+ /**
138139
+ * Defines the replication state of a key
138140
+ */
138141
+ Status: PaymentCryptographyKeyKeyReplicationState;
138142
+ StatusMessage?: string;
138143
+ };
138404
138144
  /**
138405
138145
  * Type definition for `AWS::PaymentCryptography::Key.Tag`.
138406
138146
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-tag.html}
@@ -179274,355 +179014,6 @@ export type ResourceGroupsTagSyncTaskAttributes = {
179274
179014
  */
179275
179015
  TaskArn: string;
179276
179016
  };
179277
- /**
179278
- * AWS::RoboMaker::Fleet resource creates an AWS RoboMaker fleet. Fleets contain robots and can receive deployments.
179279
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html}
179280
- */
179281
- export type RoboMakerFleetProps = {
179282
- /**
179283
- * The name of the fleet.
179284
- * @minLength `1`
179285
- * @maxLength `255`
179286
- * @pattern `[a-zA-Z0-9_\-]{1,255}$`
179287
- */
179288
- Name?: string;
179289
- /**
179290
- * A key-value pair to associate with a resource.
179291
- */
179292
- Tags?: RoboMakerFleetTags;
179293
- };
179294
- /**
179295
- * Attribute type definition for `AWS::RoboMaker::Fleet`.
179296
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#aws-resource-robomaker-fleet-return-values}
179297
- */
179298
- export type RoboMakerFleetAttributes = {
179299
- /**
179300
- * @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
179301
- */
179302
- Arn: string;
179303
- };
179304
- /**
179305
- * Type definition for `AWS::RoboMaker::Fleet.Tags`.
179306
- * A key-value pair to associate with a resource.
179307
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-fleet-tags.html}
179308
- */
179309
- export type RoboMakerFleetTags = Record<string, string>;
179310
- /**
179311
- * AWS::RoboMaker::Robot resource creates an AWS RoboMaker Robot.
179312
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html}
179313
- */
179314
- export type RoboMakerRobotProps = {
179315
- /**
179316
- * The target architecture of the robot.
179317
- */
179318
- Architecture: "X86_64" | "ARM64" | "ARMHF";
179319
- /**
179320
- * The Amazon Resource Name (ARN) of the fleet.
179321
- * @minLength `1`
179322
- * @maxLength `1224`
179323
- */
179324
- Fleet?: string;
179325
- /**
179326
- * The Greengrass group id.
179327
- * @minLength `1`
179328
- * @maxLength `1224`
179329
- */
179330
- GreengrassGroupId: string;
179331
- /**
179332
- * The name for the robot.
179333
- * @minLength `1`
179334
- * @maxLength `255`
179335
- */
179336
- Name?: string;
179337
- /**
179338
- * A key-value pair to associate with a resource.
179339
- */
179340
- Tags?: RoboMakerRobotTags;
179341
- };
179342
- /**
179343
- * Attribute type definition for `AWS::RoboMaker::Robot`.
179344
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#aws-resource-robomaker-robot-return-values}
179345
- */
179346
- export type RoboMakerRobotAttributes = {
179347
- /**
179348
- * @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
179349
- */
179350
- Arn: string;
179351
- };
179352
- /**
179353
- * Type definition for `AWS::RoboMaker::Robot.Tags`.
179354
- * A key-value pair to associate with a resource.
179355
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robot-tags.html}
179356
- */
179357
- export type RoboMakerRobotTags = Record<string, string>;
179358
- /**
179359
- * Resource type definition for `AWS::RoboMaker::RobotApplication`.
179360
- * This schema is for testing purpose only.
179361
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html}
179362
- */
179363
- export type RoboMakerRobotApplicationProps = {
179364
- /**
179365
- * The revision ID of robot application.
179366
- * @minLength `1`
179367
- * @maxLength `40`
179368
- */
179369
- CurrentRevisionId?: string;
179370
- /**
179371
- * The URI of the Docker image for the robot application.
179372
- */
179373
- Environment?: string;
179374
- /**
179375
- * The name of the robot application.
179376
- * @minLength `1`
179377
- * @maxLength `255`
179378
- */
179379
- Name?: string;
179380
- /**
179381
- * The robot software suite used by the robot application.
179382
- */
179383
- RobotSoftwareSuite: RoboMakerRobotApplicationRobotSoftwareSuite;
179384
- /**
179385
- * The sources of the robot application.
179386
- */
179387
- Sources?: RoboMakerRobotApplicationSourceConfig[];
179388
- /**
179389
- * A key-value pair to associate with a resource.
179390
- */
179391
- Tags?: RoboMakerRobotApplicationTags;
179392
- };
179393
- /**
179394
- * Attribute type definition for `AWS::RoboMaker::RobotApplication`.
179395
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#aws-resource-robomaker-robotapplication-return-values}
179396
- */
179397
- export type RoboMakerRobotApplicationAttributes = {
179398
- /**
179399
- * @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
179400
- */
179401
- Arn: string;
179402
- };
179403
- /**
179404
- * Type definition for `AWS::RoboMaker::RobotApplication.RobotSoftwareSuite`.
179405
- * The robot software suite used by the robot application.
179406
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html}
179407
- */
179408
- export type RoboMakerRobotApplicationRobotSoftwareSuite = {
179409
- /**
179410
- * The name of robot software suite.
179411
- */
179412
- Name: "ROS" | "ROS2" | "General";
179413
- /**
179414
- * The version of robot software suite.
179415
- */
179416
- Version?: "Kinetic" | "Melodic" | "Dashing";
179417
- };
179418
- /**
179419
- * Type definition for `AWS::RoboMaker::RobotApplication.SourceConfig`.
179420
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-sourceconfig.html}
179421
- */
179422
- export type RoboMakerRobotApplicationSourceConfig = {
179423
- /**
179424
- * The architecture of robot application.
179425
- * @minLength `1`
179426
- * @maxLength `255`
179427
- */
179428
- Architecture: "X86_64" | "ARM64" | "ARMHF";
179429
- /**
179430
- * The Arn of the S3Bucket that stores the robot application source.
179431
- */
179432
- S3Bucket: string;
179433
- /**
179434
- * The s3 key of robot application source.
179435
- */
179436
- S3Key: string;
179437
- };
179438
- /**
179439
- * Type definition for `AWS::RoboMaker::RobotApplication.Tags`.
179440
- * A key-value pair to associate with a resource.
179441
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-tags.html}
179442
- */
179443
- export type RoboMakerRobotApplicationTags = Record<string, string>;
179444
- /**
179445
- * AWS::RoboMaker::RobotApplicationVersion resource creates an AWS RoboMaker RobotApplicationVersion. This helps you control which code your robot uses.
179446
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html}
179447
- */
179448
- export type RoboMakerRobotApplicationVersionProps = {
179449
- /**
179450
- * @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
179451
- */
179452
- Application: string;
179453
- /**
179454
- * The revision ID of robot application.
179455
- * @minLength `1`
179456
- * @maxLength `40`
179457
- * @pattern `[a-zA-Z0-9_.\-]*`
179458
- */
179459
- CurrentRevisionId?: string;
179460
- };
179461
- /**
179462
- * Attribute type definition for `AWS::RoboMaker::RobotApplicationVersion`.
179463
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#aws-resource-robomaker-robotapplicationversion-return-values}
179464
- */
179465
- export type RoboMakerRobotApplicationVersionAttributes = {
179466
- ApplicationVersion: string;
179467
- /**
179468
- * @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
179469
- */
179470
- Arn: string;
179471
- };
179472
- /**
179473
- * Resource type definition for `AWS::RoboMaker::SimulationApplication`.
179474
- * This schema is for testing purpose only.
179475
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html}
179476
- */
179477
- export type RoboMakerSimulationApplicationProps = {
179478
- /**
179479
- * The current revision id.
179480
- */
179481
- CurrentRevisionId?: string;
179482
- /**
179483
- * The URI of the Docker image for the robot application.
179484
- */
179485
- Environment?: string;
179486
- /**
179487
- * The name of the simulation application.
179488
- * @minLength `1`
179489
- * @maxLength `255`
179490
- * @pattern `[a-zA-Z0-9_\-]*`
179491
- */
179492
- Name?: string;
179493
- /**
179494
- * The rendering engine for the simulation application.
179495
- */
179496
- RenderingEngine?: RoboMakerSimulationApplicationRenderingEngine;
179497
- /**
179498
- * The robot software suite used by the simulation application.
179499
- */
179500
- RobotSoftwareSuite: RoboMakerSimulationApplicationRobotSoftwareSuite;
179501
- /**
179502
- * The simulation software suite used by the simulation application.
179503
- */
179504
- SimulationSoftwareSuite: RoboMakerSimulationApplicationSimulationSoftwareSuite;
179505
- /**
179506
- * The sources of the simulation application.
179507
- */
179508
- Sources?: RoboMakerSimulationApplicationSourceConfig[];
179509
- /**
179510
- * A key-value pair to associate with a resource.
179511
- */
179512
- Tags?: RoboMakerSimulationApplicationTags;
179513
- };
179514
- /**
179515
- * Attribute type definition for `AWS::RoboMaker::SimulationApplication`.
179516
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#aws-resource-robomaker-simulationapplication-return-values}
179517
- */
179518
- export type RoboMakerSimulationApplicationAttributes = {
179519
- /**
179520
- * @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
179521
- */
179522
- Arn: string;
179523
- };
179524
- /**
179525
- * Type definition for `AWS::RoboMaker::SimulationApplication.RenderingEngine`.
179526
- * Information about a rendering engine.
179527
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html}
179528
- */
179529
- export type RoboMakerSimulationApplicationRenderingEngine = {
179530
- /**
179531
- * The name of the rendering engine.
179532
- */
179533
- Name: "OGRE";
179534
- /**
179535
- * The version of the rendering engine.
179536
- * @pattern `1.x`
179537
- */
179538
- Version: string;
179539
- };
179540
- /**
179541
- * Type definition for `AWS::RoboMaker::SimulationApplication.RobotSoftwareSuite`.
179542
- * Information about a robot software suite.
179543
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html}
179544
- */
179545
- export type RoboMakerSimulationApplicationRobotSoftwareSuite = {
179546
- /**
179547
- * The name of the robot software suite.
179548
- */
179549
- Name: "ROS" | "ROS2" | "General";
179550
- /**
179551
- * The version of the robot software suite.
179552
- */
179553
- Version?: "Kinetic" | "Melodic" | "Dashing" | "Foxy";
179554
- };
179555
- /**
179556
- * Type definition for `AWS::RoboMaker::SimulationApplication.SimulationSoftwareSuite`.
179557
- * Information about a simulation software suite.
179558
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html}
179559
- */
179560
- export type RoboMakerSimulationApplicationSimulationSoftwareSuite = {
179561
- /**
179562
- * The name of the simulation software suite.
179563
- */
179564
- Name: "Gazebo" | "RosbagPlay" | "SimulationRuntime";
179565
- /**
179566
- * The version of the simulation software suite.
179567
- */
179568
- Version?: "7" | "9" | "11" | "Kinetic" | "Melodic" | "Dashing" | "Foxy";
179569
- };
179570
- /**
179571
- * Type definition for `AWS::RoboMaker::SimulationApplication.SourceConfig`.
179572
- * Information about a source configuration.
179573
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-sourceconfig.html}
179574
- */
179575
- export type RoboMakerSimulationApplicationSourceConfig = {
179576
- /**
179577
- * The target processor architecture for the application.
179578
- */
179579
- Architecture: "X86_64" | "ARM64" | "ARMHF";
179580
- /**
179581
- * The Amazon S3 bucket name.
179582
- * @pattern `[a-z0-9][a-z0-9.\-]*[a-z0-9]`
179583
- */
179584
- S3Bucket: string;
179585
- /**
179586
- * The s3 object key.
179587
- * @minLength `1`
179588
- * @maxLength `1024`
179589
- */
179590
- S3Key: string;
179591
- };
179592
- /**
179593
- * Type definition for `AWS::RoboMaker::SimulationApplication.Tags`.
179594
- * A key-value pair to associate with a resource.
179595
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-tags.html}
179596
- */
179597
- export type RoboMakerSimulationApplicationTags = Record<string, string>;
179598
- /**
179599
- * AWS::RoboMaker::SimulationApplicationVersion resource creates an AWS RoboMaker SimulationApplicationVersion. This helps you control which code your simulation uses.
179600
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html}
179601
- */
179602
- export type RoboMakerSimulationApplicationVersionProps = {
179603
- /**
179604
- * @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
179605
- */
179606
- Application: string;
179607
- /**
179608
- * The revision ID of robot application.
179609
- * @minLength `1`
179610
- * @maxLength `40`
179611
- * @pattern `[a-zA-Z0-9_.\-]*`
179612
- */
179613
- CurrentRevisionId?: string;
179614
- };
179615
- /**
179616
- * Attribute type definition for `AWS::RoboMaker::SimulationApplicationVersion`.
179617
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#aws-resource-robomaker-simulationapplicationversion-return-values}
179618
- */
179619
- export type RoboMakerSimulationApplicationVersionAttributes = {
179620
- ApplicationVersion: string;
179621
- /**
179622
- * @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
179623
- */
179624
- Arn: string;
179625
- };
179626
179017
  /**
179627
179018
  * Definition of AWS::RolesAnywhere::CRL Resource Type
179628
179019
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-crl.html}
@@ -186670,6 +186061,10 @@ export type S3VectorsIndexProps = {
186670
186061
  * The distance metric to be used for similarity search.
186671
186062
  */
186672
186063
  DistanceMetric: S3VectorsIndexDistanceMetric;
186064
+ /**
186065
+ * The encryption configuration for the index.
186066
+ */
186067
+ EncryptionConfiguration?: S3VectorsIndexEncryptionConfiguration;
186673
186068
  /**
186674
186069
  * The name of the vector index to create.
186675
186070
  * @minLength `3`
@@ -186717,6 +186112,24 @@ export type S3VectorsIndexDataType = "float32";
186717
186112
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-distancemetric.html}
186718
186113
  */
186719
186114
  export type S3VectorsIndexDistanceMetric = "cosine" | "euclidean";
186115
+ /**
186116
+ * Type definition for `AWS::S3Vectors::Index.EncryptionConfiguration`.
186117
+ * The encryption configuration for the index.
186118
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-encryptionconfiguration.html}
186119
+ */
186120
+ export type S3VectorsIndexEncryptionConfiguration = {
186121
+ /**
186122
+ * AWS Key Management Service (KMS) customer managed key ID to use for the encryption configuration. This parameter is allowed if and only if sseType is set to aws:kms
186123
+ * @minLength `1`
186124
+ * @maxLength `2048`
186125
+ * @pattern `^(arn:aws[-a-z0-9]*:kms:[-a-z0-9]*:[0-9]{12}:key/.+)$`
186126
+ */
186127
+ KmsKeyArn?: string;
186128
+ /**
186129
+ * Defines the server-side encryption type for index encryption configuration. Defaults to the parent vector bucket's encryption settings when unspecified.
186130
+ */
186131
+ SseType?: "AES256" | "aws:kms";
186132
+ };
186720
186133
  /**
186721
186134
  * Type definition for `AWS::S3Vectors::Index.MetadataConfiguration`.
186722
186135
  * The metadata configuration for the vector index.
@@ -208532,6 +207945,11 @@ export type TransferConnectorAttributes = {
208532
207945
  * @pattern `^c-([0-9a-f]{17})$`
208533
207946
  */
208534
207947
  ConnectorId: string;
207948
+ /**
207949
+ * Detailed error message when Connector in ERRORED status
207950
+ * @maxLength `2048`
207951
+ */
207952
+ ErrorMessage: string;
208535
207953
  /**
208536
207954
  * The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
208537
207955
  */
@@ -219516,7 +218934,6 @@ export interface ResourceTypes {
219516
218934
  "AWS::IoTEvents::AlarmModel": IoTEventsAlarmModelProps;
219517
218935
  "AWS::IoTEvents::DetectorModel": IoTEventsDetectorModelProps;
219518
218936
  "AWS::IoTEvents::Input": IoTEventsInputProps;
219519
- "AWS::IoTFleetHub::Application": IoTFleetHubApplicationProps;
219520
218937
  "AWS::IoTFleetWise::Campaign": IoTFleetWiseCampaignProps;
219521
218938
  "AWS::IoTFleetWise::DecoderManifest": IoTFleetWiseDecoderManifestProps;
219522
218939
  "AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetProps;
@@ -219646,8 +219063,6 @@ export interface ResourceTypes {
219646
219063
  "AWS::Logs::SubscriptionFilter": LogsSubscriptionFilterProps;
219647
219064
  "AWS::Logs::Transformer": LogsTransformerProps;
219648
219065
  "AWS::LookoutEquipment::InferenceScheduler": LookoutEquipmentInferenceSchedulerProps;
219649
- "AWS::LookoutMetrics::Alert": LookoutMetricsAlertProps;
219650
- "AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorProps;
219651
219066
  "AWS::LookoutVision::Project": LookoutVisionProjectProps;
219652
219067
  "AWS::M2::Application": M2ApplicationProps;
219653
219068
  "AWS::M2::Deployment": M2DeploymentProps;
@@ -219738,6 +219153,7 @@ export interface ResourceTypes {
219738
219153
  "AWS::NetworkManager::ConnectAttachment": NetworkManagerConnectAttachmentProps;
219739
219154
  "AWS::NetworkManager::ConnectPeer": NetworkManagerConnectPeerProps;
219740
219155
  "AWS::NetworkManager::CoreNetwork": NetworkManagerCoreNetworkProps;
219156
+ "AWS::NetworkManager::CoreNetworkPrefixListAssociation": NetworkManagerCoreNetworkPrefixListAssociationProps;
219741
219157
  "AWS::NetworkManager::CustomerGatewayAssociation": NetworkManagerCustomerGatewayAssociationProps;
219742
219158
  "AWS::NetworkManager::Device": NetworkManagerDeviceProps;
219743
219159
  "AWS::NetworkManager::DirectConnectGatewayAttachment": NetworkManagerDirectConnectGatewayAttachmentProps;
@@ -219912,12 +219328,6 @@ export interface ResourceTypes {
219912
219328
  "AWS::ResourceExplorer2::View": ResourceExplorer2ViewProps;
219913
219329
  "AWS::ResourceGroups::Group": ResourceGroupsGroupProps;
219914
219330
  "AWS::ResourceGroups::TagSyncTask": ResourceGroupsTagSyncTaskProps;
219915
- "AWS::RoboMaker::Fleet": RoboMakerFleetProps;
219916
- "AWS::RoboMaker::Robot": RoboMakerRobotProps;
219917
- "AWS::RoboMaker::RobotApplication": RoboMakerRobotApplicationProps;
219918
- "AWS::RoboMaker::RobotApplicationVersion": RoboMakerRobotApplicationVersionProps;
219919
- "AWS::RoboMaker::SimulationApplication": RoboMakerSimulationApplicationProps;
219920
- "AWS::RoboMaker::SimulationApplicationVersion": RoboMakerSimulationApplicationVersionProps;
219921
219331
  "AWS::RolesAnywhere::CRL": RolesAnywhereCRLProps;
219922
219332
  "AWS::RolesAnywhere::Profile": RolesAnywhereProfileProps;
219923
219333
  "AWS::RolesAnywhere::TrustAnchor": RolesAnywhereTrustAnchorProps;
@@ -220934,7 +220344,6 @@ export interface AttributeTypes {
220934
220344
  "AWS::IoTAnalytics::Datastore": IoTAnalyticsDatastoreAttributes;
220935
220345
  "AWS::IoTAnalytics::Pipeline": IoTAnalyticsPipelineAttributes;
220936
220346
  "AWS::IoTCoreDeviceAdvisor::SuiteDefinition": IoTCoreDeviceAdvisorSuiteDefinitionAttributes;
220937
- "AWS::IoTFleetHub::Application": IoTFleetHubApplicationAttributes;
220938
220347
  "AWS::IoTFleetWise::Campaign": IoTFleetWiseCampaignAttributes;
220939
220348
  "AWS::IoTFleetWise::DecoderManifest": IoTFleetWiseDecoderManifestAttributes;
220940
220349
  "AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetAttributes;
@@ -221052,8 +220461,6 @@ export interface AttributeTypes {
221052
220461
  "AWS::Logs::LogGroup": LogsLogGroupAttributes;
221053
220462
  "AWS::Logs::QueryDefinition": LogsQueryDefinitionAttributes;
221054
220463
  "AWS::LookoutEquipment::InferenceScheduler": LookoutEquipmentInferenceSchedulerAttributes;
221055
- "AWS::LookoutMetrics::Alert": LookoutMetricsAlertAttributes;
221056
- "AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorAttributes;
221057
220464
  "AWS::LookoutVision::Project": LookoutVisionProjectAttributes;
221058
220465
  "AWS::M2::Application": M2ApplicationAttributes;
221059
220466
  "AWS::M2::Deployment": M2DeploymentAttributes;
@@ -221287,12 +220694,6 @@ export interface AttributeTypes {
221287
220694
  "AWS::ResourceExplorer2::View": ResourceExplorer2ViewAttributes;
221288
220695
  "AWS::ResourceGroups::Group": ResourceGroupsGroupAttributes;
221289
220696
  "AWS::ResourceGroups::TagSyncTask": ResourceGroupsTagSyncTaskAttributes;
221290
- "AWS::RoboMaker::Fleet": RoboMakerFleetAttributes;
221291
- "AWS::RoboMaker::Robot": RoboMakerRobotAttributes;
221292
- "AWS::RoboMaker::RobotApplication": RoboMakerRobotApplicationAttributes;
221293
- "AWS::RoboMaker::RobotApplicationVersion": RoboMakerRobotApplicationVersionAttributes;
221294
- "AWS::RoboMaker::SimulationApplication": RoboMakerSimulationApplicationAttributes;
221295
- "AWS::RoboMaker::SimulationApplicationVersion": RoboMakerSimulationApplicationVersionAttributes;
221296
220697
  "AWS::RolesAnywhere::CRL": RolesAnywhereCRLAttributes;
221297
220698
  "AWS::RolesAnywhere::Profile": RolesAnywhereProfileAttributes;
221298
220699
  "AWS::RolesAnywhere::TrustAnchor": RolesAnywhereTrustAnchorAttributes;
@@ -222357,7 +221758,6 @@ export declare const ResourceType: {
222357
221758
  readonly IoTEventsAlarmModel: "AWS::IoTEvents::AlarmModel";
222358
221759
  readonly IoTEventsDetectorModel: "AWS::IoTEvents::DetectorModel";
222359
221760
  readonly IoTEventsInput: "AWS::IoTEvents::Input";
222360
- readonly IoTFleetHubApplication: "AWS::IoTFleetHub::Application";
222361
221761
  readonly IoTFleetWiseCampaign: "AWS::IoTFleetWise::Campaign";
222362
221762
  readonly IoTFleetWiseDecoderManifest: "AWS::IoTFleetWise::DecoderManifest";
222363
221763
  readonly IoTFleetWiseFleet: "AWS::IoTFleetWise::Fleet";
@@ -222487,8 +221887,6 @@ export declare const ResourceType: {
222487
221887
  readonly LogsSubscriptionFilter: "AWS::Logs::SubscriptionFilter";
222488
221888
  readonly LogsTransformer: "AWS::Logs::Transformer";
222489
221889
  readonly LookoutEquipmentInferenceScheduler: "AWS::LookoutEquipment::InferenceScheduler";
222490
- readonly LookoutMetricsAlert: "AWS::LookoutMetrics::Alert";
222491
- readonly LookoutMetricsAnomalyDetector: "AWS::LookoutMetrics::AnomalyDetector";
222492
221890
  readonly LookoutVisionProject: "AWS::LookoutVision::Project";
222493
221891
  readonly M2Application: "AWS::M2::Application";
222494
221892
  readonly M2Deployment: "AWS::M2::Deployment";
@@ -222579,6 +221977,7 @@ export declare const ResourceType: {
222579
221977
  readonly NetworkManagerConnectAttachment: "AWS::NetworkManager::ConnectAttachment";
222580
221978
  readonly NetworkManagerConnectPeer: "AWS::NetworkManager::ConnectPeer";
222581
221979
  readonly NetworkManagerCoreNetwork: "AWS::NetworkManager::CoreNetwork";
221980
+ readonly NetworkManagerCoreNetworkPrefixListAssociation: "AWS::NetworkManager::CoreNetworkPrefixListAssociation";
222582
221981
  readonly NetworkManagerCustomerGatewayAssociation: "AWS::NetworkManager::CustomerGatewayAssociation";
222583
221982
  readonly NetworkManagerDevice: "AWS::NetworkManager::Device";
222584
221983
  readonly NetworkManagerDirectConnectGatewayAttachment: "AWS::NetworkManager::DirectConnectGatewayAttachment";
@@ -222753,12 +222152,6 @@ export declare const ResourceType: {
222753
222152
  readonly ResourceExplorer2View: "AWS::ResourceExplorer2::View";
222754
222153
  readonly ResourceGroupsGroup: "AWS::ResourceGroups::Group";
222755
222154
  readonly ResourceGroupsTagSyncTask: "AWS::ResourceGroups::TagSyncTask";
222756
- readonly RoboMakerFleet: "AWS::RoboMaker::Fleet";
222757
- readonly RoboMakerRobot: "AWS::RoboMaker::Robot";
222758
- readonly RoboMakerRobotApplication: "AWS::RoboMaker::RobotApplication";
222759
- readonly RoboMakerRobotApplicationVersion: "AWS::RoboMaker::RobotApplicationVersion";
222760
- readonly RoboMakerSimulationApplication: "AWS::RoboMaker::SimulationApplication";
222761
- readonly RoboMakerSimulationApplicationVersion: "AWS::RoboMaker::SimulationApplicationVersion";
222762
222155
  readonly RolesAnywhereCRL: "AWS::RolesAnywhere::CRL";
222763
222156
  readonly RolesAnywhereProfile: "AWS::RolesAnywhere::Profile";
222764
222157
  readonly RolesAnywhereTrustAnchor: "AWS::RolesAnywhere::TrustAnchor";