@awboost/cfntypes 0.100.351 → 0.100.352
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.
- package/lib/resources.generated.d.ts +219 -864
- package/lib/resources.generated.js +16 -29
- package/lib/resources.generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -30076,6 +30076,7 @@ export type CleanRoomsAnalysisTemplateProps = {
|
|
|
30076
30076
|
Schema?: CleanRoomsAnalysisTemplateAnalysisSchema;
|
|
30077
30077
|
Source: CleanRoomsAnalysisTemplateAnalysisSource;
|
|
30078
30078
|
SourceMetadata?: CleanRoomsAnalysisTemplateAnalysisSourceMetadata;
|
|
30079
|
+
SyntheticDataParameters?: CleanRoomsAnalysisTemplateSyntheticDataParameters;
|
|
30079
30080
|
/**
|
|
30080
30081
|
* An arbitrary set of tags (key-value pairs) for this cleanrooms analysis template.
|
|
30081
30082
|
*/
|
|
@@ -30191,6 +30192,17 @@ export type CleanRoomsAnalysisTemplateAnalysisTemplateArtifacts = {
|
|
|
30191
30192
|
*/
|
|
30192
30193
|
RoleArn: string;
|
|
30193
30194
|
};
|
|
30195
|
+
/**
|
|
30196
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.ColumnClassificationDetails`.
|
|
30197
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-columnclassificationdetails.html}
|
|
30198
|
+
*/
|
|
30199
|
+
export type CleanRoomsAnalysisTemplateColumnClassificationDetails = {
|
|
30200
|
+
/**
|
|
30201
|
+
* @minLength `5`
|
|
30202
|
+
* @maxLength `1000`
|
|
30203
|
+
*/
|
|
30204
|
+
ColumnMapping: CleanRoomsAnalysisTemplateSyntheticDataColumnProperties[];
|
|
30205
|
+
};
|
|
30194
30206
|
/**
|
|
30195
30207
|
* Type definition for `AWS::CleanRooms::AnalysisTemplate.ErrorMessageConfiguration`.
|
|
30196
30208
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-errormessageconfiguration.html}
|
|
@@ -30205,6 +30217,23 @@ export type CleanRoomsAnalysisTemplateErrorMessageConfiguration = {
|
|
|
30205
30217
|
export type CleanRoomsAnalysisTemplateHash = {
|
|
30206
30218
|
Sha256?: string;
|
|
30207
30219
|
};
|
|
30220
|
+
/**
|
|
30221
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.MLSyntheticDataParameters`.
|
|
30222
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-mlsyntheticdataparameters.html}
|
|
30223
|
+
*/
|
|
30224
|
+
export type CleanRoomsAnalysisTemplateMLSyntheticDataParameters = {
|
|
30225
|
+
ColumnClassification: CleanRoomsAnalysisTemplateColumnClassificationDetails;
|
|
30226
|
+
/**
|
|
30227
|
+
* @min `0.0001`
|
|
30228
|
+
* @max `10`
|
|
30229
|
+
*/
|
|
30230
|
+
Epsilon: number;
|
|
30231
|
+
/**
|
|
30232
|
+
* @min `0.5`
|
|
30233
|
+
* @max `1`
|
|
30234
|
+
*/
|
|
30235
|
+
MaxMembershipInferenceAttackScore: number;
|
|
30236
|
+
};
|
|
30208
30237
|
/**
|
|
30209
30238
|
* Type definition for `AWS::CleanRooms::AnalysisTemplate.S3Location`.
|
|
30210
30239
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html}
|
|
@@ -30217,6 +30246,26 @@ export type CleanRoomsAnalysisTemplateS3Location = {
|
|
|
30217
30246
|
Bucket: string;
|
|
30218
30247
|
Key: string;
|
|
30219
30248
|
};
|
|
30249
|
+
/**
|
|
30250
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataColumnProperties`.
|
|
30251
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdatacolumnproperties.html}
|
|
30252
|
+
*/
|
|
30253
|
+
export type CleanRoomsAnalysisTemplateSyntheticDataColumnProperties = {
|
|
30254
|
+
/**
|
|
30255
|
+
* @maxLength `128`
|
|
30256
|
+
* @pattern `^[a-z0-9_](([a-z0-9_]+-)*([a-z0-9_]+))?$`
|
|
30257
|
+
*/
|
|
30258
|
+
ColumnName: string;
|
|
30259
|
+
ColumnType: "CATEGORICAL" | "NUMERICAL";
|
|
30260
|
+
IsPredictiveValue: boolean;
|
|
30261
|
+
};
|
|
30262
|
+
/**
|
|
30263
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataParameters`.
|
|
30264
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdataparameters.html}
|
|
30265
|
+
*/
|
|
30266
|
+
export type CleanRoomsAnalysisTemplateSyntheticDataParameters = {
|
|
30267
|
+
MlSyntheticDataParameters: CleanRoomsAnalysisTemplateMLSyntheticDataParameters;
|
|
30268
|
+
};
|
|
30220
30269
|
/**
|
|
30221
30270
|
* Type definition for `AWS::CleanRooms::AnalysisTemplate.Tag`.
|
|
30222
30271
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-tag.html}
|
|
@@ -30374,6 +30423,7 @@ export type CleanRoomsCollaborationMLMemberAbilities = {
|
|
|
30374
30423
|
export type CleanRoomsCollaborationMLPaymentConfig = {
|
|
30375
30424
|
ModelInference?: CleanRoomsCollaborationModelInferencePaymentConfig;
|
|
30376
30425
|
ModelTraining?: CleanRoomsCollaborationModelTrainingPaymentConfig;
|
|
30426
|
+
SyntheticDataGeneration?: CleanRoomsCollaborationSyntheticDataGenerationPaymentConfig;
|
|
30377
30427
|
};
|
|
30378
30428
|
/**
|
|
30379
30429
|
* Type definition for `AWS::CleanRooms::Collaboration.ModelInferencePaymentConfig`.
|
|
@@ -30410,6 +30460,13 @@ export type CleanRoomsCollaborationQueryComputePaymentConfig = {
|
|
|
30410
30460
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-supporteds3region.html}
|
|
30411
30461
|
*/
|
|
30412
30462
|
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";
|
|
30463
|
+
/**
|
|
30464
|
+
* Type definition for `AWS::CleanRooms::Collaboration.SyntheticDataGenerationPaymentConfig`.
|
|
30465
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-syntheticdatagenerationpaymentconfig.html}
|
|
30466
|
+
*/
|
|
30467
|
+
export type CleanRoomsCollaborationSyntheticDataGenerationPaymentConfig = {
|
|
30468
|
+
IsResponsible: boolean;
|
|
30469
|
+
};
|
|
30413
30470
|
/**
|
|
30414
30471
|
* Type definition for `AWS::CleanRooms::Collaboration.Tag`.
|
|
30415
30472
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-tag.html}
|
|
@@ -32927,6 +32984,7 @@ export type CloudFrontAnycastIpListProps = {
|
|
|
32927
32984
|
* The number of IP addresses in the Anycast static IP list.
|
|
32928
32985
|
*/
|
|
32929
32986
|
IpCount: number;
|
|
32987
|
+
IpamCidrConfigs?: CloudFrontAnycastIpListIpamCidrConfig[];
|
|
32930
32988
|
/**
|
|
32931
32989
|
* The name of the Anycast static IP list.
|
|
32932
32990
|
* @minLength `1`
|
|
@@ -32965,6 +33023,12 @@ export type CloudFrontAnycastIpListAttributes = {
|
|
|
32965
33023
|
* The number of IP addresses in the Anycast static IP list.
|
|
32966
33024
|
*/
|
|
32967
33025
|
IpCount: number;
|
|
33026
|
+
IpamCidrConfigResults: {
|
|
33027
|
+
AnycastIp: string;
|
|
33028
|
+
Cidr: string;
|
|
33029
|
+
IpamPoolArn: string;
|
|
33030
|
+
Status: string;
|
|
33031
|
+
}[];
|
|
32968
33032
|
/**
|
|
32969
33033
|
* The last time the Anycast static IP list was modified.
|
|
32970
33034
|
*/
|
|
@@ -32983,6 +33047,12 @@ export type CloudFrontAnycastIpListAttributes = {
|
|
|
32983
33047
|
};
|
|
32984
33048
|
ETag: string;
|
|
32985
33049
|
Id: string;
|
|
33050
|
+
IpamCidrConfigResults: {
|
|
33051
|
+
AnycastIp: string;
|
|
33052
|
+
Cidr: string;
|
|
33053
|
+
IpamPoolArn: string;
|
|
33054
|
+
Status: string;
|
|
33055
|
+
}[];
|
|
32986
33056
|
};
|
|
32987
33057
|
/**
|
|
32988
33058
|
* Type definition for `AWS::CloudFront::AnycastIpList.AnycastIpList`.
|
|
@@ -33007,6 +33077,7 @@ export type CloudFrontAnycastIpListAnycastIpList = {
|
|
|
33007
33077
|
* The number of IP addresses in the Anycast static IP list.
|
|
33008
33078
|
*/
|
|
33009
33079
|
IpCount: number;
|
|
33080
|
+
IpamCidrConfigResults?: CloudFrontAnycastIpListIpamCidrConfigResult[];
|
|
33010
33081
|
/**
|
|
33011
33082
|
* The last time the Anycast static IP list was modified.
|
|
33012
33083
|
*/
|
|
@@ -33028,6 +33099,24 @@ export type CloudFrontAnycastIpListAnycastIpList = {
|
|
|
33028
33099
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipaddresstype.html}
|
|
33029
33100
|
*/
|
|
33030
33101
|
export type CloudFrontAnycastIpListIpAddressType = "ipv4" | "dualstack";
|
|
33102
|
+
/**
|
|
33103
|
+
* Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfig`.
|
|
33104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfig.html}
|
|
33105
|
+
*/
|
|
33106
|
+
export type CloudFrontAnycastIpListIpamCidrConfig = {
|
|
33107
|
+
Cidr: string;
|
|
33108
|
+
IpamPoolArn: string;
|
|
33109
|
+
};
|
|
33110
|
+
/**
|
|
33111
|
+
* Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfigResult`.
|
|
33112
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfigresult.html}
|
|
33113
|
+
*/
|
|
33114
|
+
export type CloudFrontAnycastIpListIpamCidrConfigResult = {
|
|
33115
|
+
AnycastIp?: string;
|
|
33116
|
+
Cidr?: string;
|
|
33117
|
+
IpamPoolArn?: string;
|
|
33118
|
+
Status?: string;
|
|
33119
|
+
};
|
|
33031
33120
|
/**
|
|
33032
33121
|
* Type definition for `AWS::CloudFront::AnycastIpList.Tag`.
|
|
33033
33122
|
* A complex type that contains ``Tag`` key and ``Tag`` value.
|
|
@@ -46248,6 +46337,12 @@ export type ConnectCampaignsV2CampaignTelephonyOutboundConfig = {
|
|
|
46248
46337
|
* @maxLength `100`
|
|
46249
46338
|
*/
|
|
46250
46339
|
ConnectSourcePhoneNumber?: string;
|
|
46340
|
+
/**
|
|
46341
|
+
* Maximum ring time for outbound calls in seconds
|
|
46342
|
+
* @min `15`
|
|
46343
|
+
* @max `60`
|
|
46344
|
+
*/
|
|
46345
|
+
RingTimeout?: number;
|
|
46251
46346
|
};
|
|
46252
46347
|
/**
|
|
46253
46348
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyOutboundMode`.
|
|
@@ -51948,6 +52043,11 @@ export type DataZoneConnectionConnectionPropertiesInput = {
|
|
|
51948
52043
|
* S3 Properties Input
|
|
51949
52044
|
*/
|
|
51950
52045
|
S3Properties: DataZoneConnectionS3PropertiesInput;
|
|
52046
|
+
} | {
|
|
52047
|
+
/**
|
|
52048
|
+
* MLflow Properties Input
|
|
52049
|
+
*/
|
|
52050
|
+
MlflowProperties: DataZoneConnectionMlflowPropertiesInput;
|
|
51951
52051
|
};
|
|
51952
52052
|
/**
|
|
51953
52053
|
* Type definition for `AWS::DataZone::Connection.CredentialMap`.
|
|
@@ -52082,6 +52182,17 @@ export type DataZoneConnectionLineageSyncSchedule = {
|
|
|
52082
52182
|
*/
|
|
52083
52183
|
Schedule?: string;
|
|
52084
52184
|
};
|
|
52185
|
+
/**
|
|
52186
|
+
* Type definition for `AWS::DataZone::Connection.MlflowPropertiesInput`.
|
|
52187
|
+
* MLflow Properties Input
|
|
52188
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-mlflowpropertiesinput.html}
|
|
52189
|
+
*/
|
|
52190
|
+
export type DataZoneConnectionMlflowPropertiesInput = {
|
|
52191
|
+
/**
|
|
52192
|
+
* The ARN of the MLflow tracking server
|
|
52193
|
+
*/
|
|
52194
|
+
TrackingServerArn?: string;
|
|
52195
|
+
};
|
|
52085
52196
|
/**
|
|
52086
52197
|
* Type definition for `AWS::DataZone::Connection.OAuth2ClientApplication`.
|
|
52087
52198
|
* OAuth2 Client Application
|
|
@@ -52275,7 +52386,7 @@ export type DataZoneConnectionS3PropertiesInput = {
|
|
|
52275
52386
|
export type DataZoneConnectionSparkEmrPropertiesInput = {
|
|
52276
52387
|
/**
|
|
52277
52388
|
* @maxLength `2048`
|
|
52278
|
-
* @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless):.*`
|
|
52389
|
+
* @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless|emr-containers):.*`
|
|
52279
52390
|
*/
|
|
52280
52391
|
ComputeArn?: string;
|
|
52281
52392
|
/**
|
|
@@ -52293,6 +52404,10 @@ export type DataZoneConnectionSparkEmrPropertiesInput = {
|
|
|
52293
52404
|
* @pattern `^s3://.+$`
|
|
52294
52405
|
*/
|
|
52295
52406
|
LogUri?: string;
|
|
52407
|
+
/**
|
|
52408
|
+
* @maxLength `2048`
|
|
52409
|
+
*/
|
|
52410
|
+
ManagedEndpointArn?: string;
|
|
52296
52411
|
/**
|
|
52297
52412
|
* @maxLength `256`
|
|
52298
52413
|
* @pattern `^[\S]*$`
|
|
@@ -58018,6 +58133,10 @@ export type DSQLClusterAttributes = {
|
|
|
58018
58133
|
* The status of the cluster.
|
|
58019
58134
|
*/
|
|
58020
58135
|
Status: string;
|
|
58136
|
+
/**
|
|
58137
|
+
* The DSQL cluster VPC endpoint.
|
|
58138
|
+
*/
|
|
58139
|
+
VpcEndpoint: string;
|
|
58021
58140
|
/**
|
|
58022
58141
|
* The VPC endpoint service name.
|
|
58023
58142
|
*/
|
|
@@ -59558,6 +59677,7 @@ export type EC2EC2FleetInstanceRequirementsRequest = {
|
|
|
59558
59677
|
NetworkBandwidthGbps?: EC2EC2FleetNetworkBandwidthGbpsRequest;
|
|
59559
59678
|
NetworkInterfaceCount?: EC2EC2FleetNetworkInterfaceCountRequest;
|
|
59560
59679
|
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
|
59680
|
+
RequireEncryptionInTransit?: boolean;
|
|
59561
59681
|
RequireHibernateSupport?: boolean;
|
|
59562
59682
|
SpotMaxPricePercentageOverLowestPrice?: number;
|
|
59563
59683
|
TotalLocalStorageGB?: EC2EC2FleetTotalLocalStorageGBRequest;
|
|
@@ -98991,38 +99111,6 @@ export type IoTEventsInputTag = {
|
|
|
98991
99111
|
*/
|
|
98992
99112
|
Value: string;
|
|
98993
99113
|
};
|
|
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
99114
|
/**
|
|
99027
99115
|
* Definition of AWS::IoTFleetWise::Campaign Resource Type
|
|
99028
99116
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-campaign.html}
|
|
@@ -117895,461 +117983,6 @@ export type LookoutEquipmentInferenceSchedulerTag = {
|
|
|
117895
117983
|
*/
|
|
117896
117984
|
Value: string;
|
|
117897
117985
|
};
|
|
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
117986
|
/**
|
|
118354
117987
|
* 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
117988
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutvision-project.html}
|
|
@@ -131317,6 +130950,10 @@ export type NetworkManagerConnectAttachmentProps = {
|
|
|
131317
130950
|
* The attachment to move from one segment to another.
|
|
131318
130951
|
*/
|
|
131319
130952
|
ProposedSegmentChange?: NetworkManagerConnectAttachmentProposedSegmentChange;
|
|
130953
|
+
/**
|
|
130954
|
+
* Routing policy label
|
|
130955
|
+
*/
|
|
130956
|
+
RoutingPolicyLabel?: string;
|
|
131320
130957
|
/**
|
|
131321
130958
|
* Tags for the attachment.
|
|
131322
130959
|
*/
|
|
@@ -131756,6 +131393,25 @@ export type NetworkManagerCoreNetworkTag = {
|
|
|
131756
131393
|
*/
|
|
131757
131394
|
Value: string;
|
|
131758
131395
|
};
|
|
131396
|
+
/**
|
|
131397
|
+
* Resource Type definition for AWS::NetworkManager::CoreNetworkPrefixListAssociation which associates a prefix list with a core network.
|
|
131398
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetworkprefixlistassociation.html}
|
|
131399
|
+
*/
|
|
131400
|
+
export type NetworkManagerCoreNetworkPrefixListAssociationProps = {
|
|
131401
|
+
/**
|
|
131402
|
+
* The ID of the core network.
|
|
131403
|
+
*/
|
|
131404
|
+
CoreNetworkId: string;
|
|
131405
|
+
/**
|
|
131406
|
+
* The alias of the prefix list
|
|
131407
|
+
*/
|
|
131408
|
+
PrefixListAlias: string;
|
|
131409
|
+
/**
|
|
131410
|
+
* The Amazon Resource Name (ARN) of the prefix list.
|
|
131411
|
+
* @pattern `^arn:[a-z0-9-]+:ec2:[a-z]+-[a-z]+-[0-9]:([0-9]{12}):prefix-list/pl-[a-z0-9]+$`
|
|
131412
|
+
*/
|
|
131413
|
+
PrefixListArn: string;
|
|
131414
|
+
};
|
|
131759
131415
|
/**
|
|
131760
131416
|
* The AWS::NetworkManager::CustomerGatewayAssociation type associates a customer gateway with a device and optionally, with a link.
|
|
131761
131417
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html}
|
|
@@ -131920,6 +131576,10 @@ export type NetworkManagerDirectConnectGatewayAttachmentProps = {
|
|
|
131920
131576
|
* The attachment to move from one segment to another.
|
|
131921
131577
|
*/
|
|
131922
131578
|
ProposedSegmentChange?: NetworkManagerDirectConnectGatewayAttachmentProposedSegmentChange;
|
|
131579
|
+
/**
|
|
131580
|
+
* Routing policy label
|
|
131581
|
+
*/
|
|
131582
|
+
RoutingPolicyLabel?: string;
|
|
131923
131583
|
/**
|
|
131924
131584
|
* Tags for the attachment.
|
|
131925
131585
|
*/
|
|
@@ -132286,6 +131946,10 @@ export type NetworkManagerSiteToSiteVpnAttachmentProps = {
|
|
|
132286
131946
|
* The attachment to move from one segment to another.
|
|
132287
131947
|
*/
|
|
132288
131948
|
ProposedSegmentChange?: NetworkManagerSiteToSiteVpnAttachmentProposedSegmentChange;
|
|
131949
|
+
/**
|
|
131950
|
+
* Routing policy label
|
|
131951
|
+
*/
|
|
131952
|
+
RoutingPolicyLabel?: string;
|
|
132289
131953
|
/**
|
|
132290
131954
|
* Tags for the attachment.
|
|
132291
131955
|
*/
|
|
@@ -132520,6 +132184,10 @@ export type NetworkManagerTransitGatewayRouteTableAttachmentProps = {
|
|
|
132520
132184
|
* The attachment to move from one segment to another.
|
|
132521
132185
|
*/
|
|
132522
132186
|
ProposedSegmentChange?: NetworkManagerTransitGatewayRouteTableAttachmentProposedSegmentChange;
|
|
132187
|
+
/**
|
|
132188
|
+
* Routing policy label
|
|
132189
|
+
*/
|
|
132190
|
+
RoutingPolicyLabel?: string;
|
|
132523
132191
|
/**
|
|
132524
132192
|
* An array of key-value pairs to apply to this resource.
|
|
132525
132193
|
*/
|
|
@@ -132661,6 +132329,10 @@ export type NetworkManagerVpcAttachmentProps = {
|
|
|
132661
132329
|
* The attachment to move from one segment to another.
|
|
132662
132330
|
*/
|
|
132663
132331
|
ProposedSegmentChange?: NetworkManagerVpcAttachmentProposedSegmentChange;
|
|
132332
|
+
/**
|
|
132333
|
+
* Routing policy label
|
|
132334
|
+
*/
|
|
132335
|
+
RoutingPolicyLabel?: string;
|
|
132664
132336
|
/**
|
|
132665
132337
|
* Subnet Arn list
|
|
132666
132338
|
*/
|
|
@@ -138313,6 +137985,7 @@ export type PaymentCryptographyKeyProps = {
|
|
|
138313
137985
|
Exportable: boolean;
|
|
138314
137986
|
KeyAttributes: PaymentCryptographyKeyKeyAttributes;
|
|
138315
137987
|
KeyCheckValueAlgorithm?: PaymentCryptographyKeyKeyCheckValueAlgorithm;
|
|
137988
|
+
ReplicationRegions?: string[];
|
|
138316
137989
|
/**
|
|
138317
137990
|
* @minLength `0`
|
|
138318
137991
|
* @maxLength `200`
|
|
@@ -138338,6 +138011,13 @@ export type PaymentCryptographyKeyAttributes = {
|
|
|
138338
138011
|
* Defines the state of a key
|
|
138339
138012
|
*/
|
|
138340
138013
|
KeyState: PaymentCryptographyKeyKeyState;
|
|
138014
|
+
ReplicationStatus: Record<string, {
|
|
138015
|
+
/**
|
|
138016
|
+
* Defines the replication state of a key
|
|
138017
|
+
*/
|
|
138018
|
+
Status: PaymentCryptographyKeyKeyReplicationState;
|
|
138019
|
+
StatusMessage: string;
|
|
138020
|
+
}>;
|
|
138341
138021
|
};
|
|
138342
138022
|
/**
|
|
138343
138023
|
* Type definition for `AWS::PaymentCryptography::Key.DeriveKeyUsage`.
|
|
@@ -138390,6 +138070,12 @@ export type PaymentCryptographyKeyKeyModesOfUse = {
|
|
|
138390
138070
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyorigin.html}
|
|
138391
138071
|
*/
|
|
138392
138072
|
export type PaymentCryptographyKeyKeyOrigin = "EXTERNAL" | "AWS_PAYMENT_CRYPTOGRAPHY";
|
|
138073
|
+
/**
|
|
138074
|
+
* Type definition for `AWS::PaymentCryptography::Key.KeyReplicationState`.
|
|
138075
|
+
* Defines the replication state of a key
|
|
138076
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyreplicationstate.html}
|
|
138077
|
+
*/
|
|
138078
|
+
export type PaymentCryptographyKeyKeyReplicationState = "IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "SYNCHRONIZED";
|
|
138393
138079
|
/**
|
|
138394
138080
|
* Type definition for `AWS::PaymentCryptography::Key.KeyState`.
|
|
138395
138081
|
* Defines the state of a key
|
|
@@ -138401,6 +138087,22 @@ export type PaymentCryptographyKeyKeyState = "CREATE_IN_PROGRESS" | "CREATE_COMP
|
|
|
138401
138087
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyusage.html}
|
|
138402
138088
|
*/
|
|
138403
138089
|
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";
|
|
138090
|
+
/**
|
|
138091
|
+
* Type definition for `AWS::PaymentCryptography::Key.ReplicationStatus`.
|
|
138092
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatus.html}
|
|
138093
|
+
*/
|
|
138094
|
+
export type PaymentCryptographyKeyReplicationStatus = Record<string, PaymentCryptographyKeyReplicationStatusType>;
|
|
138095
|
+
/**
|
|
138096
|
+
* Type definition for `AWS::PaymentCryptography::Key.ReplicationStatusType`.
|
|
138097
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatustype.html}
|
|
138098
|
+
*/
|
|
138099
|
+
export type PaymentCryptographyKeyReplicationStatusType = {
|
|
138100
|
+
/**
|
|
138101
|
+
* Defines the replication state of a key
|
|
138102
|
+
*/
|
|
138103
|
+
Status: PaymentCryptographyKeyKeyReplicationState;
|
|
138104
|
+
StatusMessage?: string;
|
|
138105
|
+
};
|
|
138404
138106
|
/**
|
|
138405
138107
|
* Type definition for `AWS::PaymentCryptography::Key.Tag`.
|
|
138406
138108
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-tag.html}
|
|
@@ -179274,355 +178976,6 @@ export type ResourceGroupsTagSyncTaskAttributes = {
|
|
|
179274
178976
|
*/
|
|
179275
178977
|
TaskArn: string;
|
|
179276
178978
|
};
|
|
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
178979
|
/**
|
|
179627
178980
|
* Definition of AWS::RolesAnywhere::CRL Resource Type
|
|
179628
178981
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-crl.html}
|
|
@@ -186670,6 +186023,10 @@ export type S3VectorsIndexProps = {
|
|
|
186670
186023
|
* The distance metric to be used for similarity search.
|
|
186671
186024
|
*/
|
|
186672
186025
|
DistanceMetric: S3VectorsIndexDistanceMetric;
|
|
186026
|
+
/**
|
|
186027
|
+
* The encryption configuration for the index.
|
|
186028
|
+
*/
|
|
186029
|
+
EncryptionConfiguration?: S3VectorsIndexEncryptionConfiguration;
|
|
186673
186030
|
/**
|
|
186674
186031
|
* The name of the vector index to create.
|
|
186675
186032
|
* @minLength `3`
|
|
@@ -186717,6 +186074,24 @@ export type S3VectorsIndexDataType = "float32";
|
|
|
186717
186074
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-distancemetric.html}
|
|
186718
186075
|
*/
|
|
186719
186076
|
export type S3VectorsIndexDistanceMetric = "cosine" | "euclidean";
|
|
186077
|
+
/**
|
|
186078
|
+
* Type definition for `AWS::S3Vectors::Index.EncryptionConfiguration`.
|
|
186079
|
+
* The encryption configuration for the index.
|
|
186080
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-encryptionconfiguration.html}
|
|
186081
|
+
*/
|
|
186082
|
+
export type S3VectorsIndexEncryptionConfiguration = {
|
|
186083
|
+
/**
|
|
186084
|
+
* 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
|
|
186085
|
+
* @minLength `1`
|
|
186086
|
+
* @maxLength `2048`
|
|
186087
|
+
* @pattern `^(arn:aws[-a-z0-9]*:kms:[-a-z0-9]*:[0-9]{12}:key/.+)$`
|
|
186088
|
+
*/
|
|
186089
|
+
KmsKeyArn?: string;
|
|
186090
|
+
/**
|
|
186091
|
+
* Defines the server-side encryption type for index encryption configuration. Defaults to the parent vector bucket's encryption settings when unspecified.
|
|
186092
|
+
*/
|
|
186093
|
+
SseType?: "AES256" | "aws:kms";
|
|
186094
|
+
};
|
|
186720
186095
|
/**
|
|
186721
186096
|
* Type definition for `AWS::S3Vectors::Index.MetadataConfiguration`.
|
|
186722
186097
|
* The metadata configuration for the vector index.
|
|
@@ -208532,6 +207907,11 @@ export type TransferConnectorAttributes = {
|
|
|
208532
207907
|
* @pattern `^c-([0-9a-f]{17})$`
|
|
208533
207908
|
*/
|
|
208534
207909
|
ConnectorId: string;
|
|
207910
|
+
/**
|
|
207911
|
+
* Detailed error message when Connector in ERRORED status
|
|
207912
|
+
* @maxLength `2048`
|
|
207913
|
+
*/
|
|
207914
|
+
ErrorMessage: string;
|
|
208535
207915
|
/**
|
|
208536
207916
|
* The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
|
|
208537
207917
|
*/
|
|
@@ -219516,7 +218896,6 @@ export interface ResourceTypes {
|
|
|
219516
218896
|
"AWS::IoTEvents::AlarmModel": IoTEventsAlarmModelProps;
|
|
219517
218897
|
"AWS::IoTEvents::DetectorModel": IoTEventsDetectorModelProps;
|
|
219518
218898
|
"AWS::IoTEvents::Input": IoTEventsInputProps;
|
|
219519
|
-
"AWS::IoTFleetHub::Application": IoTFleetHubApplicationProps;
|
|
219520
218899
|
"AWS::IoTFleetWise::Campaign": IoTFleetWiseCampaignProps;
|
|
219521
218900
|
"AWS::IoTFleetWise::DecoderManifest": IoTFleetWiseDecoderManifestProps;
|
|
219522
218901
|
"AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetProps;
|
|
@@ -219646,8 +219025,6 @@ export interface ResourceTypes {
|
|
|
219646
219025
|
"AWS::Logs::SubscriptionFilter": LogsSubscriptionFilterProps;
|
|
219647
219026
|
"AWS::Logs::Transformer": LogsTransformerProps;
|
|
219648
219027
|
"AWS::LookoutEquipment::InferenceScheduler": LookoutEquipmentInferenceSchedulerProps;
|
|
219649
|
-
"AWS::LookoutMetrics::Alert": LookoutMetricsAlertProps;
|
|
219650
|
-
"AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorProps;
|
|
219651
219028
|
"AWS::LookoutVision::Project": LookoutVisionProjectProps;
|
|
219652
219029
|
"AWS::M2::Application": M2ApplicationProps;
|
|
219653
219030
|
"AWS::M2::Deployment": M2DeploymentProps;
|
|
@@ -219738,6 +219115,7 @@ export interface ResourceTypes {
|
|
|
219738
219115
|
"AWS::NetworkManager::ConnectAttachment": NetworkManagerConnectAttachmentProps;
|
|
219739
219116
|
"AWS::NetworkManager::ConnectPeer": NetworkManagerConnectPeerProps;
|
|
219740
219117
|
"AWS::NetworkManager::CoreNetwork": NetworkManagerCoreNetworkProps;
|
|
219118
|
+
"AWS::NetworkManager::CoreNetworkPrefixListAssociation": NetworkManagerCoreNetworkPrefixListAssociationProps;
|
|
219741
219119
|
"AWS::NetworkManager::CustomerGatewayAssociation": NetworkManagerCustomerGatewayAssociationProps;
|
|
219742
219120
|
"AWS::NetworkManager::Device": NetworkManagerDeviceProps;
|
|
219743
219121
|
"AWS::NetworkManager::DirectConnectGatewayAttachment": NetworkManagerDirectConnectGatewayAttachmentProps;
|
|
@@ -219912,12 +219290,6 @@ export interface ResourceTypes {
|
|
|
219912
219290
|
"AWS::ResourceExplorer2::View": ResourceExplorer2ViewProps;
|
|
219913
219291
|
"AWS::ResourceGroups::Group": ResourceGroupsGroupProps;
|
|
219914
219292
|
"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
219293
|
"AWS::RolesAnywhere::CRL": RolesAnywhereCRLProps;
|
|
219922
219294
|
"AWS::RolesAnywhere::Profile": RolesAnywhereProfileProps;
|
|
219923
219295
|
"AWS::RolesAnywhere::TrustAnchor": RolesAnywhereTrustAnchorProps;
|
|
@@ -220934,7 +220306,6 @@ export interface AttributeTypes {
|
|
|
220934
220306
|
"AWS::IoTAnalytics::Datastore": IoTAnalyticsDatastoreAttributes;
|
|
220935
220307
|
"AWS::IoTAnalytics::Pipeline": IoTAnalyticsPipelineAttributes;
|
|
220936
220308
|
"AWS::IoTCoreDeviceAdvisor::SuiteDefinition": IoTCoreDeviceAdvisorSuiteDefinitionAttributes;
|
|
220937
|
-
"AWS::IoTFleetHub::Application": IoTFleetHubApplicationAttributes;
|
|
220938
220309
|
"AWS::IoTFleetWise::Campaign": IoTFleetWiseCampaignAttributes;
|
|
220939
220310
|
"AWS::IoTFleetWise::DecoderManifest": IoTFleetWiseDecoderManifestAttributes;
|
|
220940
220311
|
"AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetAttributes;
|
|
@@ -221052,8 +220423,6 @@ export interface AttributeTypes {
|
|
|
221052
220423
|
"AWS::Logs::LogGroup": LogsLogGroupAttributes;
|
|
221053
220424
|
"AWS::Logs::QueryDefinition": LogsQueryDefinitionAttributes;
|
|
221054
220425
|
"AWS::LookoutEquipment::InferenceScheduler": LookoutEquipmentInferenceSchedulerAttributes;
|
|
221055
|
-
"AWS::LookoutMetrics::Alert": LookoutMetricsAlertAttributes;
|
|
221056
|
-
"AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorAttributes;
|
|
221057
220426
|
"AWS::LookoutVision::Project": LookoutVisionProjectAttributes;
|
|
221058
220427
|
"AWS::M2::Application": M2ApplicationAttributes;
|
|
221059
220428
|
"AWS::M2::Deployment": M2DeploymentAttributes;
|
|
@@ -221287,12 +220656,6 @@ export interface AttributeTypes {
|
|
|
221287
220656
|
"AWS::ResourceExplorer2::View": ResourceExplorer2ViewAttributes;
|
|
221288
220657
|
"AWS::ResourceGroups::Group": ResourceGroupsGroupAttributes;
|
|
221289
220658
|
"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
220659
|
"AWS::RolesAnywhere::CRL": RolesAnywhereCRLAttributes;
|
|
221297
220660
|
"AWS::RolesAnywhere::Profile": RolesAnywhereProfileAttributes;
|
|
221298
220661
|
"AWS::RolesAnywhere::TrustAnchor": RolesAnywhereTrustAnchorAttributes;
|
|
@@ -222357,7 +221720,6 @@ export declare const ResourceType: {
|
|
|
222357
221720
|
readonly IoTEventsAlarmModel: "AWS::IoTEvents::AlarmModel";
|
|
222358
221721
|
readonly IoTEventsDetectorModel: "AWS::IoTEvents::DetectorModel";
|
|
222359
221722
|
readonly IoTEventsInput: "AWS::IoTEvents::Input";
|
|
222360
|
-
readonly IoTFleetHubApplication: "AWS::IoTFleetHub::Application";
|
|
222361
221723
|
readonly IoTFleetWiseCampaign: "AWS::IoTFleetWise::Campaign";
|
|
222362
221724
|
readonly IoTFleetWiseDecoderManifest: "AWS::IoTFleetWise::DecoderManifest";
|
|
222363
221725
|
readonly IoTFleetWiseFleet: "AWS::IoTFleetWise::Fleet";
|
|
@@ -222487,8 +221849,6 @@ export declare const ResourceType: {
|
|
|
222487
221849
|
readonly LogsSubscriptionFilter: "AWS::Logs::SubscriptionFilter";
|
|
222488
221850
|
readonly LogsTransformer: "AWS::Logs::Transformer";
|
|
222489
221851
|
readonly LookoutEquipmentInferenceScheduler: "AWS::LookoutEquipment::InferenceScheduler";
|
|
222490
|
-
readonly LookoutMetricsAlert: "AWS::LookoutMetrics::Alert";
|
|
222491
|
-
readonly LookoutMetricsAnomalyDetector: "AWS::LookoutMetrics::AnomalyDetector";
|
|
222492
221852
|
readonly LookoutVisionProject: "AWS::LookoutVision::Project";
|
|
222493
221853
|
readonly M2Application: "AWS::M2::Application";
|
|
222494
221854
|
readonly M2Deployment: "AWS::M2::Deployment";
|
|
@@ -222579,6 +221939,7 @@ export declare const ResourceType: {
|
|
|
222579
221939
|
readonly NetworkManagerConnectAttachment: "AWS::NetworkManager::ConnectAttachment";
|
|
222580
221940
|
readonly NetworkManagerConnectPeer: "AWS::NetworkManager::ConnectPeer";
|
|
222581
221941
|
readonly NetworkManagerCoreNetwork: "AWS::NetworkManager::CoreNetwork";
|
|
221942
|
+
readonly NetworkManagerCoreNetworkPrefixListAssociation: "AWS::NetworkManager::CoreNetworkPrefixListAssociation";
|
|
222582
221943
|
readonly NetworkManagerCustomerGatewayAssociation: "AWS::NetworkManager::CustomerGatewayAssociation";
|
|
222583
221944
|
readonly NetworkManagerDevice: "AWS::NetworkManager::Device";
|
|
222584
221945
|
readonly NetworkManagerDirectConnectGatewayAttachment: "AWS::NetworkManager::DirectConnectGatewayAttachment";
|
|
@@ -222753,12 +222114,6 @@ export declare const ResourceType: {
|
|
|
222753
222114
|
readonly ResourceExplorer2View: "AWS::ResourceExplorer2::View";
|
|
222754
222115
|
readonly ResourceGroupsGroup: "AWS::ResourceGroups::Group";
|
|
222755
222116
|
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
222117
|
readonly RolesAnywhereCRL: "AWS::RolesAnywhere::CRL";
|
|
222763
222118
|
readonly RolesAnywhereProfile: "AWS::RolesAnywhere::Profile";
|
|
222764
222119
|
readonly RolesAnywhereTrustAnchor: "AWS::RolesAnywhere::TrustAnchor";
|