@awboost/cfntypes 0.100.52 → 0.100.54

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.
@@ -2134,6 +2134,38 @@ export type ApiGatewayBasePathMappingProps = {
2134
2134
  RestApiId?: string;
2135
2135
  Stage?: string;
2136
2136
  };
2137
+ /**
2138
+ * Resource Type definition for AWS::ApiGateway::BasePathMappingV2
2139
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmappingv2.html}
2140
+ */
2141
+ export type ApiGatewayBasePathMappingV2Props = {
2142
+ /**
2143
+ * The base path name that callers of the API must provide in the URL after the domain name.
2144
+ */
2145
+ BasePath?: string;
2146
+ /**
2147
+ * The Arn of an AWS::ApiGateway::DomainNameV2 resource.
2148
+ */
2149
+ DomainNameArn: string;
2150
+ /**
2151
+ * The ID of the API.
2152
+ */
2153
+ RestApiId: string;
2154
+ /**
2155
+ * The name of the API's stage.
2156
+ */
2157
+ Stage?: string;
2158
+ };
2159
+ /**
2160
+ * Attribute type definition for `AWS::ApiGateway::BasePathMappingV2`.
2161
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmappingv2.html#aws-resource-apigateway-basepathmappingv2-return-values}
2162
+ */
2163
+ export type ApiGatewayBasePathMappingV2Attributes = {
2164
+ /**
2165
+ * Amazon Resource Name (ARN) of the resource.
2166
+ */
2167
+ BasePathMappingArn: string;
2168
+ };
2137
2169
  /**
2138
2170
  * The ``AWS::ApiGateway::ClientCertificate`` resource creates a client certificate that API Gateway uses to configure client-side SSL authentication for sending requests to the integration endpoint.
2139
2171
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html}
@@ -2426,6 +2458,85 @@ export type ApiGatewayDomainNameTag = {
2426
2458
  Key?: string;
2427
2459
  Value?: string;
2428
2460
  };
2461
+ /**
2462
+ * Resource Type definition for AWS::ApiGateway::DomainNameAccessAssociation.
2463
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html}
2464
+ */
2465
+ export type ApiGatewayDomainNameAccessAssociationProps = {
2466
+ /**
2467
+ * The source of the domain name access association resource.
2468
+ */
2469
+ AccessAssociationSource: string;
2470
+ /**
2471
+ * The source type of the domain name access association resource.
2472
+ */
2473
+ AccessAssociationSourceType: "VPCE";
2474
+ /**
2475
+ * The amazon resource name (ARN) of the domain name resource.
2476
+ */
2477
+ DomainNameArn: string;
2478
+ /**
2479
+ * An array of arbitrary tags (key-value pairs) to associate with the domainname access association.
2480
+ */
2481
+ Tags?: ApiGatewayDomainNameAccessAssociationTag[];
2482
+ };
2483
+ /**
2484
+ * Attribute type definition for `AWS::ApiGateway::DomainNameAccessAssociation`.
2485
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html#aws-resource-apigateway-domainnameaccessassociation-return-values}
2486
+ */
2487
+ export type ApiGatewayDomainNameAccessAssociationAttributes = {
2488
+ /**
2489
+ * The amazon resource name (ARN) of the domain name access association resource.
2490
+ */
2491
+ DomainNameAccessAssociationArn: string;
2492
+ };
2493
+ /**
2494
+ * Type definition for `AWS::ApiGateway::DomainNameAccessAssociation.Tag`.
2495
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainnameaccessassociation-tag.html}
2496
+ */
2497
+ export type ApiGatewayDomainNameAccessAssociationTag = {
2498
+ Key: string;
2499
+ Value: string;
2500
+ };
2501
+ /**
2502
+ * Resource Type definition for AWS::ApiGateway::DomainNameV2.
2503
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnamev2.html}
2504
+ */
2505
+ export type ApiGatewayDomainNameV2Props = {
2506
+ CertificateArn?: string;
2507
+ DomainName?: string;
2508
+ EndpointConfiguration?: ApiGatewayDomainNameV2EndpointConfiguration;
2509
+ ManagementPolicy?: Record<string, any> | string;
2510
+ Policy?: Record<string, any> | string;
2511
+ SecurityPolicy?: string;
2512
+ Tags?: ApiGatewayDomainNameV2Tag[];
2513
+ };
2514
+ /**
2515
+ * Attribute type definition for `AWS::ApiGateway::DomainNameV2`.
2516
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnamev2.html#aws-resource-apigateway-domainnamev2-return-values}
2517
+ */
2518
+ export type ApiGatewayDomainNameV2Attributes = {
2519
+ /**
2520
+ * The amazon resource name (ARN) of the domain name resource.
2521
+ */
2522
+ DomainNameArn: string;
2523
+ DomainNameId: string;
2524
+ };
2525
+ /**
2526
+ * Type definition for `AWS::ApiGateway::DomainNameV2.EndpointConfiguration`.
2527
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainnamev2-endpointconfiguration.html}
2528
+ */
2529
+ export type ApiGatewayDomainNameV2EndpointConfiguration = {
2530
+ Types?: string[];
2531
+ };
2532
+ /**
2533
+ * Type definition for `AWS::ApiGateway::DomainNameV2.Tag`.
2534
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainnamev2-tag.html}
2535
+ */
2536
+ export type ApiGatewayDomainNameV2Tag = {
2537
+ Key?: string;
2538
+ Value?: string;
2539
+ };
2429
2540
  /**
2430
2541
  * The ``AWS::ApiGateway::GatewayResponse`` resource creates a gateway response for your API. For more information, see [API Gateway Responses](https://docs.aws.amazon.com/apigateway/latest/developerguide/customize-gateway-responses.html#api-gateway-gatewayResponse-definition) in the *API Gateway Developer Guide*.
2431
2542
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html}
@@ -6780,6 +6891,7 @@ export type ApplicationAutoScalingScalingPolicyProps = {
6780
6891
  ``StepScaling``—Not supported for DynamoDB, Amazon Comprehend, Lambda, Amazon Keyspaces, Amazon MSK, Amazon ElastiCache, or Neptune.
6781
6892
  */
6782
6893
  PolicyType: string;
6894
+ PredictiveScalingPolicyConfiguration?: ApplicationAutoScalingScalingPolicyPredictiveScalingPolicyConfiguration;
6783
6895
  /**
6784
6896
  * The identifier of the resource associated with the scaling policy. This string consists of the resource type and unique identifier.
6785
6897
  + ECS service - The resource type is ``service`` and the unique identifier is the cluster name and service name. Example: ``service/my-cluster/my-service``.
@@ -6933,6 +7045,151 @@ export type ApplicationAutoScalingScalingPolicyPredefinedMetricSpecification = {
6933
7045
  */
6934
7046
  ResourceLabel?: string;
6935
7047
  };
7048
+ /**
7049
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingCustomizedCapacityMetric`.
7050
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingcustomizedcapacitymetric.html}
7051
+ */
7052
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedCapacityMetric = {
7053
+ MetricDataQueries: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDataQuery[];
7054
+ };
7055
+ /**
7056
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingCustomizedLoadMetric`.
7057
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingcustomizedloadmetric.html}
7058
+ */
7059
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedLoadMetric = {
7060
+ MetricDataQueries: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDataQuery[];
7061
+ };
7062
+ /**
7063
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingCustomizedScalingMetric`.
7064
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingcustomizedscalingmetric.html}
7065
+ */
7066
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedScalingMetric = {
7067
+ MetricDataQueries: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDataQuery[];
7068
+ };
7069
+ /**
7070
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetric`.
7071
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetric.html}
7072
+ */
7073
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetric = {
7074
+ /**
7075
+ * The dimensions for the metric.
7076
+ */
7077
+ Dimensions?: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDimension[];
7078
+ /**
7079
+ * The name of the metric.
7080
+ */
7081
+ MetricName?: string;
7082
+ /**
7083
+ * The namespace of the metric.
7084
+ */
7085
+ Namespace?: string;
7086
+ };
7087
+ /**
7088
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricDataQuery`.
7089
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricdataquery.html}
7090
+ */
7091
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDataQuery = {
7092
+ /**
7093
+ * The math expression to perform on the returned data, if this object is performing a math expression.
7094
+ */
7095
+ Expression?: string;
7096
+ /**
7097
+ * A short name that identifies the object's results in the response.
7098
+ */
7099
+ Id?: string;
7100
+ /**
7101
+ * A human-readable label for this metric or expression. This is especially useful if this is a math expression, so that you know what the value represents.
7102
+ */
7103
+ Label?: string;
7104
+ /**
7105
+ * Information about the metric data to return.
7106
+ */
7107
+ MetricStat?: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricStat;
7108
+ /**
7109
+ * Indicates whether to return the timestamps and raw data values of this metric.
7110
+ */
7111
+ ReturnData?: boolean;
7112
+ };
7113
+ /**
7114
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricDimension`.
7115
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricdimension.html}
7116
+ */
7117
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDimension = {
7118
+ /**
7119
+ * The name of the dimension.
7120
+ */
7121
+ Name?: string;
7122
+ /**
7123
+ * The value of the dimension.
7124
+ */
7125
+ Value?: string;
7126
+ };
7127
+ /**
7128
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricSpecification`.
7129
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricspecification.html}
7130
+ */
7131
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricSpecification = {
7132
+ CustomizedCapacityMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedCapacityMetric;
7133
+ CustomizedLoadMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedLoadMetric;
7134
+ CustomizedScalingMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedScalingMetric;
7135
+ PredefinedLoadMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedLoadMetric;
7136
+ PredefinedMetricPairSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedMetricPair;
7137
+ PredefinedScalingMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedScalingMetric;
7138
+ TargetValue: number;
7139
+ };
7140
+ /**
7141
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricStat`.
7142
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricstat.html}
7143
+ */
7144
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricStat = {
7145
+ /**
7146
+ * The CloudWatch metric to return, including the metric name, namespace, and dimensions.
7147
+ */
7148
+ Metric?: ApplicationAutoScalingScalingPolicyPredictiveScalingMetric;
7149
+ /**
7150
+ * The statistic to return. It can include any CloudWatch statistic or extended statistic.
7151
+ */
7152
+ Stat?: string;
7153
+ /**
7154
+ * The unit to use for the returned data points.
7155
+ */
7156
+ Unit?: string;
7157
+ };
7158
+ /**
7159
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPolicyConfiguration`.
7160
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpolicyconfiguration.html}
7161
+ */
7162
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingPolicyConfiguration = {
7163
+ MaxCapacityBreachBehavior?: string;
7164
+ MaxCapacityBuffer?: number;
7165
+ MetricSpecifications: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricSpecification[];
7166
+ Mode?: string;
7167
+ SchedulingBufferTime?: number;
7168
+ };
7169
+ /**
7170
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPredefinedLoadMetric`.
7171
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpredefinedloadmetric.html}
7172
+ */
7173
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedLoadMetric = {
7174
+ PredefinedMetricType: string;
7175
+ ResourceLabel?: string;
7176
+ };
7177
+ /**
7178
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPredefinedMetricPair`.
7179
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpredefinedmetricpair.html}
7180
+ */
7181
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedMetricPair = {
7182
+ PredefinedMetricType: string;
7183
+ ResourceLabel?: string;
7184
+ };
7185
+ /**
7186
+ * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPredefinedScalingMetric`.
7187
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpredefinedscalingmetric.html}
7188
+ */
7189
+ export type ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedScalingMetric = {
7190
+ PredefinedMetricType: string;
7191
+ ResourceLabel?: string;
7192
+ };
6936
7193
  /**
6937
7194
  * Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.StepAdjustment`.
6938
7195
  * ``StepAdjustment`` specifies a step adjustment for the ``StepAdjustments`` property of the [AWS::ApplicationAutoScaling::ScalingPolicy StepScalingPolicyConfiguration](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html) property type.
@@ -13219,6 +13476,7 @@ export type AutoScalingAutoScalingGroupProps = {
13219
13476
  * Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 notifies that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see [Use Capacity Rebalancing to handle Amazon EC2 Spot Interruptions](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html) in the in the *Amazon EC2 Auto Scaling User Guide*.
13220
13477
  */
13221
13478
  CapacityRebalance?: boolean;
13479
+ CapacityReservationSpecification?: AutoScalingAutoScalingGroupCapacityReservationSpecification;
13222
13480
  /**
13223
13481
  * Reserved.
13224
13482
  */
@@ -13428,6 +13686,22 @@ export type AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest = {
13428
13686
  export type AutoScalingAutoScalingGroupBaselinePerformanceFactorsRequest = {
13429
13687
  Cpu?: AutoScalingAutoScalingGroupCpuPerformanceFactorRequest;
13430
13688
  };
13689
+ /**
13690
+ * Type definition for `AWS::AutoScaling::AutoScalingGroup.CapacityReservationSpecification`.
13691
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-capacityreservationspecification.html}
13692
+ */
13693
+ export type AutoScalingAutoScalingGroupCapacityReservationSpecification = {
13694
+ CapacityReservationPreference: string;
13695
+ CapacityReservationTarget?: AutoScalingAutoScalingGroupCapacityReservationTarget;
13696
+ };
13697
+ /**
13698
+ * Type definition for `AWS::AutoScaling::AutoScalingGroup.CapacityReservationTarget`.
13699
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-capacityreservationtarget.html}
13700
+ */
13701
+ export type AutoScalingAutoScalingGroupCapacityReservationTarget = {
13702
+ CapacityReservationIds?: string[];
13703
+ CapacityReservationResourceGroupArns?: string[];
13704
+ };
13431
13705
  /**
13432
13706
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.CpuPerformanceFactorRequest`.
13433
13707
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-cpuperformancefactorrequest.html}
@@ -14305,6 +14579,7 @@ export type AutoScalingScalingPolicyCustomizedMetricSpecification = {
14305
14579
  MetricName?: string;
14306
14580
  Metrics?: AutoScalingScalingPolicyTargetTrackingMetricDataQuery[];
14307
14581
  Namespace?: string;
14582
+ Period?: number;
14308
14583
  Statistic?: string;
14309
14584
  Unit?: string;
14310
14585
  };
@@ -14450,6 +14725,7 @@ export type AutoScalingScalingPolicyTargetTrackingMetricDataQuery = {
14450
14725
  Id: string;
14451
14726
  Label?: string;
14452
14727
  MetricStat?: AutoScalingScalingPolicyTargetTrackingMetricStat;
14728
+ Period?: number;
14453
14729
  ReturnData?: boolean;
14454
14730
  };
14455
14731
  /**
@@ -14458,6 +14734,7 @@ export type AutoScalingScalingPolicyTargetTrackingMetricDataQuery = {
14458
14734
  */
14459
14735
  export type AutoScalingScalingPolicyTargetTrackingMetricStat = {
14460
14736
  Metric: AutoScalingScalingPolicyMetric;
14737
+ Period?: number;
14461
14738
  Stat: string;
14462
14739
  Unit?: string;
14463
14740
  };
@@ -22186,6 +22463,117 @@ export type CertificateManagerCertificateTag = {
22186
22463
  Key: string;
22187
22464
  Value: string;
22188
22465
  };
22466
+ /**
22467
+ * Definition of AWS::Chatbot::CustomAction Resource Type
22468
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-customaction.html}
22469
+ */
22470
+ export type ChatbotCustomActionProps = {
22471
+ /**
22472
+ * @minLength `1`
22473
+ * @maxLength `64`
22474
+ * @pattern `^[a-zA-Z0-9_-]{1,64}$`
22475
+ */
22476
+ ActionName: string;
22477
+ /**
22478
+ * @minLength `1`
22479
+ * @maxLength `30`
22480
+ * @pattern `^[A-Za-z0-9-_]+$`
22481
+ */
22482
+ AliasName?: string;
22483
+ Attachments?: ChatbotCustomActionCustomActionAttachment[];
22484
+ Definition: ChatbotCustomActionCustomActionDefinition;
22485
+ /**
22486
+ * @minLength `0`
22487
+ * @maxLength `200`
22488
+ */
22489
+ Tags?: ChatbotCustomActionTag[];
22490
+ };
22491
+ /**
22492
+ * Attribute type definition for `AWS::Chatbot::CustomAction`.
22493
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-customaction.html#aws-resource-chatbot-customaction-return-values}
22494
+ */
22495
+ export type ChatbotCustomActionAttributes = {
22496
+ /**
22497
+ * @minLength `1`
22498
+ * @maxLength `1011`
22499
+ * @pattern `^arn:(aws[a-zA-Z-]*)?:chatbot:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:custom-action/[a-zA-Z0-9_-]{1,64}$`
22500
+ */
22501
+ CustomActionArn: string;
22502
+ };
22503
+ /**
22504
+ * Type definition for `AWS::Chatbot::CustomAction.CustomActionAttachment`.
22505
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachment.html}
22506
+ */
22507
+ export type ChatbotCustomActionCustomActionAttachment = {
22508
+ /**
22509
+ * @minLength `1`
22510
+ * @maxLength `50`
22511
+ * @pattern `^[\S\s]+$`
22512
+ */
22513
+ ButtonText?: string;
22514
+ /**
22515
+ * @minLength `1`
22516
+ * @maxLength `5`
22517
+ */
22518
+ Criteria?: ChatbotCustomActionCustomActionAttachmentCriteria[];
22519
+ /**
22520
+ * @minLength `1`
22521
+ * @maxLength `100`
22522
+ * @pattern `^[a-zA-Z0-9-]+$`
22523
+ */
22524
+ NotificationType?: string;
22525
+ Variables?: ChatbotCustomActionCustomActionAttachmentVariables;
22526
+ };
22527
+ /**
22528
+ * Type definition for `AWS::Chatbot::CustomAction.CustomActionAttachmentCriteria`.
22529
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachmentcriteria.html}
22530
+ */
22531
+ export type ChatbotCustomActionCustomActionAttachmentCriteria = {
22532
+ Operator: ChatbotCustomActionCustomActionAttachmentCriteriaOperator;
22533
+ /**
22534
+ * @minLength `0`
22535
+ * @maxLength `50`
22536
+ */
22537
+ Value?: string;
22538
+ VariableName: string;
22539
+ };
22540
+ /**
22541
+ * Type definition for `AWS::Chatbot::CustomAction.CustomActionAttachmentCriteriaOperator`.
22542
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachmentcriteriaoperator.html}
22543
+ */
22544
+ export type ChatbotCustomActionCustomActionAttachmentCriteriaOperator = "HAS_VALUE" | "EQUALS";
22545
+ /**
22546
+ * Type definition for `AWS::Chatbot::CustomAction.CustomActionAttachmentVariables`.
22547
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactionattachmentvariables.html}
22548
+ */
22549
+ export type ChatbotCustomActionCustomActionAttachmentVariables = Record<string, string>;
22550
+ /**
22551
+ * Type definition for `AWS::Chatbot::CustomAction.CustomActionDefinition`.
22552
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-customactiondefinition.html}
22553
+ */
22554
+ export type ChatbotCustomActionCustomActionDefinition = {
22555
+ /**
22556
+ * @minLength `1`
22557
+ * @maxLength `100`
22558
+ */
22559
+ CommandText: string;
22560
+ };
22561
+ /**
22562
+ * Type definition for `AWS::Chatbot::CustomAction.Tag`.
22563
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-customaction-tag.html}
22564
+ */
22565
+ export type ChatbotCustomActionTag = {
22566
+ /**
22567
+ * @minLength `1`
22568
+ * @maxLength `128`
22569
+ */
22570
+ Key: string;
22571
+ /**
22572
+ * @minLength `0`
22573
+ * @maxLength `256`
22574
+ */
22575
+ Value: string;
22576
+ };
22189
22577
  /**
22190
22578
  * Resource schema for AWS::Chatbot::MicrosoftTeamsChannelConfiguration.
22191
22579
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-microsoftteamschannelconfiguration.html}
@@ -22198,6 +22586,10 @@ export type ChatbotMicrosoftTeamsChannelConfigurationProps = {
22198
22586
  * @pattern `^[A-Za-z0-9-_]+$`
22199
22587
  */
22200
22588
  ConfigurationName: string;
22589
+ /**
22590
+ * ARNs of Custom Actions to associate with notifications in the provided chat channel.
22591
+ */
22592
+ CustomizationResourceArns?: string[];
22201
22593
  /**
22202
22594
  * The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
22203
22595
  */
@@ -22277,6 +22669,10 @@ export type ChatbotSlackChannelConfigurationProps = {
22277
22669
  * @pattern `^[A-Za-z0-9-_]+$`
22278
22670
  */
22279
22671
  ConfigurationName: string;
22672
+ /**
22673
+ * ARNs of Custom Actions to associate with notifications in the provided chat channel.
22674
+ */
22675
+ CustomizationResourceArns?: string[];
22280
22676
  /**
22281
22677
  * The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy is applied as a default if this is not set.
22282
22678
  */
@@ -24893,10 +25289,19 @@ export type CloudFormationWaitConditionHandleAttributes = {
24893
25289
  Id: string;
24894
25290
  };
24895
25291
  /**
24896
- * Resource Type definition for AWS::CloudFront::CachePolicy
25292
+ * Resource type definition for `AWS::CloudFront::CachePolicy`.
25293
+ * A cache policy.
25294
+ When it's attached to a cache behavior, the cache policy determines the following:
25295
+ + The values that CloudFront includes in the cache key. These values can include HTTP headers, cookies, and URL query strings. CloudFront uses the cache key to find an object in its cache that it can return to the viewer.
25296
+ + The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache.
25297
+
25298
+ The headers, cookies, and query strings that are included in the cache key are also included in requests that CloudFront sends to the origin. CloudFront sends a request when it can't find a valid object in its cache that matches the request's cache key. If you want to send values to the origin but *not* include them in the cache key, use ``OriginRequestPolicy``.
24897
25299
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cachepolicy.html}
24898
25300
  */
24899
25301
  export type CloudFrontCachePolicyProps = {
25302
+ /**
25303
+ * The cache policy configuration.
25304
+ */
24900
25305
  CachePolicyConfig: CloudFrontCachePolicyCachePolicyConfig;
24901
25306
  };
24902
25307
  /**
@@ -24909,74 +25314,156 @@ export type CloudFrontCachePolicyAttributes = {
24909
25314
  };
24910
25315
  /**
24911
25316
  * Type definition for `AWS::CloudFront::CachePolicy.CachePolicyConfig`.
25317
+ * A cache policy configuration.
25318
+ This configuration determines the following:
25319
+ + The values that CloudFront includes in the cache key. These values can include HTTP headers, cookies, and URL query strings. CloudFront uses the cache key to find an object in its cache that it can return to the viewer.
25320
+ + The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache.
25321
+
25322
+ The headers, cookies, and query strings that are included in the cache key are also included in requests that CloudFront sends to the origin. CloudFront sends a request when it can't find a valid object in its cache that matches the request's cache key. If you want to send values to the origin but *not* include them in the cache key, use ``OriginRequestPolicy``.
24912
25323
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-cachepolicyconfig.html}
24913
25324
  */
24914
25325
  export type CloudFrontCachePolicyCachePolicyConfig = {
24915
- Comment?: string;
24916
25326
  /**
24917
- * @min `0`
25327
+ * A comment to describe the cache policy. The comment cannot be longer than 128 characters.
24918
25328
  */
25329
+ Comment?: string;
25330
+ /**
25331
+ * The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object's time to live (TTL) only when the origin does *not* send ``Cache-Control`` or ``Expires`` headers with the object. For more information, see [Managing How Long Content Stays in an Edge Cache (Expiration)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html) in the *Amazon CloudFront Developer Guide*.
25332
+ The default value for this field is 86400 seconds (one day). If the value of ``MinTTL`` is more than 86400 seconds, then the default value for this field is the same as the value of ``MinTTL``.
25333
+ * @min `0`
25334
+ */
24919
25335
  DefaultTTL: number;
24920
25336
  /**
24921
- * @min `0`
24922
- */
25337
+ * The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends ``Cache-Control`` or ``Expires`` headers with the object. For more information, see [Managing How Long Content Stays in an Edge Cache (Expiration)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html) in the *Amazon CloudFront Developer Guide*.
25338
+ The default value for this field is 31536000 seconds (one year). If the value of ``MinTTL`` or ``DefaultTTL`` is more than 31536000 seconds, then the default value for this field is the same as the value of ``DefaultTTL``.
25339
+ * @min `0`
25340
+ */
24923
25341
  MaxTTL: number;
24924
25342
  /**
25343
+ * The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see [Managing How Long Content Stays in an Edge Cache (Expiration)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html) in the *Amazon CloudFront Developer Guide*.
24925
25344
  * @min `0`
24926
25345
  */
24927
25346
  MinTTL: number;
25347
+ /**
25348
+ * A unique name to identify the cache policy.
25349
+ */
24928
25350
  Name: string;
25351
+ /**
25352
+ * The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.
25353
+ */
24929
25354
  ParametersInCacheKeyAndForwardedToOrigin: CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin;
24930
25355
  };
24931
25356
  /**
24932
25357
  * Type definition for `AWS::CloudFront::CachePolicy.CookiesConfig`.
25358
+ * An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and in requests that CloudFront sends to the origin.
24933
25359
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-cookiesconfig.html}
24934
25360
  */
24935
25361
  export type CloudFrontCachePolicyCookiesConfig = {
24936
25362
  /**
24937
- * @pattern `^(none|whitelist|allExcept|all)$`
24938
- */
25363
+ * Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
25364
+ + ``none`` – No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any cookies that are listed in an ``OriginRequestPolicy`` *are* included in origin requests.
25365
+ + ``whitelist`` – Only the cookies in viewer requests that are listed in the ``CookieNames`` type are included in the cache key and in requests that CloudFront sends to the origin.
25366
+ + ``allExcept`` – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, *except* for those that are listed in the ``CookieNames`` type, which are not included.
25367
+ + ``all`` – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
25368
+ * @pattern `^(none|whitelist|allExcept|all)$`
25369
+ */
24939
25370
  CookieBehavior: string;
25371
+ /**
25372
+ * Contains a list of cookie names.
25373
+ */
24940
25374
  Cookies?: string[];
24941
25375
  };
24942
25376
  /**
24943
25377
  * Type definition for `AWS::CloudFront::CachePolicy.HeadersConfig`.
25378
+ * An object that determines whether any HTTP headers (and if so, which headers) are included in the cache key and in requests that CloudFront sends to the origin.
24944
25379
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-headersconfig.html}
24945
25380
  */
24946
25381
  export type CloudFrontCachePolicyHeadersConfig = {
24947
25382
  /**
24948
- * @pattern `^(none|whitelist)$`
24949
- */
25383
+ * Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
25384
+ + ``none`` – No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any headers that are listed in an ``OriginRequestPolicy`` *are* included in origin requests.
25385
+ + ``whitelist`` – Only the HTTP headers that are listed in the ``Headers`` type are included in the cache key and in requests that CloudFront sends to the origin.
25386
+ * @pattern `^(none|whitelist)$`
25387
+ */
24950
25388
  HeaderBehavior: string;
25389
+ /**
25390
+ * Contains a list of HTTP header names.
25391
+ */
24951
25392
  Headers?: string[];
24952
25393
  };
24953
25394
  /**
24954
25395
  * Type definition for `AWS::CloudFront::CachePolicy.ParametersInCacheKeyAndForwardedToOrigin`.
25396
+ * This object determines the values that CloudFront includes in the cache key. These values can include HTTP headers, cookies, and URL query strings. CloudFront uses the cache key to find an object in its cache that it can return to the viewer.
25397
+ The headers, cookies, and query strings that are included in the cache key are also included in requests that CloudFront sends to the origin. CloudFront sends a request when it can't find an object in its cache that matches the request's cache key. If you want to send values to the origin but *not* include them in the cache key, use ``OriginRequestPolicy``.
24955
25398
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-parametersincachekeyandforwardedtoorigin.html}
24956
25399
  */
24957
25400
  export type CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin = {
25401
+ /**
25402
+ * An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and in requests that CloudFront sends to the origin.
25403
+ */
24958
25404
  CookiesConfig: CloudFrontCachePolicyCookiesConfig;
25405
+ /**
25406
+ * A flag that can affect whether the ``Accept-Encoding`` HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.
25407
+ This field is related to the ``EnableAcceptEncodingGzip`` field. If one or both of these fields is ``true`` *and* the viewer request includes the ``Accept-Encoding`` header, then CloudFront does the following:
25408
+ + Normalizes the value of the viewer's ``Accept-Encoding`` header
25409
+ + Includes the normalized header in the cache key
25410
+ + Includes the normalized header in the request to the origin, if a request is necessary
25411
+
25412
+ For more information, see [Compression support](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-policy-compressed-objects) in the *Amazon CloudFront Developer Guide*.
25413
+ If you set this value to ``true``, and this cache behavior also has an origin request policy attached, do not include the ``Accept-Encoding`` header in the origin request policy. CloudFront always includes the ``Accept-Encoding`` header in origin requests when the value of this field is ``true``, so including this header in an origin request policy has no effect.
25414
+ If both of these fields are ``false``, then CloudFront treats the ``Accept-Encoding`` header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add ``Accept-Encoding`` to the headers whitelist like any other HTTP header.
25415
+ */
24959
25416
  EnableAcceptEncodingBrotli?: boolean;
25417
+ /**
25418
+ * A flag that can affect whether the ``Accept-Encoding`` HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.
25419
+ This field is related to the ``EnableAcceptEncodingBrotli`` field. If one or both of these fields is ``true`` *and* the viewer request includes the ``Accept-Encoding`` header, then CloudFront does the following:
25420
+ + Normalizes the value of the viewer's ``Accept-Encoding`` header
25421
+ + Includes the normalized header in the cache key
25422
+ + Includes the normalized header in the request to the origin, if a request is necessary
25423
+
25424
+ For more information, see [Compression support](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-policy-compressed-objects) in the *Amazon CloudFront Developer Guide*.
25425
+ If you set this value to ``true``, and this cache behavior also has an origin request policy attached, do not include the ``Accept-Encoding`` header in the origin request policy. CloudFront always includes the ``Accept-Encoding`` header in origin requests when the value of this field is ``true``, so including this header in an origin request policy has no effect.
25426
+ If both of these fields are ``false``, then CloudFront treats the ``Accept-Encoding`` header the same as any other HTTP header in the viewer request. By default, it's not included in the cache key and it's not included in origin requests. In this case, you can manually add ``Accept-Encoding`` to the headers whitelist like any other HTTP header.
25427
+ */
24960
25428
  EnableAcceptEncodingGzip: boolean;
25429
+ /**
25430
+ * An object that determines whether any HTTP headers (and if so, which headers) are included in the cache key and in requests that CloudFront sends to the origin.
25431
+ */
24961
25432
  HeadersConfig: CloudFrontCachePolicyHeadersConfig;
25433
+ /**
25434
+ * An object that determines whether any URL query strings in viewer requests (and if so, which query strings) are included in the cache key and in requests that CloudFront sends to the origin.
25435
+ */
24962
25436
  QueryStringsConfig: CloudFrontCachePolicyQueryStringsConfig;
24963
25437
  };
24964
25438
  /**
24965
25439
  * Type definition for `AWS::CloudFront::CachePolicy.QueryStringsConfig`.
25440
+ * An object that determines whether any URL query strings in viewer requests (and if so, which query strings) are included in the cache key and in requests that CloudFront sends to the origin.
24966
25441
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-querystringsconfig.html}
24967
25442
  */
24968
25443
  export type CloudFrontCachePolicyQueryStringsConfig = {
24969
25444
  /**
24970
- * @pattern `^(none|whitelist|allExcept|all)$`
24971
- */
25445
+ * Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
25446
+ + ``none`` – No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any query strings that are listed in an ``OriginRequestPolicy`` *are* included in origin requests.
25447
+ + ``whitelist`` – Only the query strings in viewer requests that are listed in the ``QueryStringNames`` type are included in the cache key and in requests that CloudFront sends to the origin.
25448
+ + ``allExcept`` – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, *except* those that are listed in the ``QueryStringNames`` type, which are not included.
25449
+ + ``all`` – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
25450
+ * @pattern `^(none|whitelist|allExcept|all)$`
25451
+ */
24972
25452
  QueryStringBehavior: string;
25453
+ /**
25454
+ * Contains a list of query string names.
25455
+ */
24973
25456
  QueryStrings?: string[];
24974
25457
  };
24975
25458
  /**
24976
- * Resource Type definition for AWS::CloudFront::CloudFrontOriginAccessIdentity
25459
+ * Resource type definition for `AWS::CloudFront::CloudFrontOriginAccessIdentity`.
25460
+ * The request to create a new origin access identity (OAI). An origin access identity is a special CloudFront user that you can associate with Amazon S3 origins, so that you can secure all or just some of your Amazon S3 content. For more information, see [Restricting Access to Amazon S3 Content by Using an Origin Access Identity](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html) in the *Amazon CloudFront Developer Guide*.
24977
25461
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html}
24978
25462
  */
24979
25463
  export type CloudFrontCloudFrontOriginAccessIdentityProps = {
25464
+ /**
25465
+ * The current configuration information for the identity.
25466
+ */
24980
25467
  CloudFrontOriginAccessIdentityConfig: CloudFrontCloudFrontOriginAccessIdentityCloudFrontOriginAccessIdentityConfig;
24981
25468
  };
24982
25469
  /**
@@ -24989,16 +25476,26 @@ export type CloudFrontCloudFrontOriginAccessIdentityAttributes = {
24989
25476
  };
24990
25477
  /**
24991
25478
  * Type definition for `AWS::CloudFront::CloudFrontOriginAccessIdentity.CloudFrontOriginAccessIdentityConfig`.
25479
+ * Origin access identity configuration. Send a ``GET`` request to the ``/CloudFront API version/CloudFront/identity ID/config`` resource.
24992
25480
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html}
24993
25481
  */
24994
25482
  export type CloudFrontCloudFrontOriginAccessIdentityCloudFrontOriginAccessIdentityConfig = {
25483
+ /**
25484
+ * A comment to describe the origin access identity. The comment cannot be longer than 128 characters.
25485
+ */
24995
25486
  Comment: string;
24996
25487
  };
24997
25488
  /**
24998
- * Resource Type definition for AWS::CloudFront::ContinuousDeploymentPolicy
25489
+ * Resource type definition for `AWS::CloudFront::ContinuousDeploymentPolicy`.
25490
+ * Creates a continuous deployment policy that routes a subset of production traffic from a primary distribution to a staging distribution.
25491
+ After you create and update a staging distribution, you can use a continuous deployment policy to incrementally move traffic to the staging distribution. This enables you to test changes to a distribution's configuration before moving all of your production traffic to the new configuration.
25492
+ For more information, see [Using CloudFront continuous deployment to safely test CDN configuration changes](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/continuous-deployment.html) in the *Amazon CloudFront Developer Guide*.
24999
25493
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-continuousdeploymentpolicy.html}
25000
25494
  */
25001
25495
  export type CloudFrontContinuousDeploymentPolicyProps = {
25496
+ /**
25497
+ * Contains the configuration for a continuous deployment policy.
25498
+ */
25002
25499
  ContinuousDeploymentPolicyConfig: CloudFrontContinuousDeploymentPolicyContinuousDeploymentPolicyConfig;
25003
25500
  };
25004
25501
  /**
@@ -25011,10 +25508,17 @@ export type CloudFrontContinuousDeploymentPolicyAttributes = {
25011
25508
  };
25012
25509
  /**
25013
25510
  * Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.ContinuousDeploymentPolicyConfig`.
25511
+ * Contains the configuration for a continuous deployment policy.
25014
25512
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-continuousdeploymentpolicyconfig.html}
25015
25513
  */
25016
25514
  export type CloudFrontContinuousDeploymentPolicyContinuousDeploymentPolicyConfig = {
25515
+ /**
25516
+ * A Boolean that indicates whether this continuous deployment policy is enabled (in effect). When this value is ``true``, this policy is enabled and in effect. When this value is ``false``, this policy is not enabled and has no effect.
25517
+ */
25017
25518
  Enabled: boolean;
25519
+ /**
25520
+ * This configuration determines which HTTP requests are sent to the staging distribution. If the HTTP request contains a header and value that matches what you specify here, the request is sent to the staging distribution. Otherwise the request is sent to the primary distribution.
25521
+ */
25018
25522
  SingleHeaderPolicyConfig?: {
25019
25523
  /**
25020
25524
  * @minLength `1`
@@ -25027,7 +25531,13 @@ export type CloudFrontContinuousDeploymentPolicyContinuousDeploymentPolicyConfig
25027
25531
  */
25028
25532
  Value: string;
25029
25533
  };
25534
+ /**
25535
+ * This configuration determines the percentage of HTTP requests that are sent to the staging distribution.
25536
+ */
25030
25537
  SingleWeightPolicyConfig?: {
25538
+ /**
25539
+ * Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.
25540
+ */
25031
25541
  SessionStickinessConfig?: CloudFrontContinuousDeploymentPolicySessionStickinessConfig;
25032
25542
  /**
25033
25543
  * @min `0`
@@ -25036,23 +25546,33 @@ export type CloudFrontContinuousDeploymentPolicyContinuousDeploymentPolicyConfig
25036
25546
  Weight: number;
25037
25547
  };
25038
25548
  /**
25549
+ * The CloudFront domain name of the staging distribution. For example: ``d111111abcdef8.cloudfront.net``.
25039
25550
  * @minLength `1`
25040
25551
  */
25041
25552
  StagingDistributionDnsNames: string[];
25553
+ /**
25554
+ * Contains the parameters for routing production traffic from your primary to staging distributions.
25555
+ */
25042
25556
  TrafficConfig?: CloudFrontContinuousDeploymentPolicyTrafficConfig;
25557
+ /**
25558
+ * The type of traffic configuration.
25559
+ */
25043
25560
  Type?: "SingleWeight" | "SingleHeader";
25044
25561
  };
25045
25562
  /**
25046
25563
  * Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.SessionStickinessConfig`.
25564
+ * Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.
25047
25565
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-sessionstickinessconfig.html}
25048
25566
  */
25049
25567
  export type CloudFrontContinuousDeploymentPolicySessionStickinessConfig = {
25050
25568
  /**
25569
+ * The amount of time after which you want sessions to cease if no requests are received. Allowed values are 300–3600 seconds (5–60 minutes).
25051
25570
  * @min `300`
25052
25571
  * @max `3600`
25053
25572
  */
25054
25573
  IdleTTL: number;
25055
25574
  /**
25575
+ * The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes).
25056
25576
  * @min `300`
25057
25577
  * @max `3600`
25058
25578
  */
@@ -25060,15 +25580,18 @@ export type CloudFrontContinuousDeploymentPolicySessionStickinessConfig = {
25060
25580
  };
25061
25581
  /**
25062
25582
  * Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.SingleHeaderConfig`.
25583
+ * Determines which HTTP requests are sent to the staging distribution.
25063
25584
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-singleheaderconfig.html}
25064
25585
  */
25065
25586
  export type CloudFrontContinuousDeploymentPolicySingleHeaderConfig = {
25066
25587
  /**
25588
+ * The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix ``aws-cf-cd-``.
25067
25589
  * @minLength `1`
25068
25590
  * @maxLength `256`
25069
25591
  */
25070
25592
  Header: string;
25071
25593
  /**
25594
+ * The request header value.
25072
25595
  * @minLength `1`
25073
25596
  * @maxLength `1783`
25074
25597
  */
@@ -25076,11 +25599,16 @@ export type CloudFrontContinuousDeploymentPolicySingleHeaderConfig = {
25076
25599
  };
25077
25600
  /**
25078
25601
  * Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.SingleWeightConfig`.
25602
+ * This configuration determines the percentage of HTTP requests that are sent to the staging distribution.
25079
25603
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-singleweightconfig.html}
25080
25604
  */
25081
25605
  export type CloudFrontContinuousDeploymentPolicySingleWeightConfig = {
25606
+ /**
25607
+ * Session stickiness provides the ability to define multiple requests from a single viewer as a single session. This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.
25608
+ */
25082
25609
  SessionStickinessConfig?: CloudFrontContinuousDeploymentPolicySessionStickinessConfig;
25083
25610
  /**
25611
+ * The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and 0.15. For example, a value of 0.10 means 10% of traffic is sent to the staging distribution.
25084
25612
  * @min `0`
25085
25613
  * @max `1`
25086
25614
  */
@@ -25088,11 +25616,21 @@ export type CloudFrontContinuousDeploymentPolicySingleWeightConfig = {
25088
25616
  };
25089
25617
  /**
25090
25618
  * Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.TrafficConfig`.
25619
+ * The traffic configuration of your continuous deployment.
25091
25620
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-trafficconfig.html}
25092
25621
  */
25093
25622
  export type CloudFrontContinuousDeploymentPolicyTrafficConfig = {
25623
+ /**
25624
+ * Determines which HTTP requests are sent to the staging distribution.
25625
+ */
25094
25626
  SingleHeaderConfig?: CloudFrontContinuousDeploymentPolicySingleHeaderConfig;
25627
+ /**
25628
+ * Contains the percentage of traffic to send to the staging distribution.
25629
+ */
25095
25630
  SingleWeightConfig?: CloudFrontContinuousDeploymentPolicySingleWeightConfig;
25631
+ /**
25632
+ * The type of traffic configuration.
25633
+ */
25096
25634
  Type: "SingleWeight" | "SingleHeader";
25097
25635
  };
25098
25636
  /**
@@ -25123,7 +25661,7 @@ export type CloudFrontDistributionAttributes = {
25123
25661
  * A complex type that describes how CloudFront processes requests.
25124
25662
  You must create at least as many cache behaviors (including the default cache behavior) as you have origins if you want CloudFront to serve objects from all of the origins. Each cache behavior specifies the one origin from which you want CloudFront to get objects. If you have two origins and only the default cache behavior, the default cache behavior will cause CloudFront to get objects from one of the origins, but the other origin is never used.
25125
25663
  For the current quota (formerly known as limit) on the number of cache behaviors that you can add to a distribution, see [Quotas](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html) in the *Amazon CloudFront Developer Guide*.
25126
- If you don't want to specify any cache behaviors, include only an empty ``CacheBehaviors`` element. Don't include an empty ``CacheBehavior`` element because this is invalid.
25664
+ If you don't want to specify any cache behaviors, include only an empty ``CacheBehaviors`` element. Don't specify an empty individual ``CacheBehavior`` element, because this is invalid. For more information, see [CacheBehaviors](https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_CacheBehaviors.html).
25127
25665
  To delete all cache behaviors in an existing distribution, update the distribution configuration and include only an empty ``CacheBehaviors`` element.
25128
25666
  To add, change, or remove one or more cache behaviors, update the distribution configuration and specify all of the cache behaviors that you want to include in the updated distribution.
25129
25667
  For more information about cache behaviors, see [Cache Behavior Settings](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesCacheBehavior) in the *Amazon CloudFront Developer Guide*.
@@ -25393,7 +25931,7 @@ export type CloudFrontDistributionDefaultCacheBehavior = {
25393
25931
  */
25394
25932
  ForwardedValues?: CloudFrontDistributionForwardedValues;
25395
25933
  /**
25396
- * A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the ``LIVE`` stage to associate them with a cache behavior.
25934
+ * A list of CloudFront functions that are associated with this cache behavior. Your functions must be published to the ``LIVE`` stage to associate them with a cache behavior.
25397
25935
  */
25398
25936
  FunctionAssociations?: CloudFrontDistributionFunctionAssociation[];
25399
25937
  /**
@@ -25463,6 +26001,10 @@ export type CloudFrontDistributionDistributionConfig = {
25463
26001
  * A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
25464
26002
  */
25465
26003
  Aliases?: string[];
26004
+ /**
26005
+ * An alias for the CF distribution's domain name.
26006
+ This property is legacy. We recommend that you use [Aliases](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-aliases) instead.
26007
+ */
25466
26008
  CNAMEs?: string[];
25467
26009
  /**
25468
26010
  * A complex type that contains zero or more ``CacheBehavior`` elements.
@@ -25484,6 +26026,10 @@ export type CloudFrontDistributionDistributionConfig = {
25484
26026
  For more information about custom error pages, see [Customizing Error Responses](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html) in the *Amazon CloudFront Developer Guide*.
25485
26027
  */
25486
26028
  CustomErrorResponses?: CloudFrontDistributionCustomErrorResponse[];
26029
+ /**
26030
+ * The user-defined HTTP server that serves as the origin for content that CF distributes.
26031
+ This property is legacy. We recommend that you use [Origin](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html) instead.
26032
+ */
25487
26033
  CustomOrigin?: CloudFrontDistributionLegacyCustomOrigin;
25488
26034
  /**
25489
26035
  * A complex type that describes the default cache behavior if you don't specify a ``CacheBehavior`` element or if files don't match any of the values of ``PathPattern`` in ``CacheBehavior`` elements. You must create exactly one default cache behavior.
@@ -25503,7 +26049,7 @@ export type CloudFrontDistributionDistributionConfig = {
25503
26049
  */
25504
26050
  Enabled: boolean;
25505
26051
  /**
25506
- * (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CF. The default value for new distributions is ``http1.1``.
26052
+ * (Optional) Specify the HTTP version(s) that you want viewers to use to communicate with CF. The default value for new distributions is ``http1.1``.
25507
26053
  For viewers and CF to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).
25508
26054
  For viewers and CF to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CF supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see [Connection Migration](https://docs.aws.amazon.com/https://www.rfc-editor.org/rfc/rfc9000.html#name-connection-migration) at RFC 9000. For more information about supported TLSv1.3 ciphers, see [Supported protocols and ciphers between viewers and CloudFront](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/secure-connections-supported-viewer-protocols-ciphers.html).
25509
26055
  */
@@ -25525,12 +26071,14 @@ export type CloudFrontDistributionDistributionConfig = {
25525
26071
  */
25526
26072
  Logging?: CloudFrontDistributionLogging;
25527
26073
  /**
25528
- * A complex type that contains information about origin groups for this distribution.
25529
- */
26074
+ * A complex type that contains information about origin groups for this distribution.
26075
+ Specify a value for either the ``Origins`` or ``OriginGroups`` property.
26076
+ */
25530
26077
  OriginGroups?: CloudFrontDistributionOriginGroups;
25531
26078
  /**
25532
- * A complex type that contains information about origins for this distribution.
25533
- */
26079
+ * A complex type that contains information about origins for this distribution.
26080
+ Specify a value for either the ``Origins`` or ``OriginGroups`` property.
26081
+ */
25534
26082
  Origins?: CloudFrontDistributionOrigin[];
25535
26083
  /**
25536
26084
  * The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify ``PriceClass_All``, CloudFront responds to requests for your objects from all CloudFront edge locations.
@@ -25542,6 +26090,10 @@ export type CloudFrontDistributionDistributionConfig = {
25542
26090
  * A complex type that identifies ways in which you want to restrict distribution of your content.
25543
26091
  */
25544
26092
  Restrictions?: CloudFrontDistributionRestrictions;
26093
+ /**
26094
+ * The origin as an S3 bucket.
26095
+ This property is legacy. We recommend that you use [Origin](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html) instead.
26096
+ */
25545
26097
  S3Origin?: CloudFrontDistributionLegacyS3Origin;
25546
26098
  /**
25547
26099
  * A Boolean that indicates whether this is a staging distribution. When this value is ``true``, this is a staging distribution. When this value is ``false``, this is not a staging distribution.
@@ -25552,7 +26104,7 @@ export type CloudFrontDistributionDistributionConfig = {
25552
26104
  */
25553
26105
  ViewerCertificate?: CloudFrontDistributionViewerCertificate;
25554
26106
  /**
25555
- * A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example ``arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a``. To specify a web ACL created using WAF Classic, use the ACL ID, for example ``473e64fd-f30b-4765-81a0-62ad96dd167a``.
26107
+ * A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example ``arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``. To specify a web ACL created using WAF Classic, use the ACL ID, for example ``a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``.
25556
26108
  WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the [Developer Guide](https://docs.aws.amazon.com/waf/latest/developerguide/what-is-aws-waf.html).
25557
26109
  */
25558
26110
  WebACLId?: string;
@@ -25661,21 +26213,48 @@ export type CloudFrontDistributionLambdaFunctionAssociation = {
25661
26213
  };
25662
26214
  /**
25663
26215
  * Type definition for `AWS::CloudFront::Distribution.LegacyCustomOrigin`.
26216
+ * A custom origin. A custom origin is any origin that is *not* an S3 bucket, with one exception. An S3 bucket that is [configured with static website hosting](https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html) *is* a custom origin.
26217
+ This property is legacy. We recommend that you use [Origin](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html) instead.
25664
26218
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-legacycustomorigin.html}
25665
26219
  */
25666
26220
  export type CloudFrontDistributionLegacyCustomOrigin = {
26221
+ /**
26222
+ * The domain name assigned to your CF distribution.
26223
+ */
25667
26224
  DNSName: string;
26225
+ /**
26226
+ * The HTTP port that CF uses to connect to the origin. Specify the HTTP port that the origin listens on.
26227
+ */
25668
26228
  HTTPPort?: number;
26229
+ /**
26230
+ * The HTTPS port that CF uses to connect to the origin. Specify the HTTPS port that the origin listens on.
26231
+ */
25669
26232
  HTTPSPort?: number;
26233
+ /**
26234
+ * Specifies the protocol (HTTP or HTTPS) that CF uses to connect to the origin.
26235
+ */
25670
26236
  OriginProtocolPolicy: string;
26237
+ /**
26238
+ * The minimum SSL/TLS protocol version that CF uses when communicating with your origin server over HTTPs.
26239
+ For more information, see [Minimum Origin SSL Protocol](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginSSLProtocols) in the *Developer Guide*.
26240
+ */
25671
26241
  OriginSSLProtocols: string[];
25672
26242
  };
25673
26243
  /**
25674
26244
  * Type definition for `AWS::CloudFront::Distribution.LegacyS3Origin`.
26245
+ * The origin as an S3 bucket.
26246
+ This property is legacy. We recommend that you use [Origin](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html) instead.
25675
26247
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-legacys3origin.html}
25676
26248
  */
25677
26249
  export type CloudFrontDistributionLegacyS3Origin = {
26250
+ /**
26251
+ * The domain name assigned to your CF distribution.
26252
+ */
25678
26253
  DNSName: string;
26254
+ /**
26255
+ * The CF origin access identity to associate with the distribution. Use an origin access identity to configure the distribution so that end users can only access objects in an S3 through CF.
26256
+ This property is legacy. We recommend that you use [OriginAccessControl](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-originaccesscontrol.html) instead.
26257
+ */
25679
26258
  OriginAccessIdentity?: string;
25680
26259
  };
25681
26260
  /**
@@ -25887,9 +26466,10 @@ export type CloudFrontDistributionRestrictions = {
25887
26466
  */
25888
26467
  export type CloudFrontDistributionS3OriginConfig = {
25889
26468
  /**
25890
- * The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can *only* access objects in an Amazon S3 bucket through CloudFront. The format of the value is:
25891
- origin-access-identity/cloudfront/*ID-of-origin-access-identity*
25892
- where ``ID-of-origin-access-identity`` is the value that CloudFront returned in the ``ID`` element when you created the origin access identity.
26469
+ * If you're using origin access control (OAC) instead of origin access identity, specify an empty ``OriginAccessIdentity`` element. For more information, see [Restricting access to an](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-origin.html) in the *Amazon CloudFront Developer Guide*.
26470
+ The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can *only* access objects in an Amazon S3 bucket through CloudFront. The format of the value is:
26471
+ ``origin-access-identity/cloudfront/ID-of-origin-access-identity``
26472
+ The ``ID-of-origin-access-identity`` is the value that CloudFront returned in the ``ID`` element when you created the origin access identity.
25893
26473
  If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty ``OriginAccessIdentity`` element.
25894
26474
  To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty ``OriginAccessIdentity`` element.
25895
26475
  To replace the origin access identity, update the distribution configuration and specify the new origin access identity.
@@ -25992,13 +26572,29 @@ export type CloudFrontDistributionViewerCertificate = {
25992
26572
  SslSupportMethod?: string;
25993
26573
  };
25994
26574
  /**
25995
- * Resource Type definition for AWS::CloudFront::Function
26575
+ * Creates a CF function.
26576
+ To create a function, you provide the function code and some configuration information about the function. The response contains an Amazon Resource Name (ARN) that uniquely identifies the function, and the function’s stage.
26577
+ By default, when you create a function, it’s in the ``DEVELOPMENT`` stage. In this stage, you can [test the function](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/test-function.html) in the CF console (or with ``TestFunction`` in the CF API).
26578
+ When you’re ready to use your function with a CF distribution, publish the function to the ``LIVE`` stage. You can do this in the CF console, with ``PublishFunction`` in the CF API, or by updating the ``AWS::CloudFront::Function`` resource with the ``AutoPublish`` property set to ``true``. When the function is published to the ``LIVE`` stage, you can attach it to a distribution’s cache behavior, using the function’s ARN.
26579
+ To automatically publish the function to the ``LIVE`` stage when it’s created, set the ``AutoPublish`` property to ``true``.
25996
26580
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-function.html}
25997
26581
  */
25998
26582
  export type CloudFrontFunctionProps = {
26583
+ /**
26584
+ * A flag that determines whether to automatically publish the function to the ``LIVE`` stage when it’s created. To automatically publish to the ``LIVE`` stage, set this property to ``true``.
26585
+ */
25999
26586
  AutoPublish?: boolean;
26587
+ /**
26588
+ * The function code. For more information about writing a CloudFront function, see [Writing function code for CloudFront Functions](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/writing-function-code.html) in the *Amazon CloudFront Developer Guide*.
26589
+ */
26000
26590
  FunctionCode: string;
26591
+ /**
26592
+ * Contains configuration information about a CloudFront function.
26593
+ */
26001
26594
  FunctionConfig: CloudFrontFunctionFunctionConfig;
26595
+ /**
26596
+ * A name to identify the function.
26597
+ */
26002
26598
  Name: string;
26003
26599
  };
26004
26600
  /**
@@ -26007,32 +26603,57 @@ export type CloudFrontFunctionProps = {
26007
26603
  */
26008
26604
  export type CloudFrontFunctionAttributes = {
26009
26605
  FunctionARN: string;
26606
+ /**
26607
+ * Contains metadata about a CloudFront function.
26608
+ */
26010
26609
  FunctionMetadata: {
26610
+ /**
26611
+ * The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.
26612
+ */
26011
26613
  FunctionARN: string;
26012
26614
  };
26013
26615
  Stage: string;
26014
26616
  };
26015
26617
  /**
26016
26618
  * Type definition for `AWS::CloudFront::Function.FunctionConfig`.
26619
+ * Contains configuration information about a CloudFront function.
26017
26620
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionconfig.html}
26018
26621
  */
26019
26622
  export type CloudFrontFunctionFunctionConfig = {
26623
+ /**
26624
+ * A comment to describe the function.
26625
+ */
26020
26626
  Comment: string;
26627
+ /**
26628
+ * The configuration for the key value store associations.
26629
+ */
26021
26630
  KeyValueStoreAssociations?: CloudFrontFunctionKeyValueStoreAssociation[];
26631
+ /**
26632
+ * The function's runtime environment version.
26633
+ */
26022
26634
  Runtime: string;
26023
26635
  };
26024
26636
  /**
26025
26637
  * Type definition for `AWS::CloudFront::Function.KeyValueStoreAssociation`.
26638
+ * The key value store association.
26026
26639
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-keyvaluestoreassociation.html}
26027
26640
  */
26028
26641
  export type CloudFrontFunctionKeyValueStoreAssociation = {
26642
+ /**
26643
+ * The Amazon Resource Name (ARN) of the key value store association.
26644
+ */
26029
26645
  KeyValueStoreARN: string;
26030
26646
  };
26031
26647
  /**
26032
- * Resource Type definition for AWS::CloudFront::KeyGroup
26648
+ * Resource type definition for `AWS::CloudFront::KeyGroup`.
26649
+ * A key group.
26650
+ A key group contains a list of public keys that you can use with [CloudFront signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html).
26033
26651
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keygroup.html}
26034
26652
  */
26035
26653
  export type CloudFrontKeyGroupProps = {
26654
+ /**
26655
+ * The key group configuration.
26656
+ */
26036
26657
  KeyGroupConfig: CloudFrontKeyGroupKeyGroupConfig;
26037
26658
  };
26038
26659
  /**
@@ -26045,20 +26666,41 @@ export type CloudFrontKeyGroupAttributes = {
26045
26666
  };
26046
26667
  /**
26047
26668
  * Type definition for `AWS::CloudFront::KeyGroup.KeyGroupConfig`.
26669
+ * A key group configuration.
26670
+ A key group contains a list of public keys that you can use with [CloudFront signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html).
26048
26671
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-keygroup-keygroupconfig.html}
26049
26672
  */
26050
26673
  export type CloudFrontKeyGroupKeyGroupConfig = {
26674
+ /**
26675
+ * A comment to describe the key group. The comment cannot be longer than 128 characters.
26676
+ */
26051
26677
  Comment?: string;
26678
+ /**
26679
+ * A list of the identifiers of the public keys in the key group.
26680
+ */
26052
26681
  Items: string[];
26682
+ /**
26683
+ * A name to identify the key group.
26684
+ */
26053
26685
  Name: string;
26054
26686
  };
26055
26687
  /**
26056
- * Resource Type definition for AWS::CloudFront::KeyValueStore
26688
+ * Resource type definition for `AWS::CloudFront::KeyValueStore`.
26689
+ * The key value store. Use this to separate data from function code, allowing you to update data without having to publish a new version of a function. The key value store holds keys and their corresponding values.
26057
26690
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keyvaluestore.html}
26058
26691
  */
26059
26692
  export type CloudFrontKeyValueStoreProps = {
26693
+ /**
26694
+ * A comment for the key value store.
26695
+ */
26060
26696
  Comment?: string;
26697
+ /**
26698
+ * The import source for the key value store.
26699
+ */
26061
26700
  ImportSource?: CloudFrontKeyValueStoreImportSource;
26701
+ /**
26702
+ * The name of the key value store.
26703
+ */
26062
26704
  Name: string;
26063
26705
  };
26064
26706
  /**
@@ -26072,39 +26714,67 @@ export type CloudFrontKeyValueStoreAttributes = {
26072
26714
  };
26073
26715
  /**
26074
26716
  * Type definition for `AWS::CloudFront::KeyValueStore.ImportSource`.
26717
+ * The import source for the key value store.
26075
26718
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-keyvaluestore-importsource.html}
26076
26719
  */
26077
26720
  export type CloudFrontKeyValueStoreImportSource = {
26721
+ /**
26722
+ * The Amazon Resource Name (ARN) of the import source for the key value store.
26723
+ */
26078
26724
  SourceArn: string;
26725
+ /**
26726
+ * The source type of the import source for the key value store.
26727
+ */
26079
26728
  SourceType: string;
26080
26729
  };
26081
26730
  /**
26082
- * Resource Type definition for AWS::CloudFront::MonitoringSubscription
26731
+ * Resource type definition for `AWS::CloudFront::MonitoringSubscription`.
26732
+ * A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution.
26083
26733
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-monitoringsubscription.html}
26084
26734
  */
26085
26735
  export type CloudFrontMonitoringSubscriptionProps = {
26736
+ /**
26737
+ * The ID of the distribution that you are enabling metrics for.
26738
+ */
26086
26739
  DistributionId: string;
26740
+ /**
26741
+ * A subscription configuration for additional CloudWatch metrics.
26742
+ */
26087
26743
  MonitoringSubscription: CloudFrontMonitoringSubscriptionMonitoringSubscription;
26088
26744
  };
26089
26745
  /**
26090
26746
  * Type definition for `AWS::CloudFront::MonitoringSubscription.MonitoringSubscription`.
26747
+ * A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution.
26091
26748
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-monitoringsubscription-monitoringsubscription.html}
26092
26749
  */
26093
26750
  export type CloudFrontMonitoringSubscriptionMonitoringSubscription = {
26751
+ /**
26752
+ * A subscription configuration for additional CloudWatch metrics.
26753
+ */
26094
26754
  RealtimeMetricsSubscriptionConfig?: CloudFrontMonitoringSubscriptionRealtimeMetricsSubscriptionConfig;
26095
26755
  };
26096
26756
  /**
26097
26757
  * Type definition for `AWS::CloudFront::MonitoringSubscription.RealtimeMetricsSubscriptionConfig`.
26758
+ * A subscription configuration for additional CloudWatch metrics.
26098
26759
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-monitoringsubscription-realtimemetricssubscriptionconfig.html}
26099
26760
  */
26100
26761
  export type CloudFrontMonitoringSubscriptionRealtimeMetricsSubscriptionConfig = {
26762
+ /**
26763
+ * A flag that indicates whether additional CloudWatch metrics are enabled for a given CloudFront distribution.
26764
+ */
26101
26765
  RealtimeMetricsSubscriptionStatus: "Enabled" | "Disabled";
26102
26766
  };
26103
26767
  /**
26104
- * Resource Type definition for AWS::CloudFront::OriginAccessControl
26768
+ * Resource type definition for `AWS::CloudFront::OriginAccessControl`.
26769
+ * Creates a new origin access control in CloudFront. After you create an origin access control, you can add it to an origin in a CloudFront distribution so that CloudFront sends authenticated (signed) requests to the origin.
26770
+ This makes it possible to block public access to the origin, allowing viewers (users) to access the origin's content only through CloudFront.
26771
+ For more information about using a CloudFront origin access control, see [Restricting access to an origin](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-origin.html) in the *Amazon CloudFront Developer Guide*.
26105
26772
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-originaccesscontrol.html}
26106
26773
  */
26107
26774
  export type CloudFrontOriginAccessControlProps = {
26775
+ /**
26776
+ * The origin access control.
26777
+ */
26108
26778
  OriginAccessControlConfig: CloudFrontOriginAccessControlOriginAccessControlConfig;
26109
26779
  };
26110
26780
  /**
@@ -26116,29 +26786,55 @@ export type CloudFrontOriginAccessControlAttributes = {
26116
26786
  };
26117
26787
  /**
26118
26788
  * Type definition for `AWS::CloudFront::OriginAccessControl.OriginAccessControlConfig`.
26789
+ * Creates a new origin access control in CloudFront. After you create an origin access control, you can add it to an origin in a CloudFront distribution so that CloudFront sends authenticated (signed) requests to the origin.
26790
+ This makes it possible to block public access to the origin, allowing viewers (users) to access the origin's content only through CloudFront.
26791
+ For more information about using a CloudFront origin access control, see [Restricting access to an origin](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-origin.html) in the *Amazon CloudFront Developer Guide*.
26119
26792
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originaccesscontrol-originaccesscontrolconfig.html}
26120
26793
  */
26121
26794
  export type CloudFrontOriginAccessControlOriginAccessControlConfig = {
26795
+ /**
26796
+ * A description of the origin access control.
26797
+ */
26122
26798
  Description?: string;
26799
+ /**
26800
+ * A name to identify the origin access control. You can specify up to 64 characters.
26801
+ */
26123
26802
  Name: string;
26124
26803
  /**
26804
+ * The type of origin that this origin access control is for.
26125
26805
  * @pattern `^(s3|mediastore|lambda|mediapackagev2)$`
26126
26806
  */
26127
26807
  OriginAccessControlOriginType: string;
26128
26808
  /**
26129
- * @pattern `^(never|no-override|always)$`
26130
- */
26809
+ * Specifies which requests CloudFront signs (adds authentication information to). Specify ``always`` for the most common use case. For more information, see [origin access control advanced settings](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html#oac-advanced-settings) in the *Amazon CloudFront Developer Guide*.
26810
+ This field can have one of the following values:
26811
+ + ``always`` – CloudFront signs all origin requests, overwriting the ``Authorization`` header from the viewer request if one exists.
26812
+ + ``never`` – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control.
26813
+ + ``no-override`` – If the viewer request doesn't contain the ``Authorization`` header, then CloudFront signs the origin request. If the viewer request contains the ``Authorization`` header, then CloudFront doesn't sign the origin request and instead passes along the ``Authorization`` header from the viewer request. *WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to a cache policy for all cache behaviors that use origins associated with this origin access control.*
26814
+ * @pattern `^(never|no-override|always)$`
26815
+ */
26131
26816
  SigningBehavior: string;
26132
26817
  /**
26818
+ * The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is ``sigv4``.
26133
26819
  * @pattern `^(sigv4)$`
26134
26820
  */
26135
26821
  SigningProtocol: string;
26136
26822
  };
26137
26823
  /**
26138
- * Resource Type definition for AWS::CloudFront::OriginRequestPolicy
26824
+ * Resource type definition for `AWS::CloudFront::OriginRequestPolicy`.
26825
+ * An origin request policy.
26826
+ When it's attached to a cache behavior, the origin request policy determines the values that CloudFront includes in requests that it sends to the origin. Each request that CloudFront sends to the origin includes the following:
26827
+ + The request body and the URL path (without the domain name) from the viewer request.
26828
+ + The headers that CloudFront automatically includes in every origin request, including ``Host``, ``User-Agent``, and ``X-Amz-Cf-Id``.
26829
+ + All HTTP headers, cookies, and URL query strings that are specified in the cache policy or the origin request policy. These can include items from the viewer request and, in the case of headers, additional ones that are added by CloudFront.
26830
+
26831
+ CloudFront sends a request when it can't find an object in its cache that matches the request. If you want to send values to the origin and also include them in the cache key, use ``CachePolicy``.
26139
26832
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-originrequestpolicy.html}
26140
26833
  */
26141
26834
  export type CloudFrontOriginRequestPolicyProps = {
26835
+ /**
26836
+ * The origin request policy configuration.
26837
+ */
26142
26838
  OriginRequestPolicyConfig: CloudFrontOriginRequestPolicyOriginRequestPolicyConfig;
26143
26839
  };
26144
26840
  /**
@@ -26151,53 +26847,107 @@ export type CloudFrontOriginRequestPolicyAttributes = {
26151
26847
  };
26152
26848
  /**
26153
26849
  * Type definition for `AWS::CloudFront::OriginRequestPolicy.CookiesConfig`.
26850
+ * An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in requests that CloudFront sends to the origin.
26154
26851
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-cookiesconfig.html}
26155
26852
  */
26156
26853
  export type CloudFrontOriginRequestPolicyCookiesConfig = {
26157
26854
  /**
26158
- * @pattern `^(none|whitelist|all|allExcept)$`
26159
- */
26855
+ * Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
26856
+ + ``none`` – No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any cookies that are listed in a ``CachePolicy`` *are* included in origin requests.
26857
+ + ``whitelist`` – Only the cookies in viewer requests that are listed in the ``CookieNames`` type are included in requests that CloudFront sends to the origin.
26858
+ + ``all`` – All cookies in viewer requests are included in requests that CloudFront sends to the origin.
26859
+ + ``allExcept`` – All cookies in viewer requests are included in requests that CloudFront sends to the origin, *except* for those listed in the ``CookieNames`` type, which are not included.
26860
+ * @pattern `^(none|whitelist|all|allExcept)$`
26861
+ */
26160
26862
  CookieBehavior: string;
26863
+ /**
26864
+ * Contains a list of cookie names.
26865
+ */
26161
26866
  Cookies?: string[];
26162
26867
  };
26163
26868
  /**
26164
26869
  * Type definition for `AWS::CloudFront::OriginRequestPolicy.HeadersConfig`.
26870
+ * An object that determines whether any HTTP headers (and if so, which headers) are included in requests that CloudFront sends to the origin.
26165
26871
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-headersconfig.html}
26166
26872
  */
26167
26873
  export type CloudFrontOriginRequestPolicyHeadersConfig = {
26168
26874
  /**
26169
- * @pattern `^(none|whitelist|allViewer|allViewerAndWhitelistCloudFront|allExcept)$`
26170
- */
26875
+ * Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:
26876
+ + ``none`` – No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any headers that are listed in a ``CachePolicy`` *are* included in origin requests.
26877
+ + ``whitelist`` – Only the HTTP headers that are listed in the ``Headers`` type are included in requests that CloudFront sends to the origin.
26878
+ + ``allViewer`` – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.
26879
+ + ``allViewerAndWhitelistCloudFront`` – All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the ``Headers`` type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.
26880
+ + ``allExcept`` – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, *except* for those listed in the ``Headers`` type, which are not included.
26881
+ * @pattern `^(none|whitelist|allViewer|allViewerAndWhitelistCloudFront|allExcept)$`
26882
+ */
26171
26883
  HeaderBehavior: string;
26884
+ /**
26885
+ * Contains a list of HTTP header names.
26886
+ */
26172
26887
  Headers?: string[];
26173
26888
  };
26174
26889
  /**
26175
26890
  * Type definition for `AWS::CloudFront::OriginRequestPolicy.OriginRequestPolicyConfig`.
26891
+ * An origin request policy configuration.
26892
+ This configuration determines the values that CloudFront includes in requests that it sends to the origin. Each request that CloudFront sends to the origin includes the following:
26893
+ + The request body and the URL path (without the domain name) from the viewer request.
26894
+ + The headers that CloudFront automatically includes in every origin request, including ``Host``, ``User-Agent``, and ``X-Amz-Cf-Id``.
26895
+ + All HTTP headers, cookies, and URL query strings that are specified in the cache policy or the origin request policy. These can include items from the viewer request and, in the case of headers, additional ones that are added by CloudFront.
26896
+
26897
+ CloudFront sends a request when it can't find an object in its cache that matches the request. If you want to send values to the origin and also include them in the cache key, use ``CachePolicy``.
26176
26898
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-originrequestpolicyconfig.html}
26177
26899
  */
26178
26900
  export type CloudFrontOriginRequestPolicyOriginRequestPolicyConfig = {
26901
+ /**
26902
+ * A comment to describe the origin request policy. The comment cannot be longer than 128 characters.
26903
+ */
26179
26904
  Comment?: string;
26905
+ /**
26906
+ * The cookies from viewer requests to include in origin requests.
26907
+ */
26180
26908
  CookiesConfig: CloudFrontOriginRequestPolicyCookiesConfig;
26909
+ /**
26910
+ * The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.
26911
+ */
26181
26912
  HeadersConfig: CloudFrontOriginRequestPolicyHeadersConfig;
26913
+ /**
26914
+ * A unique name to identify the origin request policy.
26915
+ */
26182
26916
  Name: string;
26917
+ /**
26918
+ * The URL query strings from viewer requests to include in origin requests.
26919
+ */
26183
26920
  QueryStringsConfig: CloudFrontOriginRequestPolicyQueryStringsConfig;
26184
26921
  };
26185
26922
  /**
26186
26923
  * Type definition for `AWS::CloudFront::OriginRequestPolicy.QueryStringsConfig`.
26924
+ * An object that determines whether any URL query strings in viewer requests (and if so, which query strings) are included in requests that CloudFront sends to the origin.
26187
26925
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-querystringsconfig.html}
26188
26926
  */
26189
26927
  export type CloudFrontOriginRequestPolicyQueryStringsConfig = {
26190
26928
  /**
26191
- * @pattern `^(none|whitelist|all|allExcept)$`
26192
- */
26929
+ * Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
26930
+ + ``none`` – No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to ``none``, any query strings that are listed in a ``CachePolicy`` *are* included in origin requests.
26931
+ + ``whitelist`` – Only the query strings in viewer requests that are listed in the ``QueryStringNames`` type are included in requests that CloudFront sends to the origin.
26932
+ + ``all`` – All query strings in viewer requests are included in requests that CloudFront sends to the origin.
26933
+ + ``allExcept`` – All query strings in viewer requests are included in requests that CloudFront sends to the origin, *except* for those listed in the ``QueryStringNames`` type, which are not included.
26934
+ * @pattern `^(none|whitelist|all|allExcept)$`
26935
+ */
26193
26936
  QueryStringBehavior: string;
26937
+ /**
26938
+ * Contains a list of query string names.
26939
+ */
26194
26940
  QueryStrings?: string[];
26195
26941
  };
26196
26942
  /**
26197
- * Resource Type definition for AWS::CloudFront::PublicKey
26943
+ * Resource type definition for `AWS::CloudFront::PublicKey`.
26944
+ * A public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html).
26198
26945
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-publickey.html}
26199
26946
  */
26200
26947
  export type CloudFrontPublicKeyProps = {
26948
+ /**
26949
+ * Configuration information about a public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html).
26950
+ */
26201
26951
  PublicKeyConfig: CloudFrontPublicKeyPublicKeyConfig;
26202
26952
  };
26203
26953
  /**
@@ -26210,29 +26960,50 @@ export type CloudFrontPublicKeyAttributes = {
26210
26960
  };
26211
26961
  /**
26212
26962
  * Type definition for `AWS::CloudFront::PublicKey.PublicKeyConfig`.
26963
+ * Configuration information about a public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html).
26213
26964
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.html}
26214
26965
  */
26215
26966
  export type CloudFrontPublicKeyPublicKeyConfig = {
26967
+ /**
26968
+ * A string included in the request to help make sure that the request can't be replayed.
26969
+ */
26216
26970
  CallerReference: string;
26971
+ /**
26972
+ * A comment to describe the public key. The comment cannot be longer than 128 characters.
26973
+ */
26217
26974
  Comment?: string;
26975
+ /**
26976
+ * The public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html).
26977
+ */
26218
26978
  EncodedKey: string;
26979
+ /**
26980
+ * A name to help identify the public key.
26981
+ */
26219
26982
  Name: string;
26220
26983
  };
26221
26984
  /**
26222
- * Resource Type definition for AWS::CloudFront::RealtimeLogConfig
26985
+ * Resource type definition for `AWS::CloudFront::RealtimeLogConfig`.
26986
+ * A real-time log configuration.
26223
26987
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-realtimelogconfig.html}
26224
26988
  */
26225
26989
  export type CloudFrontRealtimeLogConfigProps = {
26226
26990
  /**
26991
+ * Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.
26227
26992
  * @minLength `1`
26228
26993
  */
26229
26994
  EndPoints: CloudFrontRealtimeLogConfigEndPoint[];
26230
26995
  /**
26231
- * @minLength `1`
26232
- */
26996
+ * A list of fields that are included in each real-time log record. In an API response, the fields are provided in the same order in which they are sent to the Amazon Kinesis data stream.
26997
+ For more information about fields, see [Real-time log configuration fields](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html#understand-real-time-log-config-fields) in the *Amazon CloudFront Developer Guide*.
26998
+ * @minLength `1`
26999
+ */
26233
27000
  Fields: string[];
27001
+ /**
27002
+ * The unique name of this real-time log configuration.
27003
+ */
26234
27004
  Name: string;
26235
27005
  /**
27006
+ * The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. The sampling rate is an integer between 1 and 100, inclusive.
26236
27007
  * @min `1`
26237
27008
  * @max `100`
26238
27009
  */
@@ -26247,25 +27018,47 @@ export type CloudFrontRealtimeLogConfigAttributes = {
26247
27018
  };
26248
27019
  /**
26249
27020
  * Type definition for `AWS::CloudFront::RealtimeLogConfig.EndPoint`.
27021
+ * Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
26250
27022
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-endpoint.html}
26251
27023
  */
26252
27024
  export type CloudFrontRealtimeLogConfigEndPoint = {
27025
+ /**
27026
+ * Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
27027
+ */
26253
27028
  KinesisStreamConfig: CloudFrontRealtimeLogConfigKinesisStreamConfig;
27029
+ /**
27030
+ * The type of data stream where you are sending real-time log data. The only valid value is ``Kinesis``.
27031
+ */
26254
27032
  StreamType: string;
26255
27033
  };
26256
27034
  /**
26257
27035
  * Type definition for `AWS::CloudFront::RealtimeLogConfig.KinesisStreamConfig`.
27036
+ * Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
26258
27037
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-kinesisstreamconfig.html}
26259
27038
  */
26260
27039
  export type CloudFrontRealtimeLogConfigKinesisStreamConfig = {
27040
+ /**
27041
+ * The Amazon Resource Name (ARN) of an IAMlong (IAM) role that CloudFront can use to send real-time log data to your Kinesis data stream.
27042
+ For more information the IAM role, see [Real-time log configuration IAM role](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html#understand-real-time-log-config-iam-role) in the *Amazon CloudFront Developer Guide*.
27043
+ */
26261
27044
  RoleArn: string;
27045
+ /**
27046
+ * The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.
27047
+ */
26262
27048
  StreamArn: string;
26263
27049
  };
26264
27050
  /**
26265
- * Resource Type definition for AWS::CloudFront::ResponseHeadersPolicy
27051
+ * Resource type definition for `AWS::CloudFront::ResponseHeadersPolicy`.
27052
+ * A response headers policy.
27053
+ A response headers policy contains information about a set of HTTP response headers.
27054
+ After you create a response headers policy, you can use its ID to attach it to one or more cache behaviors in a CloudFront distribution. When it's attached to a cache behavior, the response headers policy affects the HTTP headers that CloudFront includes in HTTP responses to requests that match the cache behavior. CloudFront adds or removes response headers according to the configuration of the response headers policy.
27055
+ For more information, see [Adding or removing HTTP headers in CloudFront responses](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/modifying-response-headers.html) in the *Amazon CloudFront Developer Guide*.
26266
27056
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-responseheaderspolicy.html}
26267
27057
  */
26268
27058
  export type CloudFrontResponseHeadersPolicyProps = {
27059
+ /**
27060
+ * A response headers policy configuration.
27061
+ */
26269
27062
  ResponseHeadersPolicyConfig: CloudFrontResponseHeadersPolicyResponseHeadersPolicyConfig;
26270
27063
  };
26271
27064
  /**
@@ -26278,144 +27071,308 @@ export type CloudFrontResponseHeadersPolicyAttributes = {
26278
27071
  };
26279
27072
  /**
26280
27073
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowHeaders`.
27074
+ * A list of HTTP header names that CloudFront includes as values for the ``Access-Control-Allow-Headers`` HTTP response header.
27075
+ For more information about the ``Access-Control-Allow-Headers`` HTTP response header, see [Access-Control-Allow-Headers](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers) in the MDN Web Docs.
26281
27076
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-accesscontrolallowheaders.html}
26282
27077
  */
26283
27078
  export type CloudFrontResponseHeadersPolicyAccessControlAllowHeaders = {
27079
+ /**
27080
+ * The list of HTTP header names. You can specify ``*`` to allow all headers.
27081
+ */
26284
27082
  Items: string[];
26285
27083
  };
26286
27084
  /**
26287
27085
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowMethods`.
27086
+ * A list of HTTP methods that CloudFront includes as values for the ``Access-Control-Allow-Methods`` HTTP response header.
27087
+ For more information about the ``Access-Control-Allow-Methods`` HTTP response header, see [Access-Control-Allow-Methods](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Methods) in the MDN Web Docs.
26288
27088
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-accesscontrolallowmethods.html}
26289
27089
  */
26290
27090
  export type CloudFrontResponseHeadersPolicyAccessControlAllowMethods = {
27091
+ /**
27092
+ * The list of HTTP methods. Valid values are:
27093
+ + ``GET``
27094
+ + ``DELETE``
27095
+ + ``HEAD``
27096
+ + ``OPTIONS``
27097
+ + ``PATCH``
27098
+ + ``POST``
27099
+ + ``PUT``
27100
+ + ``ALL``
27101
+
27102
+ ``ALL`` is a special value that includes all of the listed HTTP methods.
27103
+ */
26291
27104
  Items: string[];
26292
27105
  };
26293
27106
  /**
26294
27107
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowOrigins`.
27108
+ * A list of origins (domain names) that CloudFront can use as the value for the ``Access-Control-Allow-Origin`` HTTP response header.
27109
+ For more information about the ``Access-Control-Allow-Origin`` HTTP response header, see [Access-Control-Allow-Origin](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin) in the MDN Web Docs.
26295
27110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-accesscontrolalloworigins.html}
26296
27111
  */
26297
27112
  export type CloudFrontResponseHeadersPolicyAccessControlAllowOrigins = {
27113
+ /**
27114
+ * The list of origins (domain names). You can specify ``*`` to allow all origins.
27115
+ */
26298
27116
  Items: string[];
26299
27117
  };
26300
27118
  /**
26301
27119
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.AccessControlExposeHeaders`.
27120
+ * A list of HTTP headers that CloudFront includes as values for the ``Access-Control-Expose-Headers`` HTTP response header.
27121
+ For more information about the ``Access-Control-Expose-Headers`` HTTP response header, see [Access-Control-Expose-Headers](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers) in the MDN Web Docs.
26302
27122
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-accesscontrolexposeheaders.html}
26303
27123
  */
26304
27124
  export type CloudFrontResponseHeadersPolicyAccessControlExposeHeaders = {
27125
+ /**
27126
+ * The list of HTTP headers. You can specify ``*`` to expose all headers.
27127
+ */
26305
27128
  Items: string[];
26306
27129
  };
26307
27130
  /**
26308
27131
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ContentSecurityPolicy`.
27132
+ * The policy directives and their values that CloudFront includes as values for the ``Content-Security-Policy`` HTTP response header.
27133
+ For more information about the ``Content-Security-Policy`` HTTP response header, see [Content-Security-Policy](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy) in the MDN Web Docs.
26309
27134
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-contentsecuritypolicy.html}
26310
27135
  */
26311
27136
  export type CloudFrontResponseHeadersPolicyContentSecurityPolicy = {
27137
+ /**
27138
+ * The policy directives and their values that CloudFront includes as values for the ``Content-Security-Policy`` HTTP response header.
27139
+ For more information about the ``Content-Security-Policy`` HTTP response header, see [Content-Security-Policy](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy) in the MDN Web Docs.
27140
+ */
26312
27141
  ContentSecurityPolicy: string;
27142
+ /**
27143
+ * A Boolean that determines whether CloudFront overrides the ``Content-Security-Policy`` HTTP response header received from the origin with the one specified in this response headers policy.
27144
+ */
26313
27145
  Override: boolean;
26314
27146
  };
26315
27147
  /**
26316
27148
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ContentTypeOptions`.
27149
+ * Determines whether CloudFront includes the ``X-Content-Type-Options`` HTTP response header with its value set to ``nosniff``.
27150
+ For more information about the ``X-Content-Type-Options`` HTTP response header, see [X-Content-Type-Options](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options) in the MDN Web Docs.
26317
27151
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-contenttypeoptions.html}
26318
27152
  */
26319
27153
  export type CloudFrontResponseHeadersPolicyContentTypeOptions = {
27154
+ /**
27155
+ * A Boolean that determines whether CloudFront overrides the ``X-Content-Type-Options`` HTTP response header received from the origin with the one specified in this response headers policy.
27156
+ */
26320
27157
  Override: boolean;
26321
27158
  };
26322
27159
  /**
26323
27160
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.CorsConfig`.
27161
+ * A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS). CloudFront adds these headers to HTTP responses that it sends for CORS requests that match a cache behavior associated with this response headers policy.
27162
+ For more information about CORS, see [Cross-Origin Resource Sharing (CORS)](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) in the MDN Web Docs.
26324
27163
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-corsconfig.html}
26325
27164
  */
26326
27165
  export type CloudFrontResponseHeadersPolicyCorsConfig = {
27166
+ /**
27167
+ * A Boolean that CloudFront uses as the value for the ``Access-Control-Allow-Credentials`` HTTP response header.
27168
+ For more information about the ``Access-Control-Allow-Credentials`` HTTP response header, see [Access-Control-Allow-Credentials](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Credentials) in the MDN Web Docs.
27169
+ */
26327
27170
  AccessControlAllowCredentials: boolean;
27171
+ /**
27172
+ * A list of HTTP header names that CloudFront includes as values for the ``Access-Control-Allow-Headers`` HTTP response header.
27173
+ For more information about the ``Access-Control-Allow-Headers`` HTTP response header, see [Access-Control-Allow-Headers](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers) in the MDN Web Docs.
27174
+ */
26328
27175
  AccessControlAllowHeaders: CloudFrontResponseHeadersPolicyAccessControlAllowHeaders;
27176
+ /**
27177
+ * A list of HTTP methods that CloudFront includes as values for the ``Access-Control-Allow-Methods`` HTTP response header.
27178
+ For more information about the ``Access-Control-Allow-Methods`` HTTP response header, see [Access-Control-Allow-Methods](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Methods) in the MDN Web Docs.
27179
+ */
26329
27180
  AccessControlAllowMethods: CloudFrontResponseHeadersPolicyAccessControlAllowMethods;
27181
+ /**
27182
+ * A list of origins (domain names) that CloudFront can use as the value for the ``Access-Control-Allow-Origin`` HTTP response header.
27183
+ For more information about the ``Access-Control-Allow-Origin`` HTTP response header, see [Access-Control-Allow-Origin](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin) in the MDN Web Docs.
27184
+ */
26330
27185
  AccessControlAllowOrigins: CloudFrontResponseHeadersPolicyAccessControlAllowOrigins;
27186
+ /**
27187
+ * A list of HTTP headers that CloudFront includes as values for the ``Access-Control-Expose-Headers`` HTTP response header.
27188
+ For more information about the ``Access-Control-Expose-Headers`` HTTP response header, see [Access-Control-Expose-Headers](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers) in the MDN Web Docs.
27189
+ */
26331
27190
  AccessControlExposeHeaders?: CloudFrontResponseHeadersPolicyAccessControlExposeHeaders;
27191
+ /**
27192
+ * A number that CloudFront uses as the value for the ``Access-Control-Max-Age`` HTTP response header.
27193
+ For more information about the ``Access-Control-Max-Age`` HTTP response header, see [Access-Control-Max-Age](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Max-Age) in the MDN Web Docs.
27194
+ */
26332
27195
  AccessControlMaxAgeSec?: number;
27196
+ /**
27197
+ * A Boolean that determines whether CloudFront overrides HTTP response headers received from the origin with the ones specified in this response headers policy.
27198
+ */
26333
27199
  OriginOverride: boolean;
26334
27200
  };
26335
27201
  /**
26336
27202
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.CustomHeader`.
27203
+ * An HTTP response header name and its value. CloudFront includes this header in HTTP responses that it sends for requests that match a cache behavior that's associated with this response headers policy.
26337
27204
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-customheader.html}
26338
27205
  */
26339
27206
  export type CloudFrontResponseHeadersPolicyCustomHeader = {
27207
+ /**
27208
+ * The HTTP response header name.
27209
+ */
26340
27210
  Header: string;
27211
+ /**
27212
+ * A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.
27213
+ */
26341
27214
  Override: boolean;
27215
+ /**
27216
+ * The value for the HTTP response header.
27217
+ */
26342
27218
  Value: string;
26343
27219
  };
26344
27220
  /**
26345
27221
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.CustomHeadersConfig`.
27222
+ * A list of HTTP response header names and their values. CloudFront includes these headers in HTTP responses that it sends for requests that match a cache behavior that's associated with this response headers policy.
26346
27223
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-customheadersconfig.html}
26347
27224
  */
26348
27225
  export type CloudFrontResponseHeadersPolicyCustomHeadersConfig = {
27226
+ /**
27227
+ * The list of HTTP response headers and their values.
27228
+ */
26349
27229
  Items: CloudFrontResponseHeadersPolicyCustomHeader[];
26350
27230
  };
26351
27231
  /**
26352
27232
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.FrameOptions`.
27233
+ * Determines whether CloudFront includes the ``X-Frame-Options`` HTTP response header and the header's value.
27234
+ For more information about the ``X-Frame-Options`` HTTP response header, see [X-Frame-Options](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options) in the MDN Web Docs.
26353
27235
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-frameoptions.html}
26354
27236
  */
26355
27237
  export type CloudFrontResponseHeadersPolicyFrameOptions = {
26356
27238
  /**
26357
- * @pattern `^(DENY|SAMEORIGIN)$`
26358
- */
27239
+ * The value of the ``X-Frame-Options`` HTTP response header. Valid values are ``DENY`` and ``SAMEORIGIN``.
27240
+ For more information about these values, see [X-Frame-Options](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options) in the MDN Web Docs.
27241
+ * @pattern `^(DENY|SAMEORIGIN)$`
27242
+ */
26359
27243
  FrameOption: string;
27244
+ /**
27245
+ * A Boolean that determines whether CloudFront overrides the ``X-Frame-Options`` HTTP response header received from the origin with the one specified in this response headers policy.
27246
+ */
26360
27247
  Override: boolean;
26361
27248
  };
26362
27249
  /**
26363
27250
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ReferrerPolicy`.
27251
+ * Determines whether CloudFront includes the ``Referrer-Policy`` HTTP response header and the header's value.
27252
+ For more information about the ``Referrer-Policy`` HTTP response header, see [Referrer-Policy](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy) in the MDN Web Docs.
26364
27253
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-referrerpolicy.html}
26365
27254
  */
26366
27255
  export type CloudFrontResponseHeadersPolicyReferrerPolicy = {
26367
- Override: boolean;
26368
27256
  /**
26369
- * @pattern `^(no-referrer|no-referrer-when-downgrade|origin|origin-when-cross-origin|same-origin|strict-origin|strict-origin-when-cross-origin|unsafe-url)$`
27257
+ * A Boolean that determines whether CloudFront overrides the ``Referrer-Policy`` HTTP response header received from the origin with the one specified in this response headers policy.
26370
27258
  */
27259
+ Override: boolean;
27260
+ /**
27261
+ * Determines whether CloudFront includes the ``Referrer-Policy`` HTTP response header and the header's value.
27262
+ For more information about the ``Referrer-Policy`` HTTP response header, see [Referrer-Policy](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy) in the MDN Web Docs.
27263
+ * @pattern `^(no-referrer|no-referrer-when-downgrade|origin|origin-when-cross-origin|same-origin|strict-origin|strict-origin-when-cross-origin|unsafe-url)$`
27264
+ */
26371
27265
  ReferrerPolicy: string;
26372
27266
  };
26373
27267
  /**
26374
27268
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.RemoveHeader`.
27269
+ * The name of an HTTP header that CloudFront removes from HTTP responses to requests that match the cache behavior that this response headers policy is attached to.
26375
27270
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-removeheader.html}
26376
27271
  */
26377
27272
  export type CloudFrontResponseHeadersPolicyRemoveHeader = {
27273
+ /**
27274
+ * The HTTP header name.
27275
+ */
26378
27276
  Header: string;
26379
27277
  };
26380
27278
  /**
26381
27279
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.RemoveHeadersConfig`.
27280
+ * A list of HTTP header names that CloudFront removes from HTTP responses to requests that match the cache behavior that this response headers policy is attached to.
26382
27281
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-removeheadersconfig.html}
26383
27282
  */
26384
27283
  export type CloudFrontResponseHeadersPolicyRemoveHeadersConfig = {
27284
+ /**
27285
+ * The list of HTTP header names.
27286
+ */
26385
27287
  Items: CloudFrontResponseHeadersPolicyRemoveHeader[];
26386
27288
  };
26387
27289
  /**
26388
27290
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ResponseHeadersPolicyConfig`.
27291
+ * A response headers policy configuration.
27292
+ A response headers policy configuration contains metadata about the response headers policy, and configurations for sets of HTTP response headers.
26389
27293
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-responseheaderspolicyconfig.html}
26390
27294
  */
26391
27295
  export type CloudFrontResponseHeadersPolicyResponseHeadersPolicyConfig = {
27296
+ /**
27297
+ * A comment to describe the response headers policy.
27298
+ The comment cannot be longer than 128 characters.
27299
+ */
26392
27300
  Comment?: string;
27301
+ /**
27302
+ * A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).
27303
+ */
26393
27304
  CorsConfig?: CloudFrontResponseHeadersPolicyCorsConfig;
27305
+ /**
27306
+ * A configuration for a set of custom HTTP response headers.
27307
+ */
26394
27308
  CustomHeadersConfig?: CloudFrontResponseHeadersPolicyCustomHeadersConfig;
27309
+ /**
27310
+ * A name to identify the response headers policy.
27311
+ The name must be unique for response headers policies in this AWS-account.
27312
+ */
26395
27313
  Name: string;
27314
+ /**
27315
+ * A configuration for a set of HTTP headers to remove from the HTTP response.
27316
+ */
26396
27317
  RemoveHeadersConfig?: CloudFrontResponseHeadersPolicyRemoveHeadersConfig;
27318
+ /**
27319
+ * A configuration for a set of security-related HTTP response headers.
27320
+ */
26397
27321
  SecurityHeadersConfig?: CloudFrontResponseHeadersPolicySecurityHeadersConfig;
27322
+ /**
27323
+ * A configuration for enabling the ``Server-Timing`` header in HTTP responses sent from CloudFront.
27324
+ */
26398
27325
  ServerTimingHeadersConfig?: CloudFrontResponseHeadersPolicyServerTimingHeadersConfig;
26399
27326
  };
26400
27327
  /**
26401
27328
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.SecurityHeadersConfig`.
27329
+ * A configuration for a set of security-related HTTP response headers. CloudFront adds these headers to HTTP responses that it sends for requests that match a cache behavior associated with this response headers policy.
26402
27330
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-securityheadersconfig.html}
26403
27331
  */
26404
27332
  export type CloudFrontResponseHeadersPolicySecurityHeadersConfig = {
27333
+ /**
27334
+ * The policy directives and their values that CloudFront includes as values for the ``Content-Security-Policy`` HTTP response header.
27335
+ For more information about the ``Content-Security-Policy`` HTTP response header, see [Content-Security-Policy](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy) in the MDN Web Docs.
27336
+ */
26405
27337
  ContentSecurityPolicy?: CloudFrontResponseHeadersPolicyContentSecurityPolicy;
27338
+ /**
27339
+ * Determines whether CloudFront includes the ``X-Content-Type-Options`` HTTP response header with its value set to ``nosniff``.
27340
+ For more information about the ``X-Content-Type-Options`` HTTP response header, see [X-Content-Type-Options](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options) in the MDN Web Docs.
27341
+ */
26406
27342
  ContentTypeOptions?: CloudFrontResponseHeadersPolicyContentTypeOptions;
27343
+ /**
27344
+ * Determines whether CloudFront includes the ``X-Frame-Options`` HTTP response header and the header's value.
27345
+ For more information about the ``X-Frame-Options`` HTTP response header, see [X-Frame-Options](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options) in the MDN Web Docs.
27346
+ */
26407
27347
  FrameOptions?: CloudFrontResponseHeadersPolicyFrameOptions;
27348
+ /**
27349
+ * Determines whether CloudFront includes the ``Referrer-Policy`` HTTP response header and the header's value.
27350
+ For more information about the ``Referrer-Policy`` HTTP response header, see [Referrer-Policy](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy) in the MDN Web Docs.
27351
+ */
26408
27352
  ReferrerPolicy?: CloudFrontResponseHeadersPolicyReferrerPolicy;
27353
+ /**
27354
+ * Determines whether CloudFront includes the ``Strict-Transport-Security`` HTTP response header and the header's value.
27355
+ For more information about the ``Strict-Transport-Security`` HTTP response header, see [Security headers](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/understanding-response-headers-policies.html#understanding-response-headers-policies-security) in the *Amazon CloudFront Developer Guide* and [Strict-Transport-Security](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security) in the MDN Web Docs.
27356
+ */
26409
27357
  StrictTransportSecurity?: CloudFrontResponseHeadersPolicyStrictTransportSecurity;
27358
+ /**
27359
+ * Determines whether CloudFront includes the ``X-XSS-Protection`` HTTP response header and the header's value.
27360
+ For more information about the ``X-XSS-Protection`` HTTP response header, see [X-XSS-Protection](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection) in the MDN Web Docs.
27361
+ */
26410
27362
  XSSProtection?: CloudFrontResponseHeadersPolicyXSSProtection;
26411
27363
  };
26412
27364
  /**
26413
27365
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ServerTimingHeadersConfig`.
27366
+ * A configuration for enabling the ``Server-Timing`` header in HTTP responses sent from CloudFront.
26414
27367
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-servertimingheadersconfig.html}
26415
27368
  */
26416
27369
  export type CloudFrontResponseHeadersPolicyServerTimingHeadersConfig = {
27370
+ /**
27371
+ * A Boolean that determines whether CloudFront adds the ``Server-Timing`` header to HTTP responses that it sends in response to requests that match a cache behavior that's associated with this response headers policy.
27372
+ */
26417
27373
  Enabled: boolean;
26418
27374
  /**
27375
+ * A number 0–100 (inclusive) that specifies the percentage of responses that you want CloudFront to add the ``Server-Timing`` header to. When you set the sampling rate to 100, CloudFront adds the ``Server-Timing`` header to the HTTP response for every request that matches the cache behavior that this response headers policy is attached to. When you set it to 50, CloudFront adds the header to 50% of the responses for requests that match the cache behavior. You can set the sampling rate to any number 0–100 with up to four decimal places.
26419
27376
  * @min `0`
26420
27377
  * @max `100`
26421
27378
  */
@@ -26423,22 +27380,54 @@ export type CloudFrontResponseHeadersPolicyServerTimingHeadersConfig = {
26423
27380
  };
26424
27381
  /**
26425
27382
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.StrictTransportSecurity`.
27383
+ * Determines whether CloudFront includes the ``Strict-Transport-Security`` HTTP response header and the header's value.
27384
+ For more information about the ``Strict-Transport-Security`` HTTP response header, see [Strict-Transport-Security](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security) in the MDN Web Docs.
26426
27385
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-stricttransportsecurity.html}
26427
27386
  */
26428
27387
  export type CloudFrontResponseHeadersPolicyStrictTransportSecurity = {
27388
+ /**
27389
+ * A number that CloudFront uses as the value for the ``max-age`` directive in the ``Strict-Transport-Security`` HTTP response header.
27390
+ */
26429
27391
  AccessControlMaxAgeSec: number;
27392
+ /**
27393
+ * A Boolean that determines whether CloudFront includes the ``includeSubDomains`` directive in the ``Strict-Transport-Security`` HTTP response header.
27394
+ */
26430
27395
  IncludeSubdomains?: boolean;
27396
+ /**
27397
+ * A Boolean that determines whether CloudFront overrides the ``Strict-Transport-Security`` HTTP response header received from the origin with the one specified in this response headers policy.
27398
+ */
26431
27399
  Override: boolean;
27400
+ /**
27401
+ * A Boolean that determines whether CloudFront includes the ``preload`` directive in the ``Strict-Transport-Security`` HTTP response header.
27402
+ */
26432
27403
  Preload?: boolean;
26433
27404
  };
26434
27405
  /**
26435
27406
  * Type definition for `AWS::CloudFront::ResponseHeadersPolicy.XSSProtection`.
27407
+ * Determines whether CloudFront includes the ``X-XSS-Protection`` HTTP response header and the header's value.
27408
+ For more information about the ``X-XSS-Protection`` HTTP response header, see [X-XSS-Protection](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection) in the MDN Web Docs.
26436
27409
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-xssprotection.html}
26437
27410
  */
26438
27411
  export type CloudFrontResponseHeadersPolicyXSSProtection = {
27412
+ /**
27413
+ * A Boolean that determines whether CloudFront includes the ``mode=block`` directive in the ``X-XSS-Protection`` header.
27414
+ For more information about this directive, see [X-XSS-Protection](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection) in the MDN Web Docs.
27415
+ */
26439
27416
  ModeBlock?: boolean;
27417
+ /**
27418
+ * A Boolean that determines whether CloudFront overrides the ``X-XSS-Protection`` HTTP response header received from the origin with the one specified in this response headers policy.
27419
+ */
26440
27420
  Override: boolean;
27421
+ /**
27422
+ * A Boolean that determines the value of the ``X-XSS-Protection`` HTTP response header. When this setting is ``true``, the value of the ``X-XSS-Protection`` header is ``1``. When this setting is ``false``, the value of the ``X-XSS-Protection`` header is ``0``.
27423
+ For more information about these settings, see [X-XSS-Protection](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection) in the MDN Web Docs.
27424
+ */
26441
27425
  Protection: boolean;
27426
+ /**
27427
+ * A reporting URI, which CloudFront uses as the value of the ``report`` directive in the ``X-XSS-Protection`` header.
27428
+ You cannot specify a ``ReportUri`` when ``ModeBlock`` is ``true``.
27429
+ For more information about using a reporting URL, see [X-XSS-Protection](https://docs.aws.amazon.com/https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection) in the MDN Web Docs.
27430
+ */
26442
27431
  ReportUri?: string;
26443
27432
  };
26444
27433
  /**
@@ -26583,6 +27572,123 @@ export type CloudTrailChannelTag = {
26583
27572
  */
26584
27573
  Value: string;
26585
27574
  };
27575
+ /**
27576
+ * Resource type definition for `AWS::CloudTrail::Dashboard`.
27577
+ * The Amazon CloudTrail dashboard resource allows customers to manage managed dashboards and create custom dashboards. You can manually refresh custom and managed dashboards. For custom dashboards, you can also set up an automatic refresh schedule and modify dashboard widgets.
27578
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-dashboard.html}
27579
+ */
27580
+ export type CloudTrailDashboardProps = {
27581
+ /**
27582
+ * The name of the dashboard.
27583
+ * @pattern `^[a-zA-Z0-9_\-]+$`
27584
+ */
27585
+ Name?: string;
27586
+ /**
27587
+ * Configures the automatic refresh schedule for the dashboard. Includes the frequency unit (DAYS or HOURS) and value, as well as the status (ENABLED or DISABLED) of the refresh schedule.
27588
+ */
27589
+ RefreshSchedule?: CloudTrailDashboardRefreshSchedule;
27590
+ Tags?: CloudTrailDashboardTag[];
27591
+ /**
27592
+ * Indicates whether the dashboard is protected from termination.
27593
+ */
27594
+ TerminationProtectionEnabled?: boolean;
27595
+ /**
27596
+ * List of widgets on the dashboard
27597
+ */
27598
+ Widgets?: CloudTrailDashboardWidget[];
27599
+ };
27600
+ /**
27601
+ * Attribute type definition for `AWS::CloudTrail::Dashboard`.
27602
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-dashboard.html#aws-resource-cloudtrail-dashboard-return-values}
27603
+ */
27604
+ export type CloudTrailDashboardAttributes = {
27605
+ /**
27606
+ * The timestamp of the dashboard creation.
27607
+ */
27608
+ CreatedTimestamp: string;
27609
+ /**
27610
+ * The ARN of the dashboard.
27611
+ * @pattern `^[a-zA-Z0-9._/\-:]+$`
27612
+ */
27613
+ DashboardArn: string;
27614
+ /**
27615
+ * The status of the dashboard. Values are CREATING, CREATED, UPDATING, UPDATED and DELETING.
27616
+ */
27617
+ Status: "CREATING" | "CREATED" | "UPDATING" | "UPDATED" | "DELETING";
27618
+ /**
27619
+ * The type of the dashboard. Values are CUSTOM and MANAGED.
27620
+ */
27621
+ Type: "MANAGED" | "CUSTOM";
27622
+ /**
27623
+ * The timestamp showing when the dashboard was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
27624
+ */
27625
+ UpdatedTimestamp: string;
27626
+ };
27627
+ /**
27628
+ * Type definition for `AWS::CloudTrail::Dashboard.RefreshSchedule`.
27629
+ * Configures the automatic refresh schedule for the dashboard. Includes the frequency unit (DAYS or HOURS) and value, as well as the status (ENABLED or DISABLED) of the refresh schedule.
27630
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-dashboard-refreshschedule.html}
27631
+ */
27632
+ export type CloudTrailDashboardRefreshSchedule = {
27633
+ Frequency?: {
27634
+ /**
27635
+ * The frequency unit. Supported values are HOURS and DAYS.
27636
+ */
27637
+ Unit: "HOURS" | "DAYS";
27638
+ /**
27639
+ * The frequency value.
27640
+ */
27641
+ Value: number;
27642
+ };
27643
+ /**
27644
+ * The status of the schedule. Supported values are ENABLED and DISABLED.
27645
+ */
27646
+ Status?: "ENABLED" | "DISABLED";
27647
+ /**
27648
+ * StartTime of the automatic schedule refresh.
27649
+ * @pattern `^[0-9]{2}:[0-9]{2}`
27650
+ */
27651
+ TimeOfDay?: string;
27652
+ };
27653
+ /**
27654
+ * Type definition for `AWS::CloudTrail::Dashboard.Tag`.
27655
+ * An arbitrary set of tags (key-value pairs) for this dashboard.
27656
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-dashboard-tag.html}
27657
+ */
27658
+ export type CloudTrailDashboardTag = {
27659
+ /**
27660
+ * The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
27661
+ */
27662
+ Key: string;
27663
+ /**
27664
+ * The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
27665
+ */
27666
+ Value: string;
27667
+ };
27668
+ /**
27669
+ * Type definition for `AWS::CloudTrail::Dashboard.Widget`.
27670
+ * The dashboard widget
27671
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-dashboard-widget.html}
27672
+ */
27673
+ export type CloudTrailDashboardWidget = {
27674
+ /**
27675
+ * The placeholder keys in the QueryStatement. For example: $StartTime$, $EndTime$, $Period$.
27676
+ * @minLength `1`
27677
+ * @maxLength `10`
27678
+ */
27679
+ QueryParameters?: string[];
27680
+ /**
27681
+ * The SQL query statement on one or more event data stores.
27682
+ * @minLength `1`
27683
+ * @maxLength `10000`
27684
+ * @pattern `(?s).*`
27685
+ */
27686
+ QueryStatement: string;
27687
+ /**
27688
+ * The view properties of the widget.
27689
+ */
27690
+ ViewProperties?: Record<string, string>;
27691
+ };
26586
27692
  /**
26587
27693
  * Resource type definition for `AWS::CloudTrail::EventDataStore`.
26588
27694
  * A storage lake of event data against which you can run complex SQL-based queries. An event data store can include events that you have logged on your account from the last 7 to 2557 or 3653 days (about seven or ten years) depending on the selected BillingMode.
@@ -31872,6 +32978,74 @@ export type ConnectContactFlowModuleTag = {
31872
32978
  */
31873
32979
  Value: string;
31874
32980
  };
32981
+ /**
32982
+ * Resource Type definition for AWS::Connect::EmailAddress
32983
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html}
32984
+ */
32985
+ export type ConnectEmailAddressProps = {
32986
+ /**
32987
+ * A description for the email address.
32988
+ * @minLength `1`
32989
+ * @maxLength `250`
32990
+ * @pattern `(^[\S].*[\S]$)|(^[\S]$)`
32991
+ */
32992
+ Description?: string;
32993
+ /**
32994
+ * The display name for the email address.
32995
+ * @minLength `0`
32996
+ * @maxLength `256`
32997
+ * @pattern `(^[\S].*[\S]$)|(^[\S]$)`
32998
+ */
32999
+ DisplayName?: string;
33000
+ /**
33001
+ * Email address to be created for this instance
33002
+ * @minLength `1`
33003
+ * @maxLength `255`
33004
+ * @pattern `([^\s@]+@[^\s@]+\.[^\s@]+)`
33005
+ */
33006
+ EmailAddress: string;
33007
+ /**
33008
+ * The identifier of the Amazon Connect instance.
33009
+ * @minLength `1`
33010
+ * @maxLength `250`
33011
+ * @pattern `^arn:(aws|aws-us-gov):connect:[a-z]{2}-[a-z]+-[0-9]{1}:[0-9]{1,20}:instance/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
33012
+ */
33013
+ InstanceArn: string;
33014
+ /**
33015
+ * One or more tags.
33016
+ * @maxLength `50`
33017
+ */
33018
+ Tags?: ConnectEmailAddressTag[];
33019
+ };
33020
+ /**
33021
+ * Attribute type definition for `AWS::Connect::EmailAddress`.
33022
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#aws-resource-connect-emailaddress-return-values}
33023
+ */
33024
+ export type ConnectEmailAddressAttributes = {
33025
+ /**
33026
+ * The identifier of the email address.
33027
+ * @pattern `^arn:(aws|aws-us-gov):connect:[a-z]{2}-[a-z]+-[0-9]{1}:[0-9]{1,20}:instance/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}/email-address/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
33028
+ */
33029
+ EmailAddressArn: string;
33030
+ };
33031
+ /**
33032
+ * Type definition for `AWS::Connect::EmailAddress.Tag`.
33033
+ * A key-value pair to associate with a resource.
33034
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-emailaddress-tag.html}
33035
+ */
33036
+ export type ConnectEmailAddressTag = {
33037
+ /**
33038
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
33039
+ * @minLength `1`
33040
+ * @maxLength `128`
33041
+ */
33042
+ Key: string;
33043
+ /**
33044
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
33045
+ * @maxLength `256`
33046
+ */
33047
+ Value: string;
33048
+ };
31875
33049
  /**
31876
33050
  * Resource type definition for `AWS::Connect::EvaluationForm`.
31877
33051
  * Creates an evaluation form for the specified CON instance.
@@ -32298,6 +33472,11 @@ export type ConnectHoursOfOperationProps = {
32298
33472
  * @maxLength `250`
32299
33473
  */
32300
33474
  Description?: string;
33475
+ /**
33476
+ * One or more hours of operation overrides assigned to an hour of operation.
33477
+ * @maxLength `50`
33478
+ */
33479
+ HoursOfOperationOverrides?: ConnectHoursOfOperationHoursOfOperationOverride[];
32301
33480
  /**
32302
33481
  * The identifier of the Amazon Connect instance.
32303
33482
  * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
@@ -32349,6 +33528,64 @@ export type ConnectHoursOfOperationHoursOfOperationConfig = {
32349
33528
  */
32350
33529
  StartTime: ConnectHoursOfOperationHoursOfOperationTimeSlice;
32351
33530
  };
33531
+ /**
33532
+ * Type definition for `AWS::Connect::HoursOfOperation.HoursOfOperationOverride`.
33533
+ * Overrides attached to the hours of operation.
33534
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html}
33535
+ */
33536
+ export type ConnectHoursOfOperationHoursOfOperationOverride = {
33537
+ /**
33538
+ * The date from which the hours of operation override would be effective.
33539
+ * @pattern `^\d{4}-\d{2}-\d{2}$`
33540
+ */
33541
+ EffectiveFrom: string;
33542
+ /**
33543
+ * The date till which the hours of operation override would be effective.
33544
+ * @pattern `^\d{4}-\d{2}-\d{2}$`
33545
+ */
33546
+ EffectiveTill: string;
33547
+ /**
33548
+ * The Resource Identifier for the hours of operation override.
33549
+ * @pattern `^[-a-zA-Z0-9]*$`
33550
+ */
33551
+ HoursOfOperationOverrideId?: string;
33552
+ /**
33553
+ * Configuration information for the hours of operation override: day, start time, and end time.
33554
+ * @maxLength `100`
33555
+ */
33556
+ OverrideConfig: ConnectHoursOfOperationHoursOfOperationOverrideConfig[];
33557
+ /**
33558
+ * The description of the hours of operation override.
33559
+ * @minLength `1`
33560
+ * @maxLength `250`
33561
+ */
33562
+ OverrideDescription?: string;
33563
+ /**
33564
+ * The name of the hours of operation override.
33565
+ * @minLength `1`
33566
+ * @maxLength `127`
33567
+ */
33568
+ OverrideName: string;
33569
+ };
33570
+ /**
33571
+ * Type definition for `AWS::Connect::HoursOfOperation.HoursOfOperationOverrideConfig`.
33572
+ * Contains information about the hours of operation override.
33573
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverrideconfig.html}
33574
+ */
33575
+ export type ConnectHoursOfOperationHoursOfOperationOverrideConfig = {
33576
+ /**
33577
+ * The day that the hours of operation override applies to.
33578
+ */
33579
+ Day: "SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY";
33580
+ /**
33581
+ * The new end time that your contact center closes for the overriden days.
33582
+ */
33583
+ EndTime: ConnectHoursOfOperationOverrideTimeSlice;
33584
+ /**
33585
+ * The new start time that your contact center opens for the overriden days.
33586
+ */
33587
+ StartTime: ConnectHoursOfOperationOverrideTimeSlice;
33588
+ };
32352
33589
  /**
32353
33590
  * Type definition for `AWS::Connect::HoursOfOperation.HoursOfOperationTimeSlice`.
32354
33591
  * The start time or end time for an hours of operation.
@@ -32368,6 +33605,25 @@ export type ConnectHoursOfOperationHoursOfOperationTimeSlice = {
32368
33605
  */
32369
33606
  Minutes: number;
32370
33607
  };
33608
+ /**
33609
+ * Type definition for `AWS::Connect::HoursOfOperation.OverrideTimeSlice`.
33610
+ * The start time or end time for an an hours of operation override.
33611
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-overridetimeslice.html}
33612
+ */
33613
+ export type ConnectHoursOfOperationOverrideTimeSlice = {
33614
+ /**
33615
+ * The hours.
33616
+ * @min `0`
33617
+ * @max `23`
33618
+ */
33619
+ Hours: number;
33620
+ /**
33621
+ * The minutes.
33622
+ * @min `0`
33623
+ * @max `59`
33624
+ */
33625
+ Minutes: number;
33626
+ };
32371
33627
  /**
32372
33628
  * Type definition for `AWS::Connect::HoursOfOperation.Tag`.
32373
33629
  * A key-value pair to associate with a resource.
@@ -36625,6 +37881,418 @@ export type CustomerProfilesObjectTypeTag = {
36625
37881
  */
36626
37882
  Value: string;
36627
37883
  };
37884
+ /**
37885
+ * Resource type definition for `AWS::CustomerProfiles::SegmentDefinition`.
37886
+ * A segment definition resource of Amazon Connect Customer Profiles
37887
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-segmentdefinition.html}
37888
+ */
37889
+ export type CustomerProfilesSegmentDefinitionProps = {
37890
+ /**
37891
+ * The description of the segment definition.
37892
+ * @minLength `1`
37893
+ * @maxLength `1000`
37894
+ */
37895
+ Description?: string;
37896
+ /**
37897
+ * The display name of the segment definition.
37898
+ * @minLength `1`
37899
+ * @maxLength `255`
37900
+ */
37901
+ DisplayName: string;
37902
+ /**
37903
+ * The unique name of the domain.
37904
+ * @minLength `1`
37905
+ * @maxLength `64`
37906
+ * @pattern `^[a-zA-Z0-9_-]+$`
37907
+ */
37908
+ DomainName: string;
37909
+ /**
37910
+ * The unique name of the segment definition.
37911
+ * @minLength `1`
37912
+ * @maxLength `64`
37913
+ * @pattern `^[a-zA-Z0-9_-]+$`
37914
+ */
37915
+ SegmentDefinitionName: string;
37916
+ /**
37917
+ * An array that defines the set of segment criteria to evaluate when handling segment groups for the segment.
37918
+ */
37919
+ SegmentGroups: CustomerProfilesSegmentDefinitionSegmentGroup;
37920
+ /**
37921
+ * The tags used to organize, track, or control access for this resource.
37922
+ * @minLength `0`
37923
+ * @maxLength `50`
37924
+ */
37925
+ Tags?: CustomerProfilesSegmentDefinitionTag[];
37926
+ };
37927
+ /**
37928
+ * Attribute type definition for `AWS::CustomerProfiles::SegmentDefinition`.
37929
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-segmentdefinition.html#aws-resource-customerprofiles-segmentdefinition-return-values}
37930
+ */
37931
+ export type CustomerProfilesSegmentDefinitionAttributes = {
37932
+ /**
37933
+ * The time of this segment definition got created.
37934
+ */
37935
+ CreatedAt: string;
37936
+ /**
37937
+ * The Amazon Resource Name (ARN) of the segment definition.
37938
+ * @minLength `1`
37939
+ * @maxLength `255`
37940
+ */
37941
+ SegmentDefinitionArn: string;
37942
+ };
37943
+ /**
37944
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.AddressDimension`.
37945
+ * The address based criteria for the segment.
37946
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-addressdimension.html}
37947
+ */
37948
+ export type CustomerProfilesSegmentDefinitionAddressDimension = {
37949
+ /**
37950
+ * Specifies profile based criteria for a segment.
37951
+ */
37952
+ City?: CustomerProfilesSegmentDefinitionProfileDimension;
37953
+ /**
37954
+ * Specifies profile based criteria for a segment.
37955
+ */
37956
+ Country?: CustomerProfilesSegmentDefinitionProfileDimension;
37957
+ /**
37958
+ * Specifies profile based criteria for a segment.
37959
+ */
37960
+ County?: CustomerProfilesSegmentDefinitionProfileDimension;
37961
+ /**
37962
+ * Specifies profile based criteria for a segment.
37963
+ */
37964
+ PostalCode?: CustomerProfilesSegmentDefinitionProfileDimension;
37965
+ /**
37966
+ * Specifies profile based criteria for a segment.
37967
+ */
37968
+ Province?: CustomerProfilesSegmentDefinitionProfileDimension;
37969
+ /**
37970
+ * Specifies profile based criteria for a segment.
37971
+ */
37972
+ State?: CustomerProfilesSegmentDefinitionProfileDimension;
37973
+ };
37974
+ /**
37975
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.AttributeDimension`.
37976
+ * Specifies attribute based criteria for a segment.
37977
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-attributedimension.html}
37978
+ */
37979
+ export type CustomerProfilesSegmentDefinitionAttributeDimension = {
37980
+ /**
37981
+ * The type of segment dimension to use.
37982
+ */
37983
+ DimensionType: CustomerProfilesSegmentDefinitionAttributeDimensionType;
37984
+ /**
37985
+ * @minLength `1`
37986
+ * @maxLength `50`
37987
+ */
37988
+ Values: string[];
37989
+ };
37990
+ /**
37991
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.AttributeDimensionType`.
37992
+ * The type of segment dimension to use.
37993
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-attributedimensiontype.html}
37994
+ */
37995
+ export type CustomerProfilesSegmentDefinitionAttributeDimensionType = "INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL";
37996
+ /**
37997
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.CalculatedAttributeDimension`.
37998
+ * Specifies calculated attribute based criteria for a segment.
37999
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-calculatedattributedimension.html}
38000
+ */
38001
+ export type CustomerProfilesSegmentDefinitionCalculatedAttributeDimension = {
38002
+ /**
38003
+ * Overrides the condition block within the original calculated attribute definition.
38004
+ */
38005
+ ConditionOverrides?: CustomerProfilesSegmentDefinitionConditionOverrides;
38006
+ /**
38007
+ * The type of segment dimension to use.
38008
+ */
38009
+ DimensionType: CustomerProfilesSegmentDefinitionAttributeDimensionType;
38010
+ /**
38011
+ * @minLength `1`
38012
+ * @maxLength `50`
38013
+ */
38014
+ Values: string[];
38015
+ };
38016
+ /**
38017
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.CalculatedCustomAttributes`.
38018
+ * One or more calculated attributes to use as criteria for the segment.
38019
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-calculatedcustomattributes.html}
38020
+ */
38021
+ export type CustomerProfilesSegmentDefinitionCalculatedCustomAttributes = Record<string, CustomerProfilesSegmentDefinitionCalculatedAttributeDimension>;
38022
+ /**
38023
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.ConditionOverrides`.
38024
+ * Overrides the condition block within the original calculated attribute definition.
38025
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-conditionoverrides.html}
38026
+ */
38027
+ export type CustomerProfilesSegmentDefinitionConditionOverrides = {
38028
+ /**
38029
+ * Defines the range to be applied to the calculated attribute definition.
38030
+ */
38031
+ Range?: CustomerProfilesSegmentDefinitionRangeOverride;
38032
+ };
38033
+ /**
38034
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.CustomAttributes`.
38035
+ * One or more custom attributes to use as criteria for the segment.
38036
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-customattributes.html}
38037
+ */
38038
+ export type CustomerProfilesSegmentDefinitionCustomAttributes = Record<string, CustomerProfilesSegmentDefinitionAttributeDimension>;
38039
+ /**
38040
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.DateDimension`.
38041
+ * Specifies date based criteria for a segment.
38042
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-datedimension.html}
38043
+ */
38044
+ export type CustomerProfilesSegmentDefinitionDateDimension = {
38045
+ /**
38046
+ * The type of segment dimension to use for a date dimension.
38047
+ */
38048
+ DimensionType: CustomerProfilesSegmentDefinitionDateDimensionType;
38049
+ /**
38050
+ * @minLength `1`
38051
+ * @maxLength `50`
38052
+ */
38053
+ Values: string[];
38054
+ };
38055
+ /**
38056
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.DateDimensionType`.
38057
+ * The type of segment dimension to use for a date dimension.
38058
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-datedimensiontype.html}
38059
+ */
38060
+ export type CustomerProfilesSegmentDefinitionDateDimensionType = "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON";
38061
+ /**
38062
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.Dimension`.
38063
+ * The criteria that define the dimensions for the segment.
38064
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-dimension.html}
38065
+ */
38066
+ export type CustomerProfilesSegmentDefinitionDimension = {
38067
+ /**
38068
+ * Specifies the dimension settings within profile attributes for a segment.
38069
+ */
38070
+ ProfileAttributes: CustomerProfilesSegmentDefinitionProfileAttributes;
38071
+ } | {
38072
+ /**
38073
+ * One or more calculated attributes to use as criteria for the segment.
38074
+ */
38075
+ CalculatedAttributes?: CustomerProfilesSegmentDefinitionCalculatedCustomAttributes;
38076
+ };
38077
+ /**
38078
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.ExtraLengthValueProfileDimension`.
38079
+ * Specifies criteria for a segment using extended-length string values.
38080
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-extralengthvalueprofiledimension.html}
38081
+ */
38082
+ export type CustomerProfilesSegmentDefinitionExtraLengthValueProfileDimension = {
38083
+ /**
38084
+ * The type of segment dimension to use for a string dimension.
38085
+ */
38086
+ DimensionType: CustomerProfilesSegmentDefinitionStringDimensionType;
38087
+ /**
38088
+ * @minLength `1`
38089
+ * @maxLength `50`
38090
+ */
38091
+ Values: string[];
38092
+ };
38093
+ /**
38094
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.Group`.
38095
+ * An array that defines the set of segment criteria to evaluate when handling segment groups for the segment.
38096
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-group.html}
38097
+ */
38098
+ export type CustomerProfilesSegmentDefinitionGroup = {
38099
+ Dimensions?: CustomerProfilesSegmentDefinitionDimension[];
38100
+ SourceSegments?: CustomerProfilesSegmentDefinitionSourceSegment[];
38101
+ /**
38102
+ * Specifies the operator on how to handle multiple groups within the same segment.
38103
+ */
38104
+ SourceType?: CustomerProfilesSegmentDefinitionIncludeOptions;
38105
+ /**
38106
+ * Specifies the operator on how to handle multiple groups within the same segment.
38107
+ */
38108
+ Type?: CustomerProfilesSegmentDefinitionIncludeOptions;
38109
+ };
38110
+ /**
38111
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.IncludeOptions`.
38112
+ * Specifies the operator on how to handle multiple groups within the same segment.
38113
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-includeoptions.html}
38114
+ */
38115
+ export type CustomerProfilesSegmentDefinitionIncludeOptions = "ALL" | "ANY" | "NONE";
38116
+ /**
38117
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.ProfileAttributes`.
38118
+ * Specifies the dimension settings within profile attributes for a segment.
38119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html}
38120
+ */
38121
+ export type CustomerProfilesSegmentDefinitionProfileAttributes = {
38122
+ /**
38123
+ * Specifies profile based criteria for a segment.
38124
+ */
38125
+ AccountNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
38126
+ /**
38127
+ * Specifies criteria for a segment using extended-length string values.
38128
+ */
38129
+ AdditionalInformation?: CustomerProfilesSegmentDefinitionExtraLengthValueProfileDimension;
38130
+ /**
38131
+ * The address based criteria for the segment.
38132
+ */
38133
+ Address?: CustomerProfilesSegmentDefinitionAddressDimension;
38134
+ /**
38135
+ * One or more custom attributes to use as criteria for the segment.
38136
+ */
38137
+ Attributes?: CustomerProfilesSegmentDefinitionCustomAttributes;
38138
+ /**
38139
+ * The address based criteria for the segment.
38140
+ */
38141
+ BillingAddress?: CustomerProfilesSegmentDefinitionAddressDimension;
38142
+ /**
38143
+ * Specifies date based criteria for a segment.
38144
+ */
38145
+ BirthDate?: CustomerProfilesSegmentDefinitionDateDimension;
38146
+ /**
38147
+ * Specifies profile based criteria for a segment.
38148
+ */
38149
+ BusinessEmailAddress?: CustomerProfilesSegmentDefinitionProfileDimension;
38150
+ /**
38151
+ * Specifies profile based criteria for a segment.
38152
+ */
38153
+ BusinessName?: CustomerProfilesSegmentDefinitionProfileDimension;
38154
+ /**
38155
+ * Specifies profile based criteria for a segment.
38156
+ */
38157
+ BusinessPhoneNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
38158
+ /**
38159
+ * Specifies profile based criteria for a segment.
38160
+ */
38161
+ EmailAddress?: CustomerProfilesSegmentDefinitionProfileDimension;
38162
+ /**
38163
+ * Specifies profile based criteria for a segment.
38164
+ */
38165
+ FirstName?: CustomerProfilesSegmentDefinitionProfileDimension;
38166
+ /**
38167
+ * Specifies profile based criteria for a segment.
38168
+ */
38169
+ GenderString?: CustomerProfilesSegmentDefinitionProfileDimension;
38170
+ /**
38171
+ * Specifies profile based criteria for a segment.
38172
+ */
38173
+ HomePhoneNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
38174
+ /**
38175
+ * Specifies profile based criteria for a segment.
38176
+ */
38177
+ LastName?: CustomerProfilesSegmentDefinitionProfileDimension;
38178
+ /**
38179
+ * The address based criteria for the segment.
38180
+ */
38181
+ MailingAddress?: CustomerProfilesSegmentDefinitionAddressDimension;
38182
+ /**
38183
+ * Specifies profile based criteria for a segment.
38184
+ */
38185
+ MiddleName?: CustomerProfilesSegmentDefinitionProfileDimension;
38186
+ /**
38187
+ * Specifies profile based criteria for a segment.
38188
+ */
38189
+ MobilePhoneNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
38190
+ /**
38191
+ * Specifies profile based criteria for a segment.
38192
+ */
38193
+ PartyTypeString?: CustomerProfilesSegmentDefinitionProfileDimension;
38194
+ /**
38195
+ * Specifies profile based criteria for a segment.
38196
+ */
38197
+ PersonalEmailAddress?: CustomerProfilesSegmentDefinitionProfileDimension;
38198
+ /**
38199
+ * Specifies profile based criteria for a segment.
38200
+ */
38201
+ PhoneNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
38202
+ /**
38203
+ * The address based criteria for the segment.
38204
+ */
38205
+ ShippingAddress?: CustomerProfilesSegmentDefinitionAddressDimension;
38206
+ };
38207
+ /**
38208
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.ProfileDimension`.
38209
+ * Specifies profile based criteria for a segment.
38210
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiledimension.html}
38211
+ */
38212
+ export type CustomerProfilesSegmentDefinitionProfileDimension = {
38213
+ /**
38214
+ * The type of segment dimension to use for a string dimension.
38215
+ */
38216
+ DimensionType: CustomerProfilesSegmentDefinitionStringDimensionType;
38217
+ /**
38218
+ * @minLength `1`
38219
+ * @maxLength `50`
38220
+ */
38221
+ Values: string[];
38222
+ };
38223
+ /**
38224
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.RangeOverride`.
38225
+ * Defines the range to be applied to the calculated attribute definition.
38226
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-rangeoverride.html}
38227
+ */
38228
+ export type CustomerProfilesSegmentDefinitionRangeOverride = {
38229
+ /**
38230
+ * The ending point for this overridden range.
38231
+ * @min `0`
38232
+ * @max `366`
38233
+ */
38234
+ End?: number;
38235
+ /**
38236
+ * The starting point for this overridden range.
38237
+ * @min `1`
38238
+ * @max `366`
38239
+ */
38240
+ Start: number;
38241
+ /**
38242
+ * The unit to be applied to the range.
38243
+ */
38244
+ Unit: "DAYS";
38245
+ };
38246
+ /**
38247
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.SegmentGroup`.
38248
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-segmentgroup.html}
38249
+ */
38250
+ export type CustomerProfilesSegmentDefinitionSegmentGroup = {
38251
+ Groups?: CustomerProfilesSegmentDefinitionGroup[];
38252
+ /**
38253
+ * Specifies the operator on how to handle multiple groups within the same segment.
38254
+ */
38255
+ Include?: CustomerProfilesSegmentDefinitionIncludeOptions;
38256
+ };
38257
+ /**
38258
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.SourceSegment`.
38259
+ * The base segment to build the segment on.
38260
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-sourcesegment.html}
38261
+ */
38262
+ export type CustomerProfilesSegmentDefinitionSourceSegment = {
38263
+ /**
38264
+ * @minLength `1`
38265
+ * @maxLength `64`
38266
+ * @pattern `^[a-zA-Z0-9_-]+$`
38267
+ */
38268
+ SegmentDefinitionName?: string;
38269
+ };
38270
+ /**
38271
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.StringDimensionType`.
38272
+ * The type of segment dimension to use for a string dimension.
38273
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-stringdimensiontype.html}
38274
+ */
38275
+ export type CustomerProfilesSegmentDefinitionStringDimensionType = "INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH";
38276
+ /**
38277
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.Tag`.
38278
+ * A key-value pair to associate with a resource.
38279
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-tag.html}
38280
+ */
38281
+ export type CustomerProfilesSegmentDefinitionTag = {
38282
+ /**
38283
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
38284
+ * @minLength `1`
38285
+ * @maxLength `128`
38286
+ * @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
38287
+ */
38288
+ Key: string;
38289
+ /**
38290
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
38291
+ * @minLength `0`
38292
+ * @maxLength `256`
38293
+ */
38294
+ Value: string;
38295
+ };
36628
38296
  /**
36629
38297
  * Resource schema for AWS::DataBrew::Dataset.
36630
38298
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-dataset.html}
@@ -44098,6 +45766,9 @@ export type DynamoDBTableProps = {
44098
45766
  For detailed information about the limits in DynamoDB, see [Limits in Amazon DynamoDB](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) in the Amazon DynamoDB Developer Guide.
44099
45767
  */
44100
45768
  TimeToLiveSpecification?: DynamoDBTableTimeToLiveSpecification;
45769
+ /**
45770
+ * Represents the warm throughput (in read units per second and write units per second) for creating a table.
45771
+ */
44101
45772
  WarmThroughput?: DynamoDBTableWarmThroughput;
44102
45773
  };
44103
45774
  /**
@@ -44188,6 +45859,9 @@ export type DynamoDBTableGlobalSecondaryIndex = {
44188
45859
  For current minimum and maximum provisioned throughput values, see [Service, Account, and Table Quotas](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) in the *Amazon DynamoDB Developer Guide*.
44189
45860
  */
44190
45861
  ProvisionedThroughput?: DynamoDBTableProvisionedThroughput;
45862
+ /**
45863
+ * Represents the warm throughput value (in read units per second and write units per second) for the specified secondary index. If you use this parameter, you must specify ``ReadUnitsPerSecond``, ``WriteUnitsPerSecond``, or both.
45864
+ */
44191
45865
  WarmThroughput?: DynamoDBTableWarmThroughput;
44192
45866
  };
44193
45867
  /**
@@ -44469,14 +46143,17 @@ export type DynamoDBTableTimeToLiveSpecification = {
44469
46143
  };
44470
46144
  /**
44471
46145
  * Type definition for `AWS::DynamoDB::Table.WarmThroughput`.
46146
+ * Provides visibility into the number of read and write operations your table or secondary index can instantaneously support. The settings can be modified using the ``UpdateTable`` operation to meet the throughput requirements of an upcoming peak event.
44472
46147
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-warmthroughput.html}
44473
46148
  */
44474
46149
  export type DynamoDBTableWarmThroughput = {
44475
46150
  /**
46151
+ * Represents the number of read operations your base table can instantaneously support.
44476
46152
  * @min `1`
44477
46153
  */
44478
46154
  ReadUnitsPerSecond?: number;
44479
46155
  /**
46156
+ * Represents the number of write operations your base table can instantaneously support.
44480
46157
  * @min `1`
44481
46158
  */
44482
46159
  WriteUnitsPerSecond?: number;
@@ -46704,6 +48381,13 @@ export type EC2LaunchTemplateBaselineEbsBandwidthMbps = {
46704
48381
  */
46705
48382
  Min?: number;
46706
48383
  };
48384
+ /**
48385
+ * Type definition for `AWS::EC2::LaunchTemplate.BaselinePerformanceFactors`.
48386
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-baselineperformancefactors.html}
48387
+ */
48388
+ export type EC2LaunchTemplateBaselinePerformanceFactors = {
48389
+ Cpu?: EC2LaunchTemplateCpu;
48390
+ };
46707
48391
  /**
46708
48392
  * Type definition for `AWS::EC2::LaunchTemplate.BlockDeviceMapping`.
46709
48393
  * Specifies a block device mapping for a launch template. You must specify ``DeviceName`` plus exactly one of the following properties: ``Ebs``, ``NoDevice``, or ``VirtualName``.
@@ -46781,6 +48465,16 @@ export type EC2LaunchTemplateConnectionTrackingSpecification = {
46781
48465
  */
46782
48466
  UdpTimeout?: number;
46783
48467
  };
48468
+ /**
48469
+ * Type definition for `AWS::EC2::LaunchTemplate.Cpu`.
48470
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-cpu.html}
48471
+ */
48472
+ export type EC2LaunchTemplateCpu = {
48473
+ /**
48474
+ * A list of references to be used as baseline for the CPU performance. Currently, you can only specify a single reference across different instance type variations such as CPU manufacturers, architectures etc.
48475
+ */
48476
+ References?: EC2LaunchTemplateReference[];
48477
+ };
46784
48478
  /**
46785
48479
  * Type definition for `AWS::EC2::LaunchTemplate.CpuOptions`.
46786
48480
  * Specifies the CPU options for an instance. For more information, see [Optimize CPU options](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-optimize-cpu.html) in the *User Guide*.
@@ -47050,6 +48744,7 @@ export type EC2LaunchTemplateInstanceRequirements = {
47050
48744
  Default: No minimum or maximum limits
47051
48745
  */
47052
48746
  BaselineEbsBandwidthMbps?: EC2LaunchTemplateBaselineEbsBandwidthMbps;
48747
+ BaselinePerformanceFactors?: EC2LaunchTemplateBaselinePerformanceFactors;
47053
48748
  /**
47054
48749
  * Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html).
47055
48750
  + To include burstable performance instance types, specify ``included``.
@@ -47704,6 +49399,16 @@ export type EC2LaunchTemplatePrivateIpAdd = {
47704
49399
  */
47705
49400
  PrivateIpAddress?: string;
47706
49401
  };
49402
+ /**
49403
+ * Type definition for `AWS::EC2::LaunchTemplate.Reference`.
49404
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-reference.html}
49405
+ */
49406
+ export type EC2LaunchTemplateReference = {
49407
+ /**
49408
+ * The instance family to refer. Ensure that you specify the correct family name. For example, C6i and C6g are valid values, but C6 is not.
49409
+ */
49410
+ InstanceFamily?: string;
49411
+ };
47707
49412
  /**
47708
49413
  * Type definition for `AWS::EC2::LaunchTemplate.SpotOptions`.
47709
49414
  * Specifies options for Spot Instances.
@@ -52166,6 +53871,77 @@ export type EC2VPCTag = {
52166
53871
  */
52167
53872
  Value: string;
52168
53873
  };
53874
+ /**
53875
+ * Resource Type definition for AWS::EC2::VPCBlockPublicAccessExclusion.
53876
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcblockpublicaccessexclusion.html}
53877
+ */
53878
+ export type EC2VPCBlockPublicAccessExclusionProps = {
53879
+ /**
53880
+ * The desired Block Public Access Exclusion Mode for a specific VPC/Subnet.
53881
+ */
53882
+ InternetGatewayExclusionMode: "allow-bidirectional" | "allow-egress";
53883
+ /**
53884
+ * The ID of the subnet. Required only if you don't specify VpcId
53885
+ */
53886
+ SubnetId?: string;
53887
+ /**
53888
+ * An array of key-value pairs to apply to this resource.
53889
+ */
53890
+ Tags?: EC2VPCBlockPublicAccessExclusionTag[];
53891
+ /**
53892
+ * The ID of the vpc. Required only if you don't specify SubnetId.
53893
+ */
53894
+ VpcId?: string;
53895
+ };
53896
+ /**
53897
+ * Attribute type definition for `AWS::EC2::VPCBlockPublicAccessExclusion`.
53898
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcblockpublicaccessexclusion.html#aws-resource-ec2-vpcblockpublicaccessexclusion-return-values}
53899
+ */
53900
+ export type EC2VPCBlockPublicAccessExclusionAttributes = {
53901
+ /**
53902
+ * The ID of the exclusion
53903
+ */
53904
+ ExclusionId: string;
53905
+ };
53906
+ /**
53907
+ * Type definition for `AWS::EC2::VPCBlockPublicAccessExclusion.Tag`.
53908
+ * A key-value pair to associate with a resource.
53909
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcblockpublicaccessexclusion-tag.html}
53910
+ */
53911
+ export type EC2VPCBlockPublicAccessExclusionTag = {
53912
+ /**
53913
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
53914
+ * @minLength `1`
53915
+ * @maxLength `128`
53916
+ */
53917
+ Key: string;
53918
+ /**
53919
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
53920
+ * @minLength `0`
53921
+ * @maxLength `256`
53922
+ */
53923
+ Value: string;
53924
+ };
53925
+ /**
53926
+ * Resource Type definition for AWS::EC2::VPCBlockPublicAccessOptions
53927
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcblockpublicaccessoptions.html}
53928
+ */
53929
+ export type EC2VPCBlockPublicAccessOptionsProps = {
53930
+ /**
53931
+ * The desired Block Public Access mode for Internet Gateways in your account. We do not allow to create in a off mode as this is the default value
53932
+ */
53933
+ InternetGatewayBlockMode: "block-bidirectional" | "block-ingress";
53934
+ };
53935
+ /**
53936
+ * Attribute type definition for `AWS::EC2::VPCBlockPublicAccessOptions`.
53937
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcblockpublicaccessoptions.html#aws-resource-ec2-vpcblockpublicaccessoptions-return-values}
53938
+ */
53939
+ export type EC2VPCBlockPublicAccessOptionsAttributes = {
53940
+ /**
53941
+ * The identifier for the specified AWS account.
53942
+ */
53943
+ AccountId: string;
53944
+ };
52169
53945
  /**
52170
53946
  * Resource Type definition for AWS::EC2::VPCCidrBlock
52171
53947
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpccidrblock.html}
@@ -58154,11 +59930,11 @@ export type ElasticLoadBalancingV2ListenerProps = {
58154
59930
  */
58155
59931
  MutualAuthentication?: ElasticLoadBalancingV2ListenerMutualAuthentication;
58156
59932
  /**
58157
- * The port on which the load balancer is listening. You cannot specify a port for a Gateway Load Balancer.
59933
+ * The port on which the load balancer is listening. You can't specify a port for a Gateway Load Balancer.
58158
59934
  */
58159
59935
  Port?: number;
58160
59936
  /**
58161
- * The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You can’t specify the UDP or TCP_UDP protocol if dual-stack mode is enabled. You cannot specify a protocol for a Gateway Load Balancer.
59937
+ * The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You can’t specify the UDP or TCP_UDP protocol if dual-stack mode is enabled. You can't specify a protocol for a Gateway Load Balancer.
58162
59938
  */
58163
59939
  Protocol?: string;
58164
59940
  /**
@@ -58426,7 +60202,7 @@ export type ElasticLoadBalancingV2ListenerRedirectConfig = {
58426
60202
  */
58427
60203
  Port?: string;
58428
60204
  /**
58429
- * The protocol. You can specify HTTP, HTTPS, or #{protocol}. You can redirect HTTP to HTTP, HTTP to HTTPS, and HTTPS to HTTPS. You cannot redirect HTTPS to HTTP.
60205
+ * The protocol. You can specify HTTP, HTTPS, or #{protocol}. You can redirect HTTP to HTTP, HTTP to HTTPS, and HTTPS to HTTPS. You can't redirect HTTPS to HTTP.
58430
60206
  */
58431
60207
  Protocol?: string;
58432
60208
  /**
@@ -58812,7 +60588,7 @@ export type ElasticLoadBalancingV2ListenerRuleRedirectConfig = {
58812
60588
  */
58813
60589
  Port?: string;
58814
60590
  /**
58815
- * The protocol. You can specify HTTP, HTTPS, or #{protocol}. You can redirect HTTP to HTTP, HTTP to HTTPS, and HTTPS to HTTPS. You cannot redirect HTTPS to HTTP.
60591
+ * The protocol. You can specify HTTP, HTTPS, or #{protocol}. You can redirect HTTP to HTTP, HTTP to HTTPS, and HTTPS to HTTPS. You can't redirect HTTPS to HTTP.
58816
60592
  */
58817
60593
  Protocol?: string;
58818
60594
  /**
@@ -79907,6 +81683,7 @@ export type IoTFleetWiseCampaignUpdateCampaignAction = "APPROVE" | "SUSPEND" | "
79907
81683
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-decodermanifest.html}
79908
81684
  */
79909
81685
  export type IoTFleetWiseDecoderManifestProps = {
81686
+ DefaultForUnmappedSignals?: IoTFleetWiseDecoderManifestDefaultForUnmappedSignalsType;
79910
81687
  /**
79911
81688
  * @minLength `1`
79912
81689
  * @maxLength `2048`
@@ -79924,12 +81701,12 @@ export type IoTFleetWiseDecoderManifestProps = {
79924
81701
  * @minLength `1`
79925
81702
  * @maxLength `5000`
79926
81703
  */
79927
- NetworkInterfaces?: (IoTFleetWiseDecoderManifestCanNetworkInterface | IoTFleetWiseDecoderManifestObdNetworkInterface)[];
81704
+ NetworkInterfaces?: (IoTFleetWiseDecoderManifestCanNetworkInterface | IoTFleetWiseDecoderManifestObdNetworkInterface | IoTFleetWiseDecoderManifestCustomDecodingNetworkInterface)[];
79928
81705
  /**
79929
81706
  * @minLength `1`
79930
81707
  * @maxLength `5000`
79931
81708
  */
79932
- SignalDecoders?: (IoTFleetWiseDecoderManifestCanSignalDecoder | IoTFleetWiseDecoderManifestObdSignalDecoder)[];
81709
+ SignalDecoders?: (IoTFleetWiseDecoderManifestCanSignalDecoder | IoTFleetWiseDecoderManifestObdSignalDecoder | IoTFleetWiseDecoderManifestCustomDecodingSignalDecoder)[];
79933
81710
  Status?: IoTFleetWiseDecoderManifestManifestStatus;
79934
81711
  /**
79935
81712
  * @minLength `0`
@@ -80016,6 +81793,66 @@ export type IoTFleetWiseDecoderManifestCanSignalDecoder = {
80016
81793
  InterfaceId: string;
80017
81794
  Type: "CAN_SIGNAL";
80018
81795
  };
81796
+ /**
81797
+ * Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingInterface`.
81798
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodinginterface.html}
81799
+ */
81800
+ export type IoTFleetWiseDecoderManifestCustomDecodingInterface = {
81801
+ /**
81802
+ * @minLength `1`
81803
+ * @maxLength `100`
81804
+ * @pattern `^[a-zA-Z\d\-_:]+$`
81805
+ */
81806
+ Name: string;
81807
+ };
81808
+ /**
81809
+ * Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingNetworkInterface`.
81810
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodingnetworkinterface.html}
81811
+ */
81812
+ export type IoTFleetWiseDecoderManifestCustomDecodingNetworkInterface = {
81813
+ CustomDecodingInterface: IoTFleetWiseDecoderManifestCustomDecodingInterface;
81814
+ /**
81815
+ * @minLength `1`
81816
+ * @maxLength `50`
81817
+ */
81818
+ InterfaceId: string;
81819
+ Type: "CUSTOM_DECODING_INTERFACE";
81820
+ };
81821
+ /**
81822
+ * Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingSignal`.
81823
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodingsignal.html}
81824
+ */
81825
+ export type IoTFleetWiseDecoderManifestCustomDecodingSignal = {
81826
+ /**
81827
+ * @minLength `1`
81828
+ * @maxLength `150`
81829
+ * @pattern `^(?!.*\.\.)[a-zA-Z0-9_\-#:.]+$`
81830
+ */
81831
+ Id: string;
81832
+ };
81833
+ /**
81834
+ * Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingSignalDecoder`.
81835
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodingsignaldecoder.html}
81836
+ */
81837
+ export type IoTFleetWiseDecoderManifestCustomDecodingSignalDecoder = {
81838
+ CustomDecodingSignal: IoTFleetWiseDecoderManifestCustomDecodingSignal;
81839
+ /**
81840
+ * @minLength `1`
81841
+ * @maxLength `150`
81842
+ */
81843
+ FullyQualifiedName: string;
81844
+ /**
81845
+ * @minLength `1`
81846
+ * @maxLength `50`
81847
+ */
81848
+ InterfaceId: string;
81849
+ Type: "CUSTOM_DECODING_SIGNAL";
81850
+ };
81851
+ /**
81852
+ * Type definition for `AWS::IoTFleetWise::DecoderManifest.DefaultForUnmappedSignalsType`.
81853
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-defaultforunmappedsignalstype.html}
81854
+ */
81855
+ export type IoTFleetWiseDecoderManifestDefaultForUnmappedSignalsType = "CUSTOM_DECODING";
80019
81856
  /**
80020
81857
  * Type definition for `AWS::IoTFleetWise::DecoderManifest.ManifestStatus`.
80021
81858
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-manifeststatus.html}
@@ -80369,6 +82206,70 @@ export type IoTFleetWiseSignalCatalogTag = {
80369
82206
  */
80370
82207
  Value: string;
80371
82208
  };
82209
+ /**
82210
+ * Definition of AWS::IoTFleetWise::StateTemplate Resource Type
82211
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html}
82212
+ */
82213
+ export type IoTFleetWiseStateTemplateProps = {
82214
+ /**
82215
+ * @minLength `0`
82216
+ * @maxLength `5`
82217
+ */
82218
+ DataExtraDimensions?: string[];
82219
+ /**
82220
+ * @minLength `1`
82221
+ * @maxLength `2048`
82222
+ * @pattern `^[^\u0000-\u001F\u007F]+$`
82223
+ */
82224
+ Description?: string;
82225
+ /**
82226
+ * @minLength `0`
82227
+ * @maxLength `5`
82228
+ */
82229
+ MetadataExtraDimensions?: string[];
82230
+ /**
82231
+ * @minLength `1`
82232
+ * @maxLength `100`
82233
+ * @pattern `^[a-zA-Z\d\-_:]+$`
82234
+ */
82235
+ Name: string;
82236
+ SignalCatalogArn: string;
82237
+ /**
82238
+ * @minLength `1`
82239
+ * @maxLength `500`
82240
+ */
82241
+ StateTemplateProperties: string[];
82242
+ /**
82243
+ * @minLength `0`
82244
+ * @maxLength `50`
82245
+ */
82246
+ Tags?: IoTFleetWiseStateTemplateTag[];
82247
+ };
82248
+ /**
82249
+ * Attribute type definition for `AWS::IoTFleetWise::StateTemplate`.
82250
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#aws-resource-iotfleetwise-statetemplate-return-values}
82251
+ */
82252
+ export type IoTFleetWiseStateTemplateAttributes = {
82253
+ Arn: string;
82254
+ CreationTime: string;
82255
+ LastModificationTime: string;
82256
+ };
82257
+ /**
82258
+ * Type definition for `AWS::IoTFleetWise::StateTemplate.Tag`.
82259
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-statetemplate-tag.html}
82260
+ */
82261
+ export type IoTFleetWiseStateTemplateTag = {
82262
+ /**
82263
+ * @minLength `1`
82264
+ * @maxLength `128`
82265
+ */
82266
+ Key: string;
82267
+ /**
82268
+ * @minLength `0`
82269
+ * @maxLength `256`
82270
+ */
82271
+ Value: string;
82272
+ };
80372
82273
  /**
80373
82274
  * Definition of AWS::IoTFleetWise::Vehicle Resource Type
80374
82275
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-vehicle.html}
@@ -81347,6 +83248,14 @@ export type IoTSiteWisePortalProps = {
81347
83248
  * A friendly name for the portal.
81348
83249
  */
81349
83250
  PortalName: string;
83251
+ /**
83252
+ * The type of portal
83253
+ */
83254
+ PortalType?: "SITEWISE_PORTAL_V1" | "SITEWISE_PORTAL_V2";
83255
+ /**
83256
+ * Map to associate detail of configuration related with a PortalType.
83257
+ */
83258
+ PortalTypeConfiguration?: IoTSiteWisePortalPortalTypeConfiguration;
81350
83259
  /**
81351
83260
  * The ARN of a service role that allows the portal's users to access your AWS IoT SiteWise resources on your behalf.
81352
83261
  */
@@ -81378,6 +83287,23 @@ export type IoTSiteWisePortalAttributes = {
81378
83287
  */
81379
83288
  PortalStartUrl: string;
81380
83289
  };
83290
+ /**
83291
+ * Type definition for `AWS::IoTSiteWise::Portal.PortalTypeConfiguration`.
83292
+ * Map to associate detail of configuration related with a PortalType.
83293
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-portal-portaltypeconfiguration.html}
83294
+ */
83295
+ export type IoTSiteWisePortalPortalTypeConfiguration = Record<string, IoTSiteWisePortalPortalTypeEntry>;
83296
+ /**
83297
+ * Type definition for `AWS::IoTSiteWise::Portal.PortalTypeEntry`.
83298
+ * Container associated a certain PortalType.
83299
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-portal-portaltypeentry.html}
83300
+ */
83301
+ export type IoTSiteWisePortalPortalTypeEntry = {
83302
+ /**
83303
+ * List of enabled Tools for a certain portal.
83304
+ */
83305
+ PortalTools: string[];
83306
+ };
81381
83307
  /**
81382
83308
  * Type definition for `AWS::IoTSiteWise::Portal.Tag`.
81383
83309
  * To add or update tag, provide both key and value. To delete tag, provide only tag key to be deleted.
@@ -83774,6 +85700,87 @@ export type IVSEncoderConfigurationTag = {
83774
85700
  */
83775
85701
  Value: string;
83776
85702
  };
85703
+ /**
85704
+ * Resource Type definition for AWS::IVS::IngestConfiguration
85705
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html}
85706
+ */
85707
+ export type IVSIngestConfigurationProps = {
85708
+ /**
85709
+ * Ingest Protocol.
85710
+ */
85711
+ IngestProtocol?: "RTMP" | "RTMPS";
85712
+ /**
85713
+ * Whether ingest configuration allows insecure ingest.
85714
+ */
85715
+ InsecureIngest?: boolean;
85716
+ /**
85717
+ * IngestConfiguration
85718
+ * @minLength `0`
85719
+ * @maxLength `128`
85720
+ * @pattern `^[a-zA-Z0-9-_]*$`
85721
+ */
85722
+ Name?: string;
85723
+ /**
85724
+ * Stage ARN. A value other than an empty string indicates that stage is linked to IngestConfiguration. Default: "" (recording is disabled).
85725
+ * @minLength `0`
85726
+ * @maxLength `128`
85727
+ * @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:stage/[a-zA-Z0-9-]+$`
85728
+ */
85729
+ StageArn?: string;
85730
+ /**
85731
+ * A list of key-value pairs that contain metadata for the asset model.
85732
+ * @maxLength `50`
85733
+ */
85734
+ Tags?: IVSIngestConfigurationTag[];
85735
+ /**
85736
+ * User defined indentifier for participant associated with IngestConfiguration.
85737
+ */
85738
+ UserId?: string;
85739
+ };
85740
+ /**
85741
+ * Attribute type definition for `AWS::IVS::IngestConfiguration`.
85742
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#aws-resource-ivs-ingestconfiguration-return-values}
85743
+ */
85744
+ export type IVSIngestConfigurationAttributes = {
85745
+ /**
85746
+ * IngestConfiguration ARN is automatically generated on creation and assigned as the unique identifier.
85747
+ * @minLength `1`
85748
+ * @maxLength `128`
85749
+ * @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:ingest-configuration/[a-zA-Z0-9-]+$`
85750
+ */
85751
+ Arn: string;
85752
+ /**
85753
+ * Participant Id is automatically generated on creation and assigned.
85754
+ * @minLength `0`
85755
+ * @maxLength `64`
85756
+ * @pattern `^[a-zA-Z0-9-_]*$`
85757
+ */
85758
+ ParticipantId: string;
85759
+ /**
85760
+ * State of IngestConfiguration which determines whether IngestConfiguration is in use or not.
85761
+ */
85762
+ State: "ACTIVE" | "INACTIVE";
85763
+ /**
85764
+ * Stream-key value.
85765
+ */
85766
+ StreamKey: string;
85767
+ };
85768
+ /**
85769
+ * Type definition for `AWS::IVS::IngestConfiguration.Tag`.
85770
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-ingestconfiguration-tag.html}
85771
+ */
85772
+ export type IVSIngestConfigurationTag = {
85773
+ /**
85774
+ * @minLength `1`
85775
+ * @maxLength `128`
85776
+ */
85777
+ Key: string;
85778
+ /**
85779
+ * @minLength `1`
85780
+ * @maxLength `256`
85781
+ */
85782
+ Value: string;
85783
+ };
83777
85784
  /**
83778
85785
  * Resource Type definition for AWS::IVS::PlaybackKeyPair
83779
85786
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html}
@@ -90376,6 +92383,7 @@ export type LambdaEventSourceMappingProps = {
90376
92383
  * @max `10`
90377
92384
  */
90378
92385
  ParallelizationFactor?: number;
92386
+ ProvisionedPollerConfig?: LambdaEventSourceMappingProvisionedPollerConfig;
90379
92387
  /**
90380
92388
  * (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.
90381
92389
  * @minLength `1`
@@ -90567,6 +92575,24 @@ export type LambdaEventSourceMappingOnFailure = {
90567
92575
  */
90568
92576
  Destination?: string;
90569
92577
  };
92578
+ /**
92579
+ * Type definition for `AWS::Lambda::EventSourceMapping.ProvisionedPollerConfig`.
92580
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-provisionedpollerconfig.html}
92581
+ */
92582
+ export type LambdaEventSourceMappingProvisionedPollerConfig = {
92583
+ /**
92584
+ * The maximum number of event pollers this event source can scale up to.
92585
+ * @min `1`
92586
+ * @max `2000`
92587
+ */
92588
+ MaximumPollers?: number;
92589
+ /**
92590
+ * The minimum number of event pollers this event source can scale down to.
92591
+ * @min `1`
92592
+ * @max `200`
92593
+ */
92594
+ MinimumPollers?: number;
92595
+ };
90570
92596
  /**
90571
92597
  * Type definition for `AWS::Lambda::EventSourceMapping.ScalingConfig`.
90572
92598
  * (Amazon SQS only) The scaling configuration for the event source. To remove the configuration, pass an empty value.
@@ -97101,6 +99127,42 @@ export type M2ApplicationEngineType = "microfocus" | "bluage";
97101
99127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-m2-application-tagmap.html}
97102
99128
  */
97103
99129
  export type M2ApplicationTagMap = Record<string, string>;
99130
+ /**
99131
+ * Resource type definition for `AWS::M2::Deployment`.
99132
+ * Represents a deployment resource of an AWS Mainframe Modernization (M2) application to a specified environment
99133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html}
99134
+ */
99135
+ export type M2DeploymentProps = {
99136
+ /**
99137
+ * The application ID.
99138
+ * @pattern `^\S{1,80}$`
99139
+ */
99140
+ ApplicationId: string;
99141
+ /**
99142
+ * The version number of the application to deploy
99143
+ */
99144
+ ApplicationVersion: number;
99145
+ /**
99146
+ * The environment ID.
99147
+ * @pattern `^\S{1,80}$`
99148
+ */
99149
+ EnvironmentId: string;
99150
+ };
99151
+ /**
99152
+ * Attribute type definition for `AWS::M2::Deployment`.
99153
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html#aws-resource-m2-deployment-return-values}
99154
+ */
99155
+ export type M2DeploymentAttributes = {
99156
+ /**
99157
+ * The deployment ID.
99158
+ * @pattern `^\S{1,80}$`
99159
+ */
99160
+ DeploymentId: string;
99161
+ /**
99162
+ * The status of the deployment.
99163
+ */
99164
+ Status: string;
99165
+ };
97104
99166
  /**
97105
99167
  * Resource type definition for `AWS::M2::Environment`.
97106
99168
  * Represents a runtime environment that can run migrated mainframe applications.
@@ -109758,6 +111820,10 @@ export type OpenSearchServerlessSecurityConfigProps = {
109758
111820
  * @maxLength `1000`
109759
111821
  */
109760
111822
  Description?: string;
111823
+ /**
111824
+ * Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
111825
+ */
111826
+ IamIdentityCenterOptions?: OpenSearchServerlessSecurityConfigIamIdentityCenterConfigOptions;
109761
111827
  /**
109762
111828
  * The friendly name of the security config
109763
111829
  * @minLength `3`
@@ -109779,6 +111845,23 @@ export type OpenSearchServerlessSecurityConfigProps = {
109779
111845
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-securityconfig.html#aws-resource-opensearchserverless-securityconfig-return-values}
109780
111846
  */
109781
111847
  export type OpenSearchServerlessSecurityConfigAttributes = {
111848
+ /**
111849
+ * Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
111850
+ */
111851
+ IamIdentityCenterOptions: {
111852
+ /**
111853
+ * The ARN of the IAM Identity Center application used to integrate with OpenSearch Serverless
111854
+ */
111855
+ ApplicationArn: string;
111856
+ /**
111857
+ * The description of the IAM Identity Center application used to integrate with OpenSearch Serverless
111858
+ */
111859
+ ApplicationDescription: string;
111860
+ /**
111861
+ * The name of the IAM Identity Center application used to integrate with OpenSearch Serverless
111862
+ */
111863
+ ApplicationName: string;
111864
+ };
109782
111865
  /**
109783
111866
  * The identifier of the security config
109784
111867
  * @minLength `1`
@@ -109786,6 +111869,25 @@ export type OpenSearchServerlessSecurityConfigAttributes = {
109786
111869
  */
109787
111870
  Id: string;
109788
111871
  };
111872
+ /**
111873
+ * Type definition for `AWS::OpenSearchServerless::SecurityConfig.IamIdentityCenterConfigOptions`.
111874
+ * Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
111875
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-iamidentitycenterconfigoptions.html}
111876
+ */
111877
+ export type OpenSearchServerlessSecurityConfigIamIdentityCenterConfigOptions = {
111878
+ /**
111879
+ * Group attribute for this IAM Identity Center integration
111880
+ */
111881
+ GroupAttribute?: string;
111882
+ /**
111883
+ * The ARN of the IAM Identity Center instance used to integrate with OpenSearch Serverless
111884
+ */
111885
+ InstanceArn: string;
111886
+ /**
111887
+ * User attribute for this IAM Identity Center integration
111888
+ */
111889
+ UserAttribute?: string;
111890
+ };
109789
111891
  /**
109790
111892
  * Type definition for `AWS::OpenSearchServerless::SecurityConfig.SamlConfigOptions`.
109791
111893
  * Describes saml options in form of key value map
@@ -109823,7 +111925,7 @@ export type OpenSearchServerlessSecurityConfigSamlConfigOptions = {
109823
111925
  * Config type for security config
109824
111926
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-securityconfigtype.html}
109825
111927
  */
109826
- export type OpenSearchServerlessSecurityConfigSecurityConfigType = "saml";
111928
+ export type OpenSearchServerlessSecurityConfigSecurityConfigType = "saml" | "iamidentitycenter";
109827
111929
  /**
109828
111930
  * Resource type definition for `AWS::OpenSearchServerless::SecurityPolicy`.
109829
111931
  * Amazon OpenSearchServerless security policy resource
@@ -145346,6 +147448,7 @@ export type RDSGlobalClusterProps = {
145346
147448
  * @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
145347
147449
  */
145348
147450
  GlobalClusterIdentifier?: string;
147451
+ GlobalEndpoint?: RDSGlobalClusterGlobalEndpoint;
145349
147452
  /**
145350
147453
  * The Amazon Resource Name (ARN) to use as the primary cluster of the global database. This parameter is optional. This parameter is stored as a lowercase string.
145351
147454
  */
@@ -145361,6 +147464,16 @@ export type RDSGlobalClusterProps = {
145361
147464
  */
145362
147465
  Tags?: RDSGlobalClusterTag[];
145363
147466
  };
147467
+ /**
147468
+ * Type definition for `AWS::RDS::GlobalCluster.GlobalEndpoint`.
147469
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-globalcluster-globalendpoint.html}
147470
+ */
147471
+ export type RDSGlobalClusterGlobalEndpoint = {
147472
+ /**
147473
+ * The writer endpoint for the global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
147474
+ */
147475
+ Address?: string;
147476
+ };
145364
147477
  /**
145365
147478
  * Type definition for `AWS::RDS::GlobalCluster.Tag`.
145366
147479
  * A key-value pair to associate with a resource.
@@ -147911,6 +150024,72 @@ export type ResourceGroupsGroupTagFilter = {
147911
150024
  Key?: string;
147912
150025
  Values?: string[];
147913
150026
  };
150027
+ /**
150028
+ * Resource type definition for `AWS::ResourceGroups::TagSyncTask`.
150029
+ * Schema for ResourceGroups::TagSyncTask
150030
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html}
150031
+ */
150032
+ export type ResourceGroupsTagSyncTaskProps = {
150033
+ /**
150034
+ * The Amazon resource name (ARN) or name of the application group for which you want to create a tag-sync task
150035
+ * @minLength `12`
150036
+ * @maxLength `1600`
150037
+ * @pattern `([a-zA-Z0-9_\\.-]{1,150}/[a-z0-9]{26})|(arn:aws(-[a-z]+)*:resource-groups(-(test|beta|gamma))?:[a-z]{2}(-[a-z]+)+-\d{1}:[0-9]{12}:group/[a-zA-Z0-9_\\.-]{1,150}/[a-z0-9]{26})`
150038
+ */
150039
+ Group: string;
150040
+ /**
150041
+ * The Amazon resource name (ARN) of the role assumed by the service to tag and untag resources on your behalf.
150042
+ * @minLength `20`
150043
+ * @maxLength `2048`
150044
+ * @pattern `arn:(aws[a-zA-Z-]*)?:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
150045
+ */
150046
+ RoleArn: string;
150047
+ /**
150048
+ * The tag key. Resources tagged with this tag key-value pair will be added to the application. If a resource with this tag is later untagged, the tag-sync task removes the resource from the application.
150049
+ * @minLength `1`
150050
+ * @maxLength `128`
150051
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
150052
+ */
150053
+ TagKey: string;
150054
+ /**
150055
+ * The tag value. Resources tagged with this tag key-value pair will be added to the application. If a resource with this tag is later untagged, the tag-sync task removes the resource from the application.
150056
+ * @minLength `0`
150057
+ * @maxLength `256`
150058
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
150059
+ */
150060
+ TagValue: string;
150061
+ };
150062
+ /**
150063
+ * Attribute type definition for `AWS::ResourceGroups::TagSyncTask`.
150064
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html#aws-resource-resourcegroups-tagsynctask-return-values}
150065
+ */
150066
+ export type ResourceGroupsTagSyncTaskAttributes = {
150067
+ /**
150068
+ * The Amazon resource name (ARN) of the ApplicationGroup for which the TagSyncTask is created
150069
+ * @minLength `12`
150070
+ * @maxLength `1600`
150071
+ * @pattern `arn:aws(-[a-z]+)*:resource-groups(-(test|beta|gamma))?:[a-z]{2}(-[a-z]+)+-\d{1}:[0-9]{12}:group/[a-zA-Z0-9_\.-]{1,150}/[a-z0-9]{26}`
150072
+ */
150073
+ GroupArn: string;
150074
+ /**
150075
+ * The Name of the application group for which the TagSyncTask is created
150076
+ * @minLength `1`
150077
+ * @maxLength `300`
150078
+ * @pattern `[a-zA-Z0-9_\.-]{1,150}/[a-z0-9]{26}`
150079
+ */
150080
+ GroupName: string;
150081
+ /**
150082
+ * The status of the TagSyncTask
150083
+ */
150084
+ Status: "ACTIVE" | "ERROR";
150085
+ /**
150086
+ * The ARN of the TagSyncTask resource
150087
+ * @minLength `12`
150088
+ * @maxLength `1600`
150089
+ * @pattern `arn:aws(-[a-z]+)*:resource-groups(-(test|beta|gamma))?:[a-z]{2}(-[a-z]+)+-\d{1}:[0-9]{12}:group/[a-zA-Z0-9_\.-]{1,150}/[a-z0-9]{26}/tag-sync-task/[a-z0-9]{26}`
150090
+ */
150091
+ TaskArn: string;
150092
+ };
147914
150093
  /**
147915
150094
  * AWS::RoboMaker::Fleet resource creates an AWS RoboMaker fleet. Fleets contain robots and can receive deployments.
147916
150095
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html}
@@ -152946,6 +155125,10 @@ export type S3ExpressDirectoryBucketProps = {
152946
155125
  * Specifies the number of Availability Zone that's used for redundancy for the bucket.
152947
155126
  */
152948
155127
  DataRedundancy: "SingleAvailabilityZone";
155128
+ /**
155129
+ * Lifecycle rules that define how Amazon S3 Express manages objects during their lifetime.
155130
+ */
155131
+ LifecycleConfiguration?: S3ExpressDirectoryBucketLifecycleConfiguration;
152949
155132
  /**
152950
155133
  * Specifies the AZ ID of the Availability Zone where the directory bucket will be created. An example AZ ID value is 'use1-az5'.
152951
155134
  */
@@ -152965,6 +155148,18 @@ export type S3ExpressDirectoryBucketAttributes = {
152965
155148
  */
152966
155149
  AvailabilityZoneName: string;
152967
155150
  };
155151
+ /**
155152
+ * Type definition for `AWS::S3Express::DirectoryBucket.AbortIncompleteMultipartUpload`.
155153
+ * Specifies the days since the initiation of an incomplete multipart upload that Amazon S3 will wait before permanently removing all parts of the upload.
155154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-abortincompletemultipartupload.html}
155155
+ */
155156
+ export type S3ExpressDirectoryBucketAbortIncompleteMultipartUpload = {
155157
+ /**
155158
+ * Specifies the number of days after which Amazon S3 aborts an incomplete multipart upload.
155159
+ * @min `0`
155160
+ */
155161
+ DaysAfterInitiation: number;
155162
+ };
152968
155163
  /**
152969
155164
  * Type definition for `AWS::S3Express::DirectoryBucket.BucketEncryption`.
152970
155165
  * Specifies default encryption for a bucket using server-side encryption with Amazon S3 managed keys (SSE-S3) or AWS KMS keys (SSE-KMS).
@@ -152976,6 +155171,44 @@ export type S3ExpressDirectoryBucketBucketEncryption = {
152976
155171
  */
152977
155172
  ServerSideEncryptionConfiguration: S3ExpressDirectoryBucketServerSideEncryptionRule[];
152978
155173
  };
155174
+ /**
155175
+ * Type definition for `AWS::S3Express::DirectoryBucket.LifecycleConfiguration`.
155176
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-lifecycleconfiguration.html}
155177
+ */
155178
+ export type S3ExpressDirectoryBucketLifecycleConfiguration = {
155179
+ /**
155180
+ * A lifecycle rule for individual objects in an Amazon S3 Express bucket.
155181
+ */
155182
+ Rules: S3ExpressDirectoryBucketRule[];
155183
+ };
155184
+ /**
155185
+ * Type definition for `AWS::S3Express::DirectoryBucket.Rule`.
155186
+ * You must specify at least one of the following properties: AbortIncompleteMultipartUpload, or ExpirationInDays.
155187
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-rule.html}
155188
+ */
155189
+ export type S3ExpressDirectoryBucketRule = {
155190
+ /**
155191
+ * Specifies the days since the initiation of an incomplete multipart upload that Amazon S3 will wait before permanently removing all parts of the upload.
155192
+ */
155193
+ AbortIncompleteMultipartUpload?: S3ExpressDirectoryBucketAbortIncompleteMultipartUpload;
155194
+ ExpirationInDays?: number;
155195
+ /**
155196
+ * @maxLength `255`
155197
+ */
155198
+ Id?: string;
155199
+ /**
155200
+ * @maxLength `20`
155201
+ * @pattern `[0-9]+`
155202
+ */
155203
+ ObjectSizeGreaterThan?: string;
155204
+ /**
155205
+ * @maxLength `20`
155206
+ * @pattern `[0-9]+`
155207
+ */
155208
+ ObjectSizeLessThan?: string;
155209
+ Prefix?: string;
155210
+ Status: "Enabled" | "Disabled";
155211
+ };
152979
155212
  /**
152980
155213
  * Type definition for `AWS::S3Express::DirectoryBucket.ServerSideEncryptionByDefault`.
152981
155214
  * Specifies the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied.
@@ -153868,6 +156101,7 @@ export type SageMakerClusterClusterEbsVolumeConfig = {
153868
156101
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html}
153869
156102
  */
153870
156103
  export type SageMakerClusterClusterInstanceGroup = {
156104
+ CustomMetadata?: unknown;
153871
156105
  /**
153872
156106
  * The execution role for the instance group to assume.
153873
156107
  * @minLength `20`
@@ -155077,7 +157311,7 @@ export type SageMakerDomainLifecycleManagement = "ENABLED" | "DISABLED";
155077
157311
  * Type definition for `AWS::SageMaker::Domain.MlTools`.
155078
157312
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-mltools.html}
155079
157313
  */
155080
- export type SageMakerDomainMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization";
157314
+ export type SageMakerDomainMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard";
155081
157315
  /**
155082
157316
  * Type definition for `AWS::SageMaker::Domain.ResourceSpec`.
155083
157317
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-resourcespec.html}
@@ -156109,7 +158343,7 @@ export type SageMakerInferenceComponentProps = {
156109
158343
  /**
156110
158344
  * The runtime config for the inference component
156111
158345
  */
156112
- RuntimeConfig: SageMakerInferenceComponentInferenceComponentRuntimeConfig;
158346
+ RuntimeConfig?: SageMakerInferenceComponentInferenceComponentRuntimeConfig;
156113
158347
  /**
156114
158348
  * The specification for the inference component
156115
158349
  */
@@ -156124,7 +158358,7 @@ export type SageMakerInferenceComponentProps = {
156124
158358
  * @maxLength `63`
156125
158359
  * @pattern `^[a-zA-Z0-9](-*[a-zA-Z0-9])*$`
156126
158360
  */
156127
- VariantName: string;
158361
+ VariantName?: string;
156128
158362
  };
156129
158363
  /**
156130
158364
  * Attribute type definition for `AWS::SageMaker::InferenceComponent`.
@@ -156269,7 +158503,13 @@ export type SageMakerInferenceComponentInferenceComponentRuntimeConfig = {
156269
158503
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-inferencecomponentspecification.html}
156270
158504
  */
156271
158505
  export type SageMakerInferenceComponentInferenceComponentSpecification = {
156272
- ComputeResourceRequirements: SageMakerInferenceComponentInferenceComponentComputeResourceRequirements;
158506
+ /**
158507
+ * The name of the base inference component
158508
+ * @maxLength `63`
158509
+ * @pattern `^[a-zA-Z0-9](-*[a-zA-Z0-9])*$`
158510
+ */
158511
+ BaseInferenceComponentName?: string;
158512
+ ComputeResourceRequirements?: SageMakerInferenceComponentInferenceComponentComputeResourceRequirements;
156273
158513
  Container?: SageMakerInferenceComponentInferenceComponentContainerSpecification;
156274
158514
  /**
156275
158515
  * The name of the model to use with the inference component
@@ -158548,7 +160788,7 @@ export type SageMakerModelPackageAttributes = {
158548
160788
  * The Amazon Resource Name (ARN) of the model package group.
158549
160789
  * @minLength `1`
158550
160790
  * @maxLength `2048`
158551
- * @pattern `^arn:aws(-cn|-us-gov)?:sagemaker:[a-z0-9\-]{9,16}:[0-9]{12}:model-package/[\S]{1,2048}$`
160791
+ * @pattern `^arn:aws(-cn|-us-gov|-iso-f)?:sagemaker:[a-z0-9\-]{9,16}:[0-9]{12}:model-package/[\S]{1,2048}$`
158552
160792
  */
158553
160793
  ModelPackageArn: string;
158554
160794
  /**
@@ -161393,7 +163633,7 @@ export type SageMakerUserProfileLifecycleManagement = "ENABLED" | "DISABLED";
161393
163633
  * Type definition for `AWS::SageMaker::UserProfile.MlTools`.
161394
163634
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-mltools.html}
161395
163635
  */
161396
- export type SageMakerUserProfileMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization";
163636
+ export type SageMakerUserProfileMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard";
161397
163637
  /**
161398
163638
  * Type definition for `AWS::SageMaker::UserProfile.ResourceSpec`.
161399
163639
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-resourcespec.html}
@@ -170498,6 +172738,10 @@ export type SyntheticsCanaryProps = {
170498
172738
  * @pattern `^[0-9a-z_\-]{1,255}$`
170499
172739
  */
170500
172740
  Name: string;
172741
+ /**
172742
+ * Setting to control if provisioned resources created by Synthetics are deleted alongside the canary. Default is AUTOMATIC.
172743
+ */
172744
+ ProvisionedResourceCleanup?: "AUTOMATIC" | "OFF";
170501
172745
  /**
170502
172746
  * List of resources which canary tags should be replicated to.
170503
172747
  */
@@ -177566,6 +179810,696 @@ export type WisdomKnowledgeBaseTag = {
177566
179810
  */
177567
179811
  Value: string;
177568
179812
  };
179813
+ /**
179814
+ * Definition of AWS::Wisdom::MessageTemplate Resource Type
179815
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplate.html}
179816
+ */
179817
+ export type WisdomMessageTemplateProps = {
179818
+ /**
179819
+ * The channel subtype this message template applies to.
179820
+ */
179821
+ ChannelSubtype: WisdomMessageTemplateChannelSubtype;
179822
+ /**
179823
+ * The content of the message template.
179824
+ */
179825
+ Content: WisdomMessageTemplateContent;
179826
+ /**
179827
+ * An object that specifies the default values to use for variables in the message template. This object contains different categories of key-value pairs. Each key defines a variable or placeholder in the message template. The corresponding value defines the default value for that variable.
179828
+ */
179829
+ DefaultAttributes?: WisdomMessageTemplateMessageTemplateAttributes;
179830
+ /**
179831
+ * The description of the message template.
179832
+ * @minLength `1`
179833
+ * @maxLength `255`
179834
+ * @pattern `^[a-zA-Z0-9\\s_.,-]+`
179835
+ */
179836
+ Description?: string;
179837
+ /**
179838
+ * The configuration information of the user groups that the message template is accessible to.
179839
+ */
179840
+ GroupingConfiguration?: WisdomMessageTemplateGroupingConfiguration;
179841
+ /**
179842
+ * The Amazon Resource Name (ARN) of the knowledge base to which the message template belongs.
179843
+ * @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
179844
+ */
179845
+ KnowledgeBaseArn: string;
179846
+ /**
179847
+ * The language code value for the language in which the message template is written. The supported language codes include de_DE, en_US, es_ES, fr_FR, id_ID, it_IT, ja_JP, ko_KR, pt_BR, zh_CN, zh_TW
179848
+ * @minLength `2`
179849
+ * @maxLength `5`
179850
+ */
179851
+ Language?: string;
179852
+ /**
179853
+ * The name of the message template.
179854
+ * @minLength `1`
179855
+ * @maxLength `255`
179856
+ * @pattern `^[a-zA-Z0-9\\s_.,-]+`
179857
+ */
179858
+ Name: string;
179859
+ /**
179860
+ * The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
179861
+ */
179862
+ Tags?: WisdomMessageTemplateTag[];
179863
+ };
179864
+ /**
179865
+ * Attribute type definition for `AWS::Wisdom::MessageTemplate`.
179866
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplate.html#aws-resource-wisdom-messagetemplate-return-values}
179867
+ */
179868
+ export type WisdomMessageTemplateAttributes = {
179869
+ /**
179870
+ * The Amazon Resource Name (ARN) of the message template.
179871
+ * @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
179872
+ */
179873
+ MessageTemplateArn: string;
179874
+ /**
179875
+ * The content SHA256 of the message template.
179876
+ * @minLength `1`
179877
+ * @maxLength `64`
179878
+ */
179879
+ MessageTemplateContentSha256: string;
179880
+ /**
179881
+ * The unique identifier of the message template.
179882
+ * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
179883
+ */
179884
+ MessageTemplateId: string;
179885
+ };
179886
+ /**
179887
+ * Type definition for `AWS::Wisdom::MessageTemplate.AgentAttributes`.
179888
+ * The agent attributes that are used with the message template.
179889
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-agentattributes.html}
179890
+ */
179891
+ export type WisdomMessageTemplateAgentAttributes = {
179892
+ /**
179893
+ * The agent’s first name as entered in their Amazon Connect user account.
179894
+ * @minLength `1`
179895
+ * @maxLength `32767`
179896
+ */
179897
+ FirstName?: string;
179898
+ /**
179899
+ * The agent’s last name as entered in their Amazon Connect user account.
179900
+ * @minLength `1`
179901
+ * @maxLength `32767`
179902
+ */
179903
+ LastName?: string;
179904
+ };
179905
+ /**
179906
+ * Type definition for `AWS::Wisdom::MessageTemplate.ChannelSubtype`.
179907
+ * The channel subtype this message template applies to.
179908
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-channelsubtype.html}
179909
+ */
179910
+ export type WisdomMessageTemplateChannelSubtype = "EMAIL" | "SMS";
179911
+ /**
179912
+ * Type definition for `AWS::Wisdom::MessageTemplate.Content`.
179913
+ * The content of the message template.
179914
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-content.html}
179915
+ */
179916
+ export type WisdomMessageTemplateContent = {
179917
+ /**
179918
+ * The content of message template that applies to email channel subtype.
179919
+ */
179920
+ EmailMessageTemplateContent?: WisdomMessageTemplateEmailMessageTemplateContent;
179921
+ /**
179922
+ * The content of message template that applies to SMS channel subtype.
179923
+ */
179924
+ SmsMessageTemplateContent?: WisdomMessageTemplateSmsMessageTemplateContent;
179925
+ };
179926
+ /**
179927
+ * Type definition for `AWS::Wisdom::MessageTemplate.CustomAttributes`.
179928
+ * The custom attributes that are used with the message template.
179929
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-customattributes.html}
179930
+ */
179931
+ export type WisdomMessageTemplateCustomAttributes = Record<string, string>;
179932
+ /**
179933
+ * Type definition for `AWS::Wisdom::MessageTemplate.CustomerProfileAttributes`.
179934
+ * The customer profile attributes that are used with the message template.
179935
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-customerprofileattributes.html}
179936
+ */
179937
+ export type WisdomMessageTemplateCustomerProfileAttributes = {
179938
+ /**
179939
+ * A unique account number that you have given to the customer.
179940
+ * @minLength `1`
179941
+ * @maxLength `32767`
179942
+ */
179943
+ AccountNumber?: string;
179944
+ /**
179945
+ * Any additional information relevant to the customer's profile.
179946
+ * @minLength `1`
179947
+ * @maxLength `32767`
179948
+ */
179949
+ AdditionalInformation?: string;
179950
+ /**
179951
+ * The first line of a customer address.
179952
+ * @minLength `1`
179953
+ * @maxLength `32767`
179954
+ */
179955
+ Address1?: string;
179956
+ /**
179957
+ * The second line of a customer address.
179958
+ * @minLength `1`
179959
+ * @maxLength `32767`
179960
+ */
179961
+ Address2?: string;
179962
+ /**
179963
+ * The third line of a customer address.
179964
+ * @minLength `1`
179965
+ * @maxLength `32767`
179966
+ */
179967
+ Address3?: string;
179968
+ /**
179969
+ * The fourth line of a customer address.
179970
+ * @minLength `1`
179971
+ * @maxLength `32767`
179972
+ */
179973
+ Address4?: string;
179974
+ /**
179975
+ * The first line of a customer’s billing address.
179976
+ * @minLength `1`
179977
+ * @maxLength `32767`
179978
+ */
179979
+ BillingAddress1?: string;
179980
+ /**
179981
+ * The second line of a customer’s billing address.
179982
+ * @minLength `1`
179983
+ * @maxLength `32767`
179984
+ */
179985
+ BillingAddress2?: string;
179986
+ /**
179987
+ * The third line of a customer’s billing address.
179988
+ * @minLength `1`
179989
+ * @maxLength `32767`
179990
+ */
179991
+ BillingAddress3?: string;
179992
+ /**
179993
+ * The fourth line of a customer’s billing address.
179994
+ * @minLength `1`
179995
+ * @maxLength `32767`
179996
+ */
179997
+ BillingAddress4?: string;
179998
+ /**
179999
+ * The city of a customer’s billing address.
180000
+ * @minLength `1`
180001
+ * @maxLength `32767`
180002
+ */
180003
+ BillingCity?: string;
180004
+ /**
180005
+ * The country of a customer’s billing address.
180006
+ * @minLength `1`
180007
+ * @maxLength `32767`
180008
+ */
180009
+ BillingCountry?: string;
180010
+ /**
180011
+ * The county of a customer’s billing address.
180012
+ * @minLength `1`
180013
+ * @maxLength `32767`
180014
+ */
180015
+ BillingCounty?: string;
180016
+ /**
180017
+ * The postal code of a customer’s billing address.
180018
+ * @minLength `1`
180019
+ * @maxLength `32767`
180020
+ */
180021
+ BillingPostalCode?: string;
180022
+ /**
180023
+ * The province of a customer’s billing address.
180024
+ * @minLength `1`
180025
+ * @maxLength `32767`
180026
+ */
180027
+ BillingProvince?: string;
180028
+ /**
180029
+ * The state of a customer’s billing address.
180030
+ * @minLength `1`
180031
+ * @maxLength `32767`
180032
+ */
180033
+ BillingState?: string;
180034
+ /**
180035
+ * The customer's birth date.
180036
+ * @minLength `1`
180037
+ * @maxLength `32767`
180038
+ */
180039
+ BirthDate?: string;
180040
+ /**
180041
+ * The customer's business email address.
180042
+ * @minLength `1`
180043
+ * @maxLength `32767`
180044
+ */
180045
+ BusinessEmailAddress?: string;
180046
+ /**
180047
+ * The name of the customer's business.
180048
+ * @minLength `1`
180049
+ * @maxLength `32767`
180050
+ */
180051
+ BusinessName?: string;
180052
+ /**
180053
+ * The customer's business phone number.
180054
+ * @minLength `1`
180055
+ * @maxLength `32767`
180056
+ */
180057
+ BusinessPhoneNumber?: string;
180058
+ /**
180059
+ * The city in which a customer lives.
180060
+ * @minLength `1`
180061
+ * @maxLength `32767`
180062
+ */
180063
+ City?: string;
180064
+ /**
180065
+ * The country in which a customer lives.
180066
+ * @minLength `1`
180067
+ * @maxLength `32767`
180068
+ */
180069
+ Country?: string;
180070
+ /**
180071
+ * The county in which a customer lives.
180072
+ * @minLength `1`
180073
+ * @maxLength `32767`
180074
+ */
180075
+ County?: string;
180076
+ /**
180077
+ * The custom attributes that are used with the message template.
180078
+ */
180079
+ Custom?: WisdomMessageTemplateCustomAttributes;
180080
+ /**
180081
+ * The customer's email address, which has not been specified as a personal or business address.
180082
+ * @minLength `1`
180083
+ * @maxLength `32767`
180084
+ */
180085
+ EmailAddress?: string;
180086
+ /**
180087
+ * The customer's first name.
180088
+ * @minLength `1`
180089
+ * @maxLength `32767`
180090
+ */
180091
+ FirstName?: string;
180092
+ /**
180093
+ * The customer's gender.
180094
+ * @minLength `1`
180095
+ * @maxLength `32767`
180096
+ */
180097
+ Gender?: string;
180098
+ /**
180099
+ * The customer's home phone number.
180100
+ * @minLength `1`
180101
+ * @maxLength `32767`
180102
+ */
180103
+ HomePhoneNumber?: string;
180104
+ /**
180105
+ * The customer's last name.
180106
+ * @minLength `1`
180107
+ * @maxLength `32767`
180108
+ */
180109
+ LastName?: string;
180110
+ /**
180111
+ * The first line of a customer’s mailing address.
180112
+ * @minLength `1`
180113
+ * @maxLength `32767`
180114
+ */
180115
+ MailingAddress1?: string;
180116
+ /**
180117
+ * The second line of a customer’s mailing address.
180118
+ * @minLength `1`
180119
+ * @maxLength `32767`
180120
+ */
180121
+ MailingAddress2?: string;
180122
+ /**
180123
+ * The third line of a customer’s mailing address.
180124
+ * @minLength `1`
180125
+ * @maxLength `32767`
180126
+ */
180127
+ MailingAddress3?: string;
180128
+ /**
180129
+ * The fourth line of a customer’s mailing address.
180130
+ * @minLength `1`
180131
+ * @maxLength `32767`
180132
+ */
180133
+ MailingAddress4?: string;
180134
+ /**
180135
+ * The city of a customer’s mailing address.
180136
+ * @minLength `1`
180137
+ * @maxLength `32767`
180138
+ */
180139
+ MailingCity?: string;
180140
+ /**
180141
+ * The country of a customer’s mailing address.
180142
+ * @minLength `1`
180143
+ * @maxLength `32767`
180144
+ */
180145
+ MailingCountry?: string;
180146
+ /**
180147
+ * The county of a customer’s mailing address.
180148
+ * @minLength `1`
180149
+ * @maxLength `32767`
180150
+ */
180151
+ MailingCounty?: string;
180152
+ /**
180153
+ * The postal code of a customer’s mailing address
180154
+ * @minLength `1`
180155
+ * @maxLength `32767`
180156
+ */
180157
+ MailingPostalCode?: string;
180158
+ /**
180159
+ * The province of a customer’s mailing address.
180160
+ * @minLength `1`
180161
+ * @maxLength `32767`
180162
+ */
180163
+ MailingProvince?: string;
180164
+ /**
180165
+ * The state of a customer’s mailing address.
180166
+ * @minLength `1`
180167
+ * @maxLength `32767`
180168
+ */
180169
+ MailingState?: string;
180170
+ /**
180171
+ * The customer's middle name.
180172
+ * @minLength `1`
180173
+ * @maxLength `32767`
180174
+ */
180175
+ MiddleName?: string;
180176
+ /**
180177
+ * The customer's mobile phone number.
180178
+ * @minLength `1`
180179
+ * @maxLength `32767`
180180
+ */
180181
+ MobilePhoneNumber?: string;
180182
+ /**
180183
+ * The customer's party type.
180184
+ * @minLength `1`
180185
+ * @maxLength `32767`
180186
+ */
180187
+ PartyType?: string;
180188
+ /**
180189
+ * The customer's phone number, which has not been specified as a mobile, home, or business number.
180190
+ * @minLength `1`
180191
+ * @maxLength `32767`
180192
+ */
180193
+ PhoneNumber?: string;
180194
+ /**
180195
+ * The postal code of a customer address.
180196
+ * @minLength `1`
180197
+ * @maxLength `32767`
180198
+ */
180199
+ PostalCode?: string;
180200
+ /**
180201
+ * The ARN of a customer profile.
180202
+ * @minLength `1`
180203
+ * @maxLength `32767`
180204
+ */
180205
+ ProfileARN?: string;
180206
+ /**
180207
+ * The unique identifier of a customer profile.
180208
+ * @minLength `1`
180209
+ * @maxLength `32767`
180210
+ */
180211
+ ProfileId?: string;
180212
+ /**
180213
+ * The province in which a customer lives.
180214
+ * @minLength `1`
180215
+ * @maxLength `32767`
180216
+ */
180217
+ Province?: string;
180218
+ /**
180219
+ * The first line of a customer’s shipping address.
180220
+ * @minLength `1`
180221
+ * @maxLength `32767`
180222
+ */
180223
+ ShippingAddress1?: string;
180224
+ /**
180225
+ * The second line of a customer’s shipping address.
180226
+ * @minLength `1`
180227
+ * @maxLength `32767`
180228
+ */
180229
+ ShippingAddress2?: string;
180230
+ /**
180231
+ * The third line of a customer’s shipping address.
180232
+ * @minLength `1`
180233
+ * @maxLength `32767`
180234
+ */
180235
+ ShippingAddress3?: string;
180236
+ /**
180237
+ * The fourth line of a customer’s shipping address
180238
+ * @minLength `1`
180239
+ * @maxLength `32767`
180240
+ */
180241
+ ShippingAddress4?: string;
180242
+ /**
180243
+ * The city of a customer’s shipping address.
180244
+ * @minLength `1`
180245
+ * @maxLength `32767`
180246
+ */
180247
+ ShippingCity?: string;
180248
+ /**
180249
+ * The country of a customer’s shipping address.
180250
+ * @minLength `1`
180251
+ * @maxLength `32767`
180252
+ */
180253
+ ShippingCountry?: string;
180254
+ /**
180255
+ * The county of a customer’s shipping address.
180256
+ * @minLength `1`
180257
+ * @maxLength `32767`
180258
+ */
180259
+ ShippingCounty?: string;
180260
+ /**
180261
+ * The postal code of a customer’s shipping address.
180262
+ * @minLength `1`
180263
+ * @maxLength `32767`
180264
+ */
180265
+ ShippingPostalCode?: string;
180266
+ /**
180267
+ * The province of a customer’s shipping address.
180268
+ * @minLength `1`
180269
+ * @maxLength `32767`
180270
+ */
180271
+ ShippingProvince?: string;
180272
+ /**
180273
+ * The state of a customer’s shipping address.
180274
+ * @minLength `1`
180275
+ * @maxLength `32767`
180276
+ */
180277
+ ShippingState?: string;
180278
+ /**
180279
+ * The state in which a customer lives.
180280
+ * @minLength `1`
180281
+ * @maxLength `32767`
180282
+ */
180283
+ State?: string;
180284
+ };
180285
+ /**
180286
+ * Type definition for `AWS::Wisdom::MessageTemplate.EmailMessageTemplateContent`.
180287
+ * The content of message template that applies to email channel subtype.
180288
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-emailmessagetemplatecontent.html}
180289
+ */
180290
+ export type WisdomMessageTemplateEmailMessageTemplateContent = {
180291
+ /**
180292
+ * The body to use in email messages.
180293
+ */
180294
+ Body: WisdomMessageTemplateEmailMessageTemplateContentBody;
180295
+ /**
180296
+ * The email headers to include in email messages.
180297
+ * @minLength `0`
180298
+ * @maxLength `15`
180299
+ */
180300
+ Headers: WisdomMessageTemplateEmailMessageTemplateHeader[];
180301
+ /**
180302
+ * The subject line, or title, to use in email messages.
180303
+ * @minLength `1`
180304
+ */
180305
+ Subject: string;
180306
+ };
180307
+ /**
180308
+ * Type definition for `AWS::Wisdom::MessageTemplate.EmailMessageTemplateContentBody`.
180309
+ * The body to use in email messages.
180310
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-emailmessagetemplatecontentbody.html}
180311
+ */
180312
+ export type WisdomMessageTemplateEmailMessageTemplateContentBody = {
180313
+ /**
180314
+ * The message body, in HTML format, to use in email messages that are based on the message template. We recommend using HTML format for email clients that render HTML content. You can include links, formatted text, and more in an HTML message.
180315
+ */
180316
+ Html?: WisdomMessageTemplateMessageTemplateBodyContentProvider;
180317
+ /**
180318
+ * The message body, in plain text format, to use in email messages that are based on the message template. We recommend using plain text format for email clients that don't render HTML content and clients that are connected to high-latency networks, such as mobile devices.
180319
+ */
180320
+ PlainText?: WisdomMessageTemplateMessageTemplateBodyContentProvider;
180321
+ };
180322
+ /**
180323
+ * Type definition for `AWS::Wisdom::MessageTemplate.EmailMessageTemplateHeader`.
180324
+ * The email header to include in email messages.
180325
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-emailmessagetemplateheader.html}
180326
+ */
180327
+ export type WisdomMessageTemplateEmailMessageTemplateHeader = {
180328
+ /**
180329
+ * The name of the email header.
180330
+ * @minLength `1`
180331
+ * @maxLength `126`
180332
+ * @pattern `^[!-9;-@A-~]+$`
180333
+ */
180334
+ Name?: string;
180335
+ /**
180336
+ * The value of the email header.
180337
+ * @minLength `1`
180338
+ * @maxLength `870`
180339
+ * @pattern `[ -~]*`
180340
+ */
180341
+ Value?: string;
180342
+ };
180343
+ /**
180344
+ * Type definition for `AWS::Wisdom::MessageTemplate.GroupingConfiguration`.
180345
+ * The configuration information of the user groups that the message template is accessible to.
180346
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-groupingconfiguration.html}
180347
+ */
180348
+ export type WisdomMessageTemplateGroupingConfiguration = {
180349
+ /**
180350
+ * The criteria used for grouping Amazon Q in Connect users.
180351
+ * @minLength `1`
180352
+ * @maxLength `100`
180353
+ */
180354
+ Criteria: string;
180355
+ /**
180356
+ * The list of values that define different groups of Amazon Q in Connect users.
180357
+ */
180358
+ Values: string[];
180359
+ };
180360
+ /**
180361
+ * Type definition for `AWS::Wisdom::MessageTemplate.MessageTemplateAttributes`.
180362
+ * An object that specifies the default values to use for variables in the message template. This object contains different categories of key-value pairs. Each key defines a variable or placeholder in the message template. The corresponding value defines the default value for that variable.
180363
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-messagetemplateattributes.html}
180364
+ */
180365
+ export type WisdomMessageTemplateMessageTemplateAttributes = {
180366
+ /**
180367
+ * The agent attributes that are used with the message template.
180368
+ */
180369
+ AgentAttributes?: WisdomMessageTemplateAgentAttributes;
180370
+ /**
180371
+ * The custom attributes that are used with the message template.
180372
+ */
180373
+ CustomAttributes?: WisdomMessageTemplateCustomAttributes;
180374
+ /**
180375
+ * The customer profile attributes that are used with the message template.
180376
+ */
180377
+ CustomerProfileAttributes?: WisdomMessageTemplateCustomerProfileAttributes;
180378
+ /**
180379
+ * The system attributes that are used with the message template.
180380
+ */
180381
+ SystemAttributes?: WisdomMessageTemplateSystemAttributes;
180382
+ };
180383
+ /**
180384
+ * Type definition for `AWS::Wisdom::MessageTemplate.MessageTemplateBodyContentProvider`.
180385
+ * The container of message template body.
180386
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-messagetemplatebodycontentprovider.html}
180387
+ */
180388
+ export type WisdomMessageTemplateMessageTemplateBodyContentProvider = {
180389
+ /**
180390
+ * @minLength `1`
180391
+ */
180392
+ Content?: string;
180393
+ };
180394
+ /**
180395
+ * Type definition for `AWS::Wisdom::MessageTemplate.SmsMessageTemplateContent`.
180396
+ * The content of message template that applies to SMS channel subtype.
180397
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-smsmessagetemplatecontent.html}
180398
+ */
180399
+ export type WisdomMessageTemplateSmsMessageTemplateContent = {
180400
+ /**
180401
+ * The body to use in SMS messages.
180402
+ */
180403
+ Body: WisdomMessageTemplateSmsMessageTemplateContentBody;
180404
+ };
180405
+ /**
180406
+ * Type definition for `AWS::Wisdom::MessageTemplate.SmsMessageTemplateContentBody`.
180407
+ * The body to use in SMS messages.
180408
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-smsmessagetemplatecontentbody.html}
180409
+ */
180410
+ export type WisdomMessageTemplateSmsMessageTemplateContentBody = {
180411
+ /**
180412
+ * The container of message template body.
180413
+ */
180414
+ PlainText?: WisdomMessageTemplateMessageTemplateBodyContentProvider;
180415
+ };
180416
+ /**
180417
+ * Type definition for `AWS::Wisdom::MessageTemplate.SystemAttributes`.
180418
+ * The system attributes that are used with the message template.
180419
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-systemattributes.html}
180420
+ */
180421
+ export type WisdomMessageTemplateSystemAttributes = {
180422
+ /**
180423
+ * The CustomerEndpoint attribute.
180424
+ */
180425
+ CustomerEndpoint?: WisdomMessageTemplateSystemEndpointAttributes;
180426
+ /**
180427
+ * The name of the task.
180428
+ * @minLength `1`
180429
+ * @maxLength `32767`
180430
+ */
180431
+ Name?: string;
180432
+ /**
180433
+ * The SystemEndpoint attribute.
180434
+ */
180435
+ SystemEndpoint?: WisdomMessageTemplateSystemEndpointAttributes;
180436
+ };
180437
+ /**
180438
+ * Type definition for `AWS::Wisdom::MessageTemplate.SystemEndpointAttributes`.
180439
+ * The system endpoint attributes that are used with the message template.
180440
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-systemendpointattributes.html}
180441
+ */
180442
+ export type WisdomMessageTemplateSystemEndpointAttributes = {
180443
+ /**
180444
+ * The customer's phone number if used with customerEndpoint, or the number the customer dialed to call your contact center if used with systemEndpoint.
180445
+ * @minLength `1`
180446
+ * @maxLength `32767`
180447
+ */
180448
+ Address?: string;
180449
+ };
180450
+ /**
180451
+ * Type definition for `AWS::Wisdom::MessageTemplate.Tag`.
180452
+ * A key-value pair to associate with a resource.
180453
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-tag.html}
180454
+ */
180455
+ export type WisdomMessageTemplateTag = {
180456
+ /**
180457
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -
180458
+ * @minLength `1`
180459
+ * @maxLength `128`
180460
+ * @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
180461
+ */
180462
+ Key: string;
180463
+ /**
180464
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -
180465
+ * @minLength `1`
180466
+ * @maxLength `256`
180467
+ */
180468
+ Value: string;
180469
+ };
180470
+ /**
180471
+ * Resource type definition for `AWS::Wisdom::MessageTemplateVersion`.
180472
+ * A version for the specified customer-managed message template within the specified knowledge base.
180473
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplateversion.html}
180474
+ */
180475
+ export type WisdomMessageTemplateVersionProps = {
180476
+ /**
180477
+ * The unqualified Amazon Resource Name (ARN) of the message template.
180478
+ * @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
180479
+ */
180480
+ MessageTemplateArn: string;
180481
+ /**
180482
+ * The content SHA256 of the message template.
180483
+ * @minLength `1`
180484
+ * @maxLength `64`
180485
+ */
180486
+ MessageTemplateContentSha256?: string;
180487
+ };
180488
+ /**
180489
+ * Attribute type definition for `AWS::Wisdom::MessageTemplateVersion`.
180490
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplateversion.html#aws-resource-wisdom-messagetemplateversion-return-values}
180491
+ */
180492
+ export type WisdomMessageTemplateVersionAttributes = {
180493
+ /**
180494
+ * The unqualified Amazon Resource Name (ARN) of the message template version.
180495
+ * @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}):[0-9]+?$`
180496
+ */
180497
+ MessageTemplateVersionArn: string;
180498
+ /**
180499
+ * Current version number of the message template.
180500
+ */
180501
+ MessageTemplateVersionNumber: number;
180502
+ };
177569
180503
  /**
177570
180504
  * Resource Type definition for AWS::WorkSpaces::ConnectionAlias
177571
180505
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-connectionalias.html}
@@ -178019,6 +180953,177 @@ export type WorkSpacesWebBrowserSettingsTag = {
178019
180953
  */
178020
180954
  Value: string;
178021
180955
  };
180956
+ /**
180957
+ * Definition of AWS::WorkSpacesWeb::DataProtectionSettings Resource Type
180958
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html}
180959
+ */
180960
+ export type WorkSpacesWebDataProtectionSettingsProps = {
180961
+ AdditionalEncryptionContext?: WorkSpacesWebDataProtectionSettingsEncryptionContextMap;
180962
+ /**
180963
+ * @minLength `20`
180964
+ * @maxLength `2048`
180965
+ * @pattern `^arn:[\w+=\/,.@-]+:kms:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:key\/[a-zA-Z0-9-]+$`
180966
+ */
180967
+ CustomerManagedKey?: string;
180968
+ /**
180969
+ * @minLength `1`
180970
+ * @maxLength `256`
180971
+ * @pattern `^[ _\-\d\w]+$`
180972
+ */
180973
+ Description?: string;
180974
+ /**
180975
+ * @minLength `1`
180976
+ * @maxLength `64`
180977
+ * @pattern `^[ _\-\d\w]+$`
180978
+ */
180979
+ DisplayName?: string;
180980
+ InlineRedactionConfiguration?: WorkSpacesWebDataProtectionSettingsInlineRedactionConfiguration;
180981
+ /**
180982
+ * @minLength `0`
180983
+ * @maxLength `200`
180984
+ */
180985
+ Tags?: WorkSpacesWebDataProtectionSettingsTag[];
180986
+ };
180987
+ /**
180988
+ * Attribute type definition for `AWS::WorkSpacesWeb::DataProtectionSettings`.
180989
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html#aws-resource-workspacesweb-dataprotectionsettings-return-values}
180990
+ */
180991
+ export type WorkSpacesWebDataProtectionSettingsAttributes = {
180992
+ AssociatedPortalArns: string[];
180993
+ CreationDate: string;
180994
+ /**
180995
+ * @minLength `20`
180996
+ * @maxLength `2048`
180997
+ * @pattern `^arn:[\w+=\/,.@-]+:[a-zA-Z0-9\-]+:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:[a-zA-Z]+(\/[a-fA-F0-9\-]{36})+$`
180998
+ */
180999
+ DataProtectionSettingsArn: string;
181000
+ };
181001
+ /**
181002
+ * Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.CustomPattern`.
181003
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-custompattern.html}
181004
+ */
181005
+ export type WorkSpacesWebDataProtectionSettingsCustomPattern = {
181006
+ /**
181007
+ * @minLength `0`
181008
+ * @maxLength `300`
181009
+ * @pattern `^\/((?:[^\n])+)\/([gimsuyvd]{0,8})$`
181010
+ */
181011
+ KeywordRegex?: string;
181012
+ /**
181013
+ * @minLength `1`
181014
+ * @maxLength `256`
181015
+ * @pattern `^[ _\-\d\w]+$`
181016
+ */
181017
+ PatternDescription?: string;
181018
+ /**
181019
+ * @minLength `1`
181020
+ * @maxLength `20`
181021
+ * @pattern `^[_\-\d\w]+$`
181022
+ */
181023
+ PatternName: string;
181024
+ /**
181025
+ * @minLength `0`
181026
+ * @maxLength `300`
181027
+ * @pattern `^\/((?:[^\n])+)\/([gimsuyvd]{0,8})$`
181028
+ */
181029
+ PatternRegex: string;
181030
+ };
181031
+ /**
181032
+ * Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.EncryptionContextMap`.
181033
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-encryptioncontextmap.html}
181034
+ */
181035
+ export type WorkSpacesWebDataProtectionSettingsEncryptionContextMap = Record<string, string>;
181036
+ /**
181037
+ * Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.InlineRedactionConfiguration`.
181038
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionconfiguration.html}
181039
+ */
181040
+ export type WorkSpacesWebDataProtectionSettingsInlineRedactionConfiguration = {
181041
+ /**
181042
+ * @min `1`
181043
+ * @max `3`
181044
+ */
181045
+ GlobalConfidenceLevel?: number;
181046
+ /**
181047
+ * @minLength `1`
181048
+ * @maxLength `100`
181049
+ */
181050
+ GlobalEnforcedUrls?: string[];
181051
+ /**
181052
+ * @minLength `1`
181053
+ * @maxLength `100`
181054
+ */
181055
+ GlobalExemptUrls?: string[];
181056
+ /**
181057
+ * @minLength `0`
181058
+ * @maxLength `150`
181059
+ */
181060
+ InlineRedactionPatterns: WorkSpacesWebDataProtectionSettingsInlineRedactionPattern[];
181061
+ };
181062
+ /**
181063
+ * Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.InlineRedactionPattern`.
181064
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionpattern.html}
181065
+ */
181066
+ export type WorkSpacesWebDataProtectionSettingsInlineRedactionPattern = {
181067
+ /**
181068
+ * @minLength `1`
181069
+ * @maxLength `50`
181070
+ * @pattern `^[_\-\d\w]+$`
181071
+ */
181072
+ BuiltInPatternId?: string;
181073
+ /**
181074
+ * @min `1`
181075
+ * @max `3`
181076
+ */
181077
+ ConfidenceLevel?: number;
181078
+ CustomPattern?: WorkSpacesWebDataProtectionSettingsCustomPattern;
181079
+ /**
181080
+ * @minLength `1`
181081
+ * @maxLength `20`
181082
+ */
181083
+ EnforcedUrls?: string[];
181084
+ /**
181085
+ * @minLength `1`
181086
+ * @maxLength `20`
181087
+ */
181088
+ ExemptUrls?: string[];
181089
+ RedactionPlaceHolder: WorkSpacesWebDataProtectionSettingsRedactionPlaceHolder;
181090
+ };
181091
+ /**
181092
+ * Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.RedactionPlaceHolder`.
181093
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-redactionplaceholder.html}
181094
+ */
181095
+ export type WorkSpacesWebDataProtectionSettingsRedactionPlaceHolder = {
181096
+ /**
181097
+ * @minLength `1`
181098
+ * @maxLength `20`
181099
+ * @pattern `^[*_\-\d\w]+$`
181100
+ */
181101
+ RedactionPlaceHolderText?: string;
181102
+ RedactionPlaceHolderType: WorkSpacesWebDataProtectionSettingsRedactionPlaceHolderType;
181103
+ };
181104
+ /**
181105
+ * Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.RedactionPlaceHolderType`.
181106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-redactionplaceholdertype.html}
181107
+ */
181108
+ export type WorkSpacesWebDataProtectionSettingsRedactionPlaceHolderType = "CustomText";
181109
+ /**
181110
+ * Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.Tag`.
181111
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-tag.html}
181112
+ */
181113
+ export type WorkSpacesWebDataProtectionSettingsTag = {
181114
+ /**
181115
+ * @minLength `1`
181116
+ * @maxLength `128`
181117
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
181118
+ */
181119
+ Key: string;
181120
+ /**
181121
+ * @minLength `0`
181122
+ * @maxLength `256`
181123
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
181124
+ */
181125
+ Value: string;
181126
+ };
178022
181127
  /**
178023
181128
  * Definition of AWS::WorkSpacesWeb::IdentityProvider Resource Type
178024
181129
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-identityprovider.html}
@@ -178250,6 +181355,12 @@ export type WorkSpacesWebPortalProps = {
178250
181355
  * @pattern `^arn:[\w+=\/,.@-]+:kms:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:key\/[a-zA-Z0-9-]+$`
178251
181356
  */
178252
181357
  CustomerManagedKey?: string;
181358
+ /**
181359
+ * @minLength `20`
181360
+ * @maxLength `2048`
181361
+ * @pattern `^arn:[\w+=\/,.@-]+:[a-zA-Z0-9\-]+:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:[a-zA-Z]+(\/[a-fA-F0-9\-]{36})+$`
181362
+ */
181363
+ DataProtectionSettingsArn?: string;
178253
181364
  /**
178254
181365
  * @minLength `1`
178255
181366
  * @maxLength `64`
@@ -178891,11 +182002,14 @@ export interface ResourceTypes {
178891
182002
  "AWS::ApiGateway::ApiKey": ApiGatewayApiKeyProps;
178892
182003
  "AWS::ApiGateway::Authorizer": ApiGatewayAuthorizerProps;
178893
182004
  "AWS::ApiGateway::BasePathMapping": ApiGatewayBasePathMappingProps;
182005
+ "AWS::ApiGateway::BasePathMappingV2": ApiGatewayBasePathMappingV2Props;
178894
182006
  "AWS::ApiGateway::ClientCertificate": ApiGatewayClientCertificateProps;
178895
182007
  "AWS::ApiGateway::Deployment": ApiGatewayDeploymentProps;
178896
182008
  "AWS::ApiGateway::DocumentationPart": ApiGatewayDocumentationPartProps;
178897
182009
  "AWS::ApiGateway::DocumentationVersion": ApiGatewayDocumentationVersionProps;
178898
182010
  "AWS::ApiGateway::DomainName": ApiGatewayDomainNameProps;
182011
+ "AWS::ApiGateway::DomainNameAccessAssociation": ApiGatewayDomainNameAccessAssociationProps;
182012
+ "AWS::ApiGateway::DomainNameV2": ApiGatewayDomainNameV2Props;
178899
182013
  "AWS::ApiGateway::GatewayResponse": ApiGatewayGatewayResponseProps;
178900
182014
  "AWS::ApiGateway::Method": ApiGatewayMethodProps;
178901
182015
  "AWS::ApiGateway::Model": ApiGatewayModelProps;
@@ -179036,6 +182150,7 @@ export interface ResourceTypes {
179036
182150
  "AWS::CE::CostCategory": CECostCategoryProps;
179037
182151
  "AWS::CertificateManager::Account": CertificateManagerAccountProps;
179038
182152
  "AWS::CertificateManager::Certificate": CertificateManagerCertificateProps;
182153
+ "AWS::Chatbot::CustomAction": ChatbotCustomActionProps;
179039
182154
  "AWS::Chatbot::MicrosoftTeamsChannelConfiguration": ChatbotMicrosoftTeamsChannelConfigurationProps;
179040
182155
  "AWS::Chatbot::SlackChannelConfiguration": ChatbotSlackChannelConfigurationProps;
179041
182156
  "AWS::CleanRooms::AnalysisTemplate": CleanRoomsAnalysisTemplateProps;
@@ -179081,6 +182196,7 @@ export interface ResourceTypes {
179081
182196
  "AWS::CloudFront::ResponseHeadersPolicy": CloudFrontResponseHeadersPolicyProps;
179082
182197
  "AWS::CloudFront::StreamingDistribution": CloudFrontStreamingDistributionProps;
179083
182198
  "AWS::CloudTrail::Channel": CloudTrailChannelProps;
182199
+ "AWS::CloudTrail::Dashboard": CloudTrailDashboardProps;
179084
182200
  "AWS::CloudTrail::EventDataStore": CloudTrailEventDataStoreProps;
179085
182201
  "AWS::CloudTrail::ResourcePolicy": CloudTrailResourcePolicyProps;
179086
182202
  "AWS::CloudTrail::Trail": CloudTrailTrailProps;
@@ -179142,6 +182258,7 @@ export interface ResourceTypes {
179142
182258
  "AWS::Connect::ApprovedOrigin": ConnectApprovedOriginProps;
179143
182259
  "AWS::Connect::ContactFlow": ConnectContactFlowProps;
179144
182260
  "AWS::Connect::ContactFlowModule": ConnectContactFlowModuleProps;
182261
+ "AWS::Connect::EmailAddress": ConnectEmailAddressProps;
179145
182262
  "AWS::Connect::EvaluationForm": ConnectEvaluationFormProps;
179146
182263
  "AWS::Connect::HoursOfOperation": ConnectHoursOfOperationProps;
179147
182264
  "AWS::Connect::Instance": ConnectInstanceProps;
@@ -179174,6 +182291,7 @@ export interface ResourceTypes {
179174
182291
  "AWS::CustomerProfiles::EventStream": CustomerProfilesEventStreamProps;
179175
182292
  "AWS::CustomerProfiles::Integration": CustomerProfilesIntegrationProps;
179176
182293
  "AWS::CustomerProfiles::ObjectType": CustomerProfilesObjectTypeProps;
182294
+ "AWS::CustomerProfiles::SegmentDefinition": CustomerProfilesSegmentDefinitionProps;
179177
182295
  "AWS::DataBrew::Dataset": DataBrewDatasetProps;
179178
182296
  "AWS::DataBrew::Job": DataBrewJobProps;
179179
182297
  "AWS::DataBrew::Project": DataBrewProjectProps;
@@ -179328,6 +182446,8 @@ export interface ResourceTypes {
179328
182446
  "AWS::EC2::Volume": EC2VolumeProps;
179329
182447
  "AWS::EC2::VolumeAttachment": EC2VolumeAttachmentProps;
179330
182448
  "AWS::EC2::VPC": EC2VPCProps;
182449
+ "AWS::EC2::VPCBlockPublicAccessExclusion": EC2VPCBlockPublicAccessExclusionProps;
182450
+ "AWS::EC2::VPCBlockPublicAccessOptions": EC2VPCBlockPublicAccessOptionsProps;
179331
182451
  "AWS::EC2::VPCCidrBlock": EC2VPCCidrBlockProps;
179332
182452
  "AWS::EC2::VPCDHCPOptionsAssociation": EC2VPCDHCPOptionsAssociationProps;
179333
182453
  "AWS::EC2::VPCEndpoint": EC2VPCEndpointProps;
@@ -179582,6 +182702,7 @@ export interface ResourceTypes {
179582
182702
  "AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetProps;
179583
182703
  "AWS::IoTFleetWise::ModelManifest": IoTFleetWiseModelManifestProps;
179584
182704
  "AWS::IoTFleetWise::SignalCatalog": IoTFleetWiseSignalCatalogProps;
182705
+ "AWS::IoTFleetWise::StateTemplate": IoTFleetWiseStateTemplateProps;
179585
182706
  "AWS::IoTFleetWise::Vehicle": IoTFleetWiseVehicleProps;
179586
182707
  "AWS::IoTSiteWise::AccessPolicy": IoTSiteWiseAccessPolicyProps;
179587
182708
  "AWS::IoTSiteWise::Asset": IoTSiteWiseAssetProps;
@@ -179609,6 +182730,7 @@ export interface ResourceTypes {
179609
182730
  "AWS::IoTWireless::WirelessGateway": IoTWirelessWirelessGatewayProps;
179610
182731
  "AWS::IVS::Channel": IVSChannelProps;
179611
182732
  "AWS::IVS::EncoderConfiguration": IVSEncoderConfigurationProps;
182733
+ "AWS::IVS::IngestConfiguration": IVSIngestConfigurationProps;
179612
182734
  "AWS::IVS::PlaybackKeyPair": IVSPlaybackKeyPairProps;
179613
182735
  "AWS::IVS::PlaybackRestrictionPolicy": IVSPlaybackRestrictionPolicyProps;
179614
182736
  "AWS::IVS::PublicKey": IVSPublicKeyProps;
@@ -179700,6 +182822,7 @@ export interface ResourceTypes {
179700
182822
  "AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorProps;
179701
182823
  "AWS::LookoutVision::Project": LookoutVisionProjectProps;
179702
182824
  "AWS::M2::Application": M2ApplicationProps;
182825
+ "AWS::M2::Deployment": M2DeploymentProps;
179703
182826
  "AWS::M2::Environment": M2EnvironmentProps;
179704
182827
  "AWS::Macie::AllowList": MacieAllowListProps;
179705
182828
  "AWS::Macie::CustomDataIdentifier": MacieCustomDataIdentifierProps;
@@ -179930,6 +183053,7 @@ export interface ResourceTypes {
179930
183053
  "AWS::ResourceExplorer2::Index": ResourceExplorer2IndexProps;
179931
183054
  "AWS::ResourceExplorer2::View": ResourceExplorer2ViewProps;
179932
183055
  "AWS::ResourceGroups::Group": ResourceGroupsGroupProps;
183056
+ "AWS::ResourceGroups::TagSyncTask": ResourceGroupsTagSyncTaskProps;
179933
183057
  "AWS::RoboMaker::Fleet": RoboMakerFleetProps;
179934
183058
  "AWS::RoboMaker::Robot": RoboMakerRobotProps;
179935
183059
  "AWS::RoboMaker::RobotApplication": RoboMakerRobotApplicationProps;
@@ -180186,11 +183310,14 @@ export interface ResourceTypes {
180186
183310
  "AWS::Wisdom::Assistant": WisdomAssistantProps;
180187
183311
  "AWS::Wisdom::AssistantAssociation": WisdomAssistantAssociationProps;
180188
183312
  "AWS::Wisdom::KnowledgeBase": WisdomKnowledgeBaseProps;
183313
+ "AWS::Wisdom::MessageTemplate": WisdomMessageTemplateProps;
183314
+ "AWS::Wisdom::MessageTemplateVersion": WisdomMessageTemplateVersionProps;
180189
183315
  "AWS::WorkSpaces::ConnectionAlias": WorkSpacesConnectionAliasProps;
180190
183316
  "AWS::WorkSpaces::Workspace": WorkSpacesWorkspaceProps;
180191
183317
  "AWS::WorkSpaces::WorkspacesPool": WorkSpacesWorkspacesPoolProps;
180192
183318
  "AWS::WorkSpacesThinClient::Environment": WorkSpacesThinClientEnvironmentProps;
180193
183319
  "AWS::WorkSpacesWeb::BrowserSettings": WorkSpacesWebBrowserSettingsProps;
183320
+ "AWS::WorkSpacesWeb::DataProtectionSettings": WorkSpacesWebDataProtectionSettingsProps;
180194
183321
  "AWS::WorkSpacesWeb::IdentityProvider": WorkSpacesWebIdentityProviderProps;
180195
183322
  "AWS::WorkSpacesWeb::IpAccessSettings": WorkSpacesWebIpAccessSettingsProps;
180196
183323
  "AWS::WorkSpacesWeb::NetworkSettings": WorkSpacesWebNetworkSettingsProps;
@@ -180220,10 +183347,13 @@ export interface AttributeTypes {
180220
183347
  "AWS::ApiGateway::Account": ApiGatewayAccountAttributes;
180221
183348
  "AWS::ApiGateway::ApiKey": ApiGatewayApiKeyAttributes;
180222
183349
  "AWS::ApiGateway::Authorizer": ApiGatewayAuthorizerAttributes;
183350
+ "AWS::ApiGateway::BasePathMappingV2": ApiGatewayBasePathMappingV2Attributes;
180223
183351
  "AWS::ApiGateway::ClientCertificate": ApiGatewayClientCertificateAttributes;
180224
183352
  "AWS::ApiGateway::Deployment": ApiGatewayDeploymentAttributes;
180225
183353
  "AWS::ApiGateway::DocumentationPart": ApiGatewayDocumentationPartAttributes;
180226
183354
  "AWS::ApiGateway::DomainName": ApiGatewayDomainNameAttributes;
183355
+ "AWS::ApiGateway::DomainNameAccessAssociation": ApiGatewayDomainNameAccessAssociationAttributes;
183356
+ "AWS::ApiGateway::DomainNameV2": ApiGatewayDomainNameV2Attributes;
180227
183357
  "AWS::ApiGateway::GatewayResponse": ApiGatewayGatewayResponseAttributes;
180228
183358
  "AWS::ApiGateway::RequestValidator": ApiGatewayRequestValidatorAttributes;
180229
183359
  "AWS::ApiGateway::Resource": ApiGatewayResourceAttributes;
@@ -180348,6 +183478,7 @@ export interface AttributeTypes {
180348
183478
  "AWS::CE::CostCategory": CECostCategoryAttributes;
180349
183479
  "AWS::CertificateManager::Account": CertificateManagerAccountAttributes;
180350
183480
  "AWS::CertificateManager::Certificate": CertificateManagerCertificateAttributes;
183481
+ "AWS::Chatbot::CustomAction": ChatbotCustomActionAttributes;
180351
183482
  "AWS::Chatbot::MicrosoftTeamsChannelConfiguration": ChatbotMicrosoftTeamsChannelConfigurationAttributes;
180352
183483
  "AWS::Chatbot::SlackChannelConfiguration": ChatbotSlackChannelConfigurationAttributes;
180353
183484
  "AWS::CleanRooms::AnalysisTemplate": CleanRoomsAnalysisTemplateAttributes;
@@ -180391,6 +183522,7 @@ export interface AttributeTypes {
180391
183522
  "AWS::CloudFront::ResponseHeadersPolicy": CloudFrontResponseHeadersPolicyAttributes;
180392
183523
  "AWS::CloudFront::StreamingDistribution": CloudFrontStreamingDistributionAttributes;
180393
183524
  "AWS::CloudTrail::Channel": CloudTrailChannelAttributes;
183525
+ "AWS::CloudTrail::Dashboard": CloudTrailDashboardAttributes;
180394
183526
  "AWS::CloudTrail::EventDataStore": CloudTrailEventDataStoreAttributes;
180395
183527
  "AWS::CloudTrail::Trail": CloudTrailTrailAttributes;
180396
183528
  "AWS::CloudWatch::Alarm": CloudWatchAlarmAttributes;
@@ -180437,6 +183569,7 @@ export interface AttributeTypes {
180437
183569
  "AWS::Connect::AgentStatus": ConnectAgentStatusAttributes;
180438
183570
  "AWS::Connect::ContactFlow": ConnectContactFlowAttributes;
180439
183571
  "AWS::Connect::ContactFlowModule": ConnectContactFlowModuleAttributes;
183572
+ "AWS::Connect::EmailAddress": ConnectEmailAddressAttributes;
180440
183573
  "AWS::Connect::EvaluationForm": ConnectEvaluationFormAttributes;
180441
183574
  "AWS::Connect::HoursOfOperation": ConnectHoursOfOperationAttributes;
180442
183575
  "AWS::Connect::Instance": ConnectInstanceAttribs;
@@ -180467,6 +183600,7 @@ export interface AttributeTypes {
180467
183600
  "AWS::CustomerProfiles::EventStream": CustomerProfilesEventStreamAttributes;
180468
183601
  "AWS::CustomerProfiles::Integration": CustomerProfilesIntegrationAttributes;
180469
183602
  "AWS::CustomerProfiles::ObjectType": CustomerProfilesObjectTypeAttributes;
183603
+ "AWS::CustomerProfiles::SegmentDefinition": CustomerProfilesSegmentDefinitionAttributes;
180470
183604
  "AWS::DataPipeline::Pipeline": DataPipelinePipelineAttributes;
180471
183605
  "AWS::DataSync::Agent": DataSyncAgentAttributes;
180472
183606
  "AWS::DataSync::LocationAzureBlob": DataSyncLocationAzureBlobAttributes;
@@ -180607,6 +183741,8 @@ export interface AttributeTypes {
180607
183741
  "AWS::EC2::VerifiedAccessTrustProvider": EC2VerifiedAccessTrustProviderAttributes;
180608
183742
  "AWS::EC2::Volume": EC2VolumeAttributes;
180609
183743
  "AWS::EC2::VPC": EC2VPCAttributes;
183744
+ "AWS::EC2::VPCBlockPublicAccessExclusion": EC2VPCBlockPublicAccessExclusionAttributes;
183745
+ "AWS::EC2::VPCBlockPublicAccessOptions": EC2VPCBlockPublicAccessOptionsAttributes;
180610
183746
  "AWS::EC2::VPCCidrBlock": EC2VPCCidrBlockAttributes;
180611
183747
  "AWS::EC2::VPCEndpoint": EC2VPCEndpointAttributes;
180612
183748
  "AWS::EC2::VPCEndpointConnectionNotification": EC2VPCEndpointConnectionNotificationAttributes;
@@ -180830,6 +183966,7 @@ export interface AttributeTypes {
180830
183966
  "AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetAttributes;
180831
183967
  "AWS::IoTFleetWise::ModelManifest": IoTFleetWiseModelManifestAttributes;
180832
183968
  "AWS::IoTFleetWise::SignalCatalog": IoTFleetWiseSignalCatalogAttributes;
183969
+ "AWS::IoTFleetWise::StateTemplate": IoTFleetWiseStateTemplateAttributes;
180833
183970
  "AWS::IoTFleetWise::Vehicle": IoTFleetWiseVehicleAttributes;
180834
183971
  "AWS::IoTSiteWise::AccessPolicy": IoTSiteWiseAccessPolicyAttributes;
180835
183972
  "AWS::IoTSiteWise::Asset": IoTSiteWiseAssetAttributes;
@@ -180857,6 +183994,7 @@ export interface AttributeTypes {
180857
183994
  "AWS::IoTWireless::WirelessGateway": IoTWirelessWirelessGatewayAttributes;
180858
183995
  "AWS::IVS::Channel": IVSChannelAttributes;
180859
183996
  "AWS::IVS::EncoderConfiguration": IVSEncoderConfigurationAttributes;
183997
+ "AWS::IVS::IngestConfiguration": IVSIngestConfigurationAttributes;
180860
183998
  "AWS::IVS::PlaybackKeyPair": IVSPlaybackKeyPairAttributes;
180861
183999
  "AWS::IVS::PlaybackRestrictionPolicy": IVSPlaybackRestrictionPolicyAttributes;
180862
184000
  "AWS::IVS::PublicKey": IVSPublicKeyAttributes;
@@ -180937,6 +184075,7 @@ export interface AttributeTypes {
180937
184075
  "AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorAttributes;
180938
184076
  "AWS::LookoutVision::Project": LookoutVisionProjectAttributes;
180939
184077
  "AWS::M2::Application": M2ApplicationAttributes;
184078
+ "AWS::M2::Deployment": M2DeploymentAttributes;
180940
184079
  "AWS::M2::Environment": M2EnvironmentAttributes;
180941
184080
  "AWS::Macie::AllowList": MacieAllowListAttributes;
180942
184081
  "AWS::Macie::CustomDataIdentifier": MacieCustomDataIdentifierAttributes;
@@ -181144,6 +184283,7 @@ export interface AttributeTypes {
181144
184283
  "AWS::ResourceExplorer2::Index": ResourceExplorer2IndexAttributes;
181145
184284
  "AWS::ResourceExplorer2::View": ResourceExplorer2ViewAttributes;
181146
184285
  "AWS::ResourceGroups::Group": ResourceGroupsGroupAttributes;
184286
+ "AWS::ResourceGroups::TagSyncTask": ResourceGroupsTagSyncTaskAttributes;
181147
184287
  "AWS::RoboMaker::Fleet": RoboMakerFleetAttributes;
181148
184288
  "AWS::RoboMaker::Robot": RoboMakerRobotAttributes;
181149
184289
  "AWS::RoboMaker::RobotApplication": RoboMakerRobotApplicationAttributes;
@@ -181372,11 +184512,14 @@ export interface AttributeTypes {
181372
184512
  "AWS::Wisdom::Assistant": WisdomAssistantAttributes;
181373
184513
  "AWS::Wisdom::AssistantAssociation": WisdomAssistantAssociationAttributes;
181374
184514
  "AWS::Wisdom::KnowledgeBase": WisdomKnowledgeBaseAttributes;
184515
+ "AWS::Wisdom::MessageTemplate": WisdomMessageTemplateAttributes;
184516
+ "AWS::Wisdom::MessageTemplateVersion": WisdomMessageTemplateVersionAttributes;
181375
184517
  "AWS::WorkSpaces::ConnectionAlias": WorkSpacesConnectionAliasAttributes;
181376
184518
  "AWS::WorkSpaces::Workspace": WorkSpacesWorkspaceAttributes;
181377
184519
  "AWS::WorkSpaces::WorkspacesPool": WorkSpacesWorkspacesPoolAttributes;
181378
184520
  "AWS::WorkSpacesThinClient::Environment": WorkSpacesThinClientEnvironmentAttributes;
181379
184521
  "AWS::WorkSpacesWeb::BrowserSettings": WorkSpacesWebBrowserSettingsAttributes;
184522
+ "AWS::WorkSpacesWeb::DataProtectionSettings": WorkSpacesWebDataProtectionSettingsAttributes;
181380
184523
  "AWS::WorkSpacesWeb::IdentityProvider": WorkSpacesWebIdentityProviderAttributes;
181381
184524
  "AWS::WorkSpacesWeb::IpAccessSettings": WorkSpacesWebIpAccessSettingsAttributes;
181382
184525
  "AWS::WorkSpacesWeb::NetworkSettings": WorkSpacesWebNetworkSettingsAttributes;
@@ -181407,11 +184550,14 @@ export declare const ResourceType: {
181407
184550
  readonly ApiGatewayApiKey: "AWS::ApiGateway::ApiKey";
181408
184551
  readonly ApiGatewayAuthorizer: "AWS::ApiGateway::Authorizer";
181409
184552
  readonly ApiGatewayBasePathMapping: "AWS::ApiGateway::BasePathMapping";
184553
+ readonly ApiGatewayBasePathMappingV2: "AWS::ApiGateway::BasePathMappingV2";
181410
184554
  readonly ApiGatewayClientCertificate: "AWS::ApiGateway::ClientCertificate";
181411
184555
  readonly ApiGatewayDeployment: "AWS::ApiGateway::Deployment";
181412
184556
  readonly ApiGatewayDocumentationPart: "AWS::ApiGateway::DocumentationPart";
181413
184557
  readonly ApiGatewayDocumentationVersion: "AWS::ApiGateway::DocumentationVersion";
181414
184558
  readonly ApiGatewayDomainName: "AWS::ApiGateway::DomainName";
184559
+ readonly ApiGatewayDomainNameAccessAssociation: "AWS::ApiGateway::DomainNameAccessAssociation";
184560
+ readonly ApiGatewayDomainNameV2: "AWS::ApiGateway::DomainNameV2";
181415
184561
  readonly ApiGatewayGatewayResponse: "AWS::ApiGateway::GatewayResponse";
181416
184562
  readonly ApiGatewayMethod: "AWS::ApiGateway::Method";
181417
184563
  readonly ApiGatewayModel: "AWS::ApiGateway::Model";
@@ -181552,6 +184698,7 @@ export declare const ResourceType: {
181552
184698
  readonly CECostCategory: "AWS::CE::CostCategory";
181553
184699
  readonly CertificateManagerAccount: "AWS::CertificateManager::Account";
181554
184700
  readonly CertificateManagerCertificate: "AWS::CertificateManager::Certificate";
184701
+ readonly ChatbotCustomAction: "AWS::Chatbot::CustomAction";
181555
184702
  readonly ChatbotMicrosoftTeamsChannelConfiguration: "AWS::Chatbot::MicrosoftTeamsChannelConfiguration";
181556
184703
  readonly ChatbotSlackChannelConfiguration: "AWS::Chatbot::SlackChannelConfiguration";
181557
184704
  readonly CleanRoomsAnalysisTemplate: "AWS::CleanRooms::AnalysisTemplate";
@@ -181597,6 +184744,7 @@ export declare const ResourceType: {
181597
184744
  readonly CloudFrontResponseHeadersPolicy: "AWS::CloudFront::ResponseHeadersPolicy";
181598
184745
  readonly CloudFrontStreamingDistribution: "AWS::CloudFront::StreamingDistribution";
181599
184746
  readonly CloudTrailChannel: "AWS::CloudTrail::Channel";
184747
+ readonly CloudTrailDashboard: "AWS::CloudTrail::Dashboard";
181600
184748
  readonly CloudTrailEventDataStore: "AWS::CloudTrail::EventDataStore";
181601
184749
  readonly CloudTrailResourcePolicy: "AWS::CloudTrail::ResourcePolicy";
181602
184750
  readonly CloudTrailTrail: "AWS::CloudTrail::Trail";
@@ -181658,6 +184806,7 @@ export declare const ResourceType: {
181658
184806
  readonly ConnectApprovedOrigin: "AWS::Connect::ApprovedOrigin";
181659
184807
  readonly ConnectContactFlow: "AWS::Connect::ContactFlow";
181660
184808
  readonly ConnectContactFlowModule: "AWS::Connect::ContactFlowModule";
184809
+ readonly ConnectEmailAddress: "AWS::Connect::EmailAddress";
181661
184810
  readonly ConnectEvaluationForm: "AWS::Connect::EvaluationForm";
181662
184811
  readonly ConnectHoursOfOperation: "AWS::Connect::HoursOfOperation";
181663
184812
  readonly ConnectInstance: "AWS::Connect::Instance";
@@ -181690,6 +184839,7 @@ export declare const ResourceType: {
181690
184839
  readonly CustomerProfilesEventStream: "AWS::CustomerProfiles::EventStream";
181691
184840
  readonly CustomerProfilesIntegration: "AWS::CustomerProfiles::Integration";
181692
184841
  readonly CustomerProfilesObjectType: "AWS::CustomerProfiles::ObjectType";
184842
+ readonly CustomerProfilesSegmentDefinition: "AWS::CustomerProfiles::SegmentDefinition";
181693
184843
  readonly DataBrewDataset: "AWS::DataBrew::Dataset";
181694
184844
  readonly DataBrewJob: "AWS::DataBrew::Job";
181695
184845
  readonly DataBrewProject: "AWS::DataBrew::Project";
@@ -181844,6 +184994,8 @@ export declare const ResourceType: {
181844
184994
  readonly EC2Volume: "AWS::EC2::Volume";
181845
184995
  readonly EC2VolumeAttachment: "AWS::EC2::VolumeAttachment";
181846
184996
  readonly EC2VPC: "AWS::EC2::VPC";
184997
+ readonly EC2VPCBlockPublicAccessExclusion: "AWS::EC2::VPCBlockPublicAccessExclusion";
184998
+ readonly EC2VPCBlockPublicAccessOptions: "AWS::EC2::VPCBlockPublicAccessOptions";
181847
184999
  readonly EC2VPCCidrBlock: "AWS::EC2::VPCCidrBlock";
181848
185000
  readonly EC2VPCDHCPOptionsAssociation: "AWS::EC2::VPCDHCPOptionsAssociation";
181849
185001
  readonly EC2VPCEndpoint: "AWS::EC2::VPCEndpoint";
@@ -182098,6 +185250,7 @@ export declare const ResourceType: {
182098
185250
  readonly IoTFleetWiseFleet: "AWS::IoTFleetWise::Fleet";
182099
185251
  readonly IoTFleetWiseModelManifest: "AWS::IoTFleetWise::ModelManifest";
182100
185252
  readonly IoTFleetWiseSignalCatalog: "AWS::IoTFleetWise::SignalCatalog";
185253
+ readonly IoTFleetWiseStateTemplate: "AWS::IoTFleetWise::StateTemplate";
182101
185254
  readonly IoTFleetWiseVehicle: "AWS::IoTFleetWise::Vehicle";
182102
185255
  readonly IoTSiteWiseAccessPolicy: "AWS::IoTSiteWise::AccessPolicy";
182103
185256
  readonly IoTSiteWiseAsset: "AWS::IoTSiteWise::Asset";
@@ -182125,6 +185278,7 @@ export declare const ResourceType: {
182125
185278
  readonly IoTWirelessWirelessGateway: "AWS::IoTWireless::WirelessGateway";
182126
185279
  readonly IVSChannel: "AWS::IVS::Channel";
182127
185280
  readonly IVSEncoderConfiguration: "AWS::IVS::EncoderConfiguration";
185281
+ readonly IVSIngestConfiguration: "AWS::IVS::IngestConfiguration";
182128
185282
  readonly IVSPlaybackKeyPair: "AWS::IVS::PlaybackKeyPair";
182129
185283
  readonly IVSPlaybackRestrictionPolicy: "AWS::IVS::PlaybackRestrictionPolicy";
182130
185284
  readonly IVSPublicKey: "AWS::IVS::PublicKey";
@@ -182216,6 +185370,7 @@ export declare const ResourceType: {
182216
185370
  readonly LookoutMetricsAnomalyDetector: "AWS::LookoutMetrics::AnomalyDetector";
182217
185371
  readonly LookoutVisionProject: "AWS::LookoutVision::Project";
182218
185372
  readonly M2Application: "AWS::M2::Application";
185373
+ readonly M2Deployment: "AWS::M2::Deployment";
182219
185374
  readonly M2Environment: "AWS::M2::Environment";
182220
185375
  readonly MacieAllowList: "AWS::Macie::AllowList";
182221
185376
  readonly MacieCustomDataIdentifier: "AWS::Macie::CustomDataIdentifier";
@@ -182446,6 +185601,7 @@ export declare const ResourceType: {
182446
185601
  readonly ResourceExplorer2Index: "AWS::ResourceExplorer2::Index";
182447
185602
  readonly ResourceExplorer2View: "AWS::ResourceExplorer2::View";
182448
185603
  readonly ResourceGroupsGroup: "AWS::ResourceGroups::Group";
185604
+ readonly ResourceGroupsTagSyncTask: "AWS::ResourceGroups::TagSyncTask";
182449
185605
  readonly RoboMakerFleet: "AWS::RoboMaker::Fleet";
182450
185606
  readonly RoboMakerRobot: "AWS::RoboMaker::Robot";
182451
185607
  readonly RoboMakerRobotApplication: "AWS::RoboMaker::RobotApplication";
@@ -182702,11 +185858,14 @@ export declare const ResourceType: {
182702
185858
  readonly WisdomAssistant: "AWS::Wisdom::Assistant";
182703
185859
  readonly WisdomAssistantAssociation: "AWS::Wisdom::AssistantAssociation";
182704
185860
  readonly WisdomKnowledgeBase: "AWS::Wisdom::KnowledgeBase";
185861
+ readonly WisdomMessageTemplate: "AWS::Wisdom::MessageTemplate";
185862
+ readonly WisdomMessageTemplateVersion: "AWS::Wisdom::MessageTemplateVersion";
182705
185863
  readonly WorkSpacesConnectionAlias: "AWS::WorkSpaces::ConnectionAlias";
182706
185864
  readonly WorkSpacesWorkspace: "AWS::WorkSpaces::Workspace";
182707
185865
  readonly WorkSpacesWorkspacesPool: "AWS::WorkSpaces::WorkspacesPool";
182708
185866
  readonly WorkSpacesThinClientEnvironment: "AWS::WorkSpacesThinClient::Environment";
182709
185867
  readonly WorkSpacesWebBrowserSettings: "AWS::WorkSpacesWeb::BrowserSettings";
185868
+ readonly WorkSpacesWebDataProtectionSettings: "AWS::WorkSpacesWeb::DataProtectionSettings";
182710
185869
  readonly WorkSpacesWebIdentityProvider: "AWS::WorkSpacesWeb::IdentityProvider";
182711
185870
  readonly WorkSpacesWebIpAccessSettings: "AWS::WorkSpacesWeb::IpAccessSettings";
182712
185871
  readonly WorkSpacesWebNetworkSettings: "AWS::WorkSpacesWeb::NetworkSettings";