@awboost/cfntypes 0.100.52 → 0.100.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/resources.generated.d.ts +3004 -53
- package/lib/resources.generated.js +62 -0
- package/lib/resources.generated.js.map +1 -1
- package/package.json +1 -1
@@ -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}
|
@@ -24893,10 +25167,19 @@ export type CloudFormationWaitConditionHandleAttributes = {
|
|
24893
25167
|
Id: string;
|
24894
25168
|
};
|
24895
25169
|
/**
|
24896
|
-
* Resource
|
25170
|
+
* Resource type definition for `AWS::CloudFront::CachePolicy`.
|
25171
|
+
* A cache policy.
|
25172
|
+
When it's attached to a cache behavior, the cache policy determines the following:
|
25173
|
+
+ 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.
|
25174
|
+
+ The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache.
|
25175
|
+
|
25176
|
+
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
25177
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cachepolicy.html}
|
24898
25178
|
*/
|
24899
25179
|
export type CloudFrontCachePolicyProps = {
|
25180
|
+
/**
|
25181
|
+
* The cache policy configuration.
|
25182
|
+
*/
|
24900
25183
|
CachePolicyConfig: CloudFrontCachePolicyCachePolicyConfig;
|
24901
25184
|
};
|
24902
25185
|
/**
|
@@ -24909,74 +25192,156 @@ export type CloudFrontCachePolicyAttributes = {
|
|
24909
25192
|
};
|
24910
25193
|
/**
|
24911
25194
|
* Type definition for `AWS::CloudFront::CachePolicy.CachePolicyConfig`.
|
25195
|
+
* A cache policy configuration.
|
25196
|
+
This configuration determines the following:
|
25197
|
+
+ 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.
|
25198
|
+
+ The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache.
|
25199
|
+
|
25200
|
+
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
25201
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-cachepolicyconfig.html}
|
24913
25202
|
*/
|
24914
25203
|
export type CloudFrontCachePolicyCachePolicyConfig = {
|
24915
|
-
Comment?: string;
|
24916
25204
|
/**
|
24917
|
-
*
|
25205
|
+
* A comment to describe the cache policy. The comment cannot be longer than 128 characters.
|
24918
25206
|
*/
|
25207
|
+
Comment?: string;
|
25208
|
+
/**
|
25209
|
+
* 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*.
|
25210
|
+
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``.
|
25211
|
+
* @min `0`
|
25212
|
+
*/
|
24919
25213
|
DefaultTTL: number;
|
24920
25214
|
/**
|
24921
|
-
|
24922
|
-
|
25215
|
+
* 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*.
|
25216
|
+
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``.
|
25217
|
+
* @min `0`
|
25218
|
+
*/
|
24923
25219
|
MaxTTL: number;
|
24924
25220
|
/**
|
25221
|
+
* 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
25222
|
* @min `0`
|
24926
25223
|
*/
|
24927
25224
|
MinTTL: number;
|
25225
|
+
/**
|
25226
|
+
* A unique name to identify the cache policy.
|
25227
|
+
*/
|
24928
25228
|
Name: string;
|
25229
|
+
/**
|
25230
|
+
* 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.
|
25231
|
+
*/
|
24929
25232
|
ParametersInCacheKeyAndForwardedToOrigin: CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin;
|
24930
25233
|
};
|
24931
25234
|
/**
|
24932
25235
|
* Type definition for `AWS::CloudFront::CachePolicy.CookiesConfig`.
|
25236
|
+
* 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
25237
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-cookiesconfig.html}
|
24934
25238
|
*/
|
24935
25239
|
export type CloudFrontCachePolicyCookiesConfig = {
|
24936
25240
|
/**
|
24937
|
-
|
24938
|
-
|
25241
|
+
* 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:
|
25242
|
+
+ ``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.
|
25243
|
+
+ ``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.
|
25244
|
+
+ ``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.
|
25245
|
+
+ ``all`` – All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
|
25246
|
+
* @pattern `^(none|whitelist|allExcept|all)$`
|
25247
|
+
*/
|
24939
25248
|
CookieBehavior: string;
|
25249
|
+
/**
|
25250
|
+
* Contains a list of cookie names.
|
25251
|
+
*/
|
24940
25252
|
Cookies?: string[];
|
24941
25253
|
};
|
24942
25254
|
/**
|
24943
25255
|
* Type definition for `AWS::CloudFront::CachePolicy.HeadersConfig`.
|
25256
|
+
* 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
25257
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-headersconfig.html}
|
24945
25258
|
*/
|
24946
25259
|
export type CloudFrontCachePolicyHeadersConfig = {
|
24947
25260
|
/**
|
24948
|
-
|
24949
|
-
|
25261
|
+
* Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
|
25262
|
+
+ ``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.
|
25263
|
+
+ ``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.
|
25264
|
+
* @pattern `^(none|whitelist)$`
|
25265
|
+
*/
|
24950
25266
|
HeaderBehavior: string;
|
25267
|
+
/**
|
25268
|
+
* Contains a list of HTTP header names.
|
25269
|
+
*/
|
24951
25270
|
Headers?: string[];
|
24952
25271
|
};
|
24953
25272
|
/**
|
24954
25273
|
* Type definition for `AWS::CloudFront::CachePolicy.ParametersInCacheKeyAndForwardedToOrigin`.
|
25274
|
+
* 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.
|
25275
|
+
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
25276
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-parametersincachekeyandforwardedtoorigin.html}
|
24956
25277
|
*/
|
24957
25278
|
export type CloudFrontCachePolicyParametersInCacheKeyAndForwardedToOrigin = {
|
25279
|
+
/**
|
25280
|
+
* 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.
|
25281
|
+
*/
|
24958
25282
|
CookiesConfig: CloudFrontCachePolicyCookiesConfig;
|
25283
|
+
/**
|
25284
|
+
* 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.
|
25285
|
+
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:
|
25286
|
+
+ Normalizes the value of the viewer's ``Accept-Encoding`` header
|
25287
|
+
+ Includes the normalized header in the cache key
|
25288
|
+
+ Includes the normalized header in the request to the origin, if a request is necessary
|
25289
|
+
|
25290
|
+
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*.
|
25291
|
+
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.
|
25292
|
+
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.
|
25293
|
+
*/
|
24959
25294
|
EnableAcceptEncodingBrotli?: boolean;
|
25295
|
+
/**
|
25296
|
+
* 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.
|
25297
|
+
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:
|
25298
|
+
+ Normalizes the value of the viewer's ``Accept-Encoding`` header
|
25299
|
+
+ Includes the normalized header in the cache key
|
25300
|
+
+ Includes the normalized header in the request to the origin, if a request is necessary
|
25301
|
+
|
25302
|
+
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*.
|
25303
|
+
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.
|
25304
|
+
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.
|
25305
|
+
*/
|
24960
25306
|
EnableAcceptEncodingGzip: boolean;
|
25307
|
+
/**
|
25308
|
+
* 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.
|
25309
|
+
*/
|
24961
25310
|
HeadersConfig: CloudFrontCachePolicyHeadersConfig;
|
25311
|
+
/**
|
25312
|
+
* 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.
|
25313
|
+
*/
|
24962
25314
|
QueryStringsConfig: CloudFrontCachePolicyQueryStringsConfig;
|
24963
25315
|
};
|
24964
25316
|
/**
|
24965
25317
|
* Type definition for `AWS::CloudFront::CachePolicy.QueryStringsConfig`.
|
25318
|
+
* 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
25319
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cachepolicy-querystringsconfig.html}
|
24967
25320
|
*/
|
24968
25321
|
export type CloudFrontCachePolicyQueryStringsConfig = {
|
24969
25322
|
/**
|
24970
|
-
|
24971
|
-
|
25323
|
+
* 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:
|
25324
|
+
+ ``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.
|
25325
|
+
+ ``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.
|
25326
|
+
+ ``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.
|
25327
|
+
+ ``all`` – All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
|
25328
|
+
* @pattern `^(none|whitelist|allExcept|all)$`
|
25329
|
+
*/
|
24972
25330
|
QueryStringBehavior: string;
|
25331
|
+
/**
|
25332
|
+
* Contains a list of query string names.
|
25333
|
+
*/
|
24973
25334
|
QueryStrings?: string[];
|
24974
25335
|
};
|
24975
25336
|
/**
|
24976
|
-
* Resource
|
25337
|
+
* Resource type definition for `AWS::CloudFront::CloudFrontOriginAccessIdentity`.
|
25338
|
+
* 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
25339
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html}
|
24978
25340
|
*/
|
24979
25341
|
export type CloudFrontCloudFrontOriginAccessIdentityProps = {
|
25342
|
+
/**
|
25343
|
+
* The current configuration information for the identity.
|
25344
|
+
*/
|
24980
25345
|
CloudFrontOriginAccessIdentityConfig: CloudFrontCloudFrontOriginAccessIdentityCloudFrontOriginAccessIdentityConfig;
|
24981
25346
|
};
|
24982
25347
|
/**
|
@@ -24989,16 +25354,26 @@ export type CloudFrontCloudFrontOriginAccessIdentityAttributes = {
|
|
24989
25354
|
};
|
24990
25355
|
/**
|
24991
25356
|
* Type definition for `AWS::CloudFront::CloudFrontOriginAccessIdentity.CloudFrontOriginAccessIdentityConfig`.
|
25357
|
+
* Origin access identity configuration. Send a ``GET`` request to the ``/CloudFront API version/CloudFront/identity ID/config`` resource.
|
24992
25358
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html}
|
24993
25359
|
*/
|
24994
25360
|
export type CloudFrontCloudFrontOriginAccessIdentityCloudFrontOriginAccessIdentityConfig = {
|
25361
|
+
/**
|
25362
|
+
* A comment to describe the origin access identity. The comment cannot be longer than 128 characters.
|
25363
|
+
*/
|
24995
25364
|
Comment: string;
|
24996
25365
|
};
|
24997
25366
|
/**
|
24998
|
-
* Resource
|
25367
|
+
* Resource type definition for `AWS::CloudFront::ContinuousDeploymentPolicy`.
|
25368
|
+
* Creates a continuous deployment policy that routes a subset of production traffic from a primary distribution to a staging distribution.
|
25369
|
+
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.
|
25370
|
+
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
25371
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-continuousdeploymentpolicy.html}
|
25000
25372
|
*/
|
25001
25373
|
export type CloudFrontContinuousDeploymentPolicyProps = {
|
25374
|
+
/**
|
25375
|
+
* Contains the configuration for a continuous deployment policy.
|
25376
|
+
*/
|
25002
25377
|
ContinuousDeploymentPolicyConfig: CloudFrontContinuousDeploymentPolicyContinuousDeploymentPolicyConfig;
|
25003
25378
|
};
|
25004
25379
|
/**
|
@@ -25011,10 +25386,17 @@ export type CloudFrontContinuousDeploymentPolicyAttributes = {
|
|
25011
25386
|
};
|
25012
25387
|
/**
|
25013
25388
|
* Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.ContinuousDeploymentPolicyConfig`.
|
25389
|
+
* Contains the configuration for a continuous deployment policy.
|
25014
25390
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-continuousdeploymentpolicyconfig.html}
|
25015
25391
|
*/
|
25016
25392
|
export type CloudFrontContinuousDeploymentPolicyContinuousDeploymentPolicyConfig = {
|
25393
|
+
/**
|
25394
|
+
* 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.
|
25395
|
+
*/
|
25017
25396
|
Enabled: boolean;
|
25397
|
+
/**
|
25398
|
+
* 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.
|
25399
|
+
*/
|
25018
25400
|
SingleHeaderPolicyConfig?: {
|
25019
25401
|
/**
|
25020
25402
|
* @minLength `1`
|
@@ -25027,7 +25409,13 @@ export type CloudFrontContinuousDeploymentPolicyContinuousDeploymentPolicyConfig
|
|
25027
25409
|
*/
|
25028
25410
|
Value: string;
|
25029
25411
|
};
|
25412
|
+
/**
|
25413
|
+
* This configuration determines the percentage of HTTP requests that are sent to the staging distribution.
|
25414
|
+
*/
|
25030
25415
|
SingleWeightPolicyConfig?: {
|
25416
|
+
/**
|
25417
|
+
* 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.
|
25418
|
+
*/
|
25031
25419
|
SessionStickinessConfig?: CloudFrontContinuousDeploymentPolicySessionStickinessConfig;
|
25032
25420
|
/**
|
25033
25421
|
* @min `0`
|
@@ -25036,23 +25424,33 @@ export type CloudFrontContinuousDeploymentPolicyContinuousDeploymentPolicyConfig
|
|
25036
25424
|
Weight: number;
|
25037
25425
|
};
|
25038
25426
|
/**
|
25427
|
+
* The CloudFront domain name of the staging distribution. For example: ``d111111abcdef8.cloudfront.net``.
|
25039
25428
|
* @minLength `1`
|
25040
25429
|
*/
|
25041
25430
|
StagingDistributionDnsNames: string[];
|
25431
|
+
/**
|
25432
|
+
* Contains the parameters for routing production traffic from your primary to staging distributions.
|
25433
|
+
*/
|
25042
25434
|
TrafficConfig?: CloudFrontContinuousDeploymentPolicyTrafficConfig;
|
25435
|
+
/**
|
25436
|
+
* The type of traffic configuration.
|
25437
|
+
*/
|
25043
25438
|
Type?: "SingleWeight" | "SingleHeader";
|
25044
25439
|
};
|
25045
25440
|
/**
|
25046
25441
|
* Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.SessionStickinessConfig`.
|
25442
|
+
* 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
25443
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-sessionstickinessconfig.html}
|
25048
25444
|
*/
|
25049
25445
|
export type CloudFrontContinuousDeploymentPolicySessionStickinessConfig = {
|
25050
25446
|
/**
|
25447
|
+
* 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
25448
|
* @min `300`
|
25052
25449
|
* @max `3600`
|
25053
25450
|
*/
|
25054
25451
|
IdleTTL: number;
|
25055
25452
|
/**
|
25453
|
+
* 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
25454
|
* @min `300`
|
25057
25455
|
* @max `3600`
|
25058
25456
|
*/
|
@@ -25060,15 +25458,18 @@ export type CloudFrontContinuousDeploymentPolicySessionStickinessConfig = {
|
|
25060
25458
|
};
|
25061
25459
|
/**
|
25062
25460
|
* Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.SingleHeaderConfig`.
|
25461
|
+
* Determines which HTTP requests are sent to the staging distribution.
|
25063
25462
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-singleheaderconfig.html}
|
25064
25463
|
*/
|
25065
25464
|
export type CloudFrontContinuousDeploymentPolicySingleHeaderConfig = {
|
25066
25465
|
/**
|
25466
|
+
* The request header name that you want CloudFront to send to your staging distribution. The header must contain the prefix ``aws-cf-cd-``.
|
25067
25467
|
* @minLength `1`
|
25068
25468
|
* @maxLength `256`
|
25069
25469
|
*/
|
25070
25470
|
Header: string;
|
25071
25471
|
/**
|
25472
|
+
* The request header value.
|
25072
25473
|
* @minLength `1`
|
25073
25474
|
* @maxLength `1783`
|
25074
25475
|
*/
|
@@ -25076,11 +25477,16 @@ export type CloudFrontContinuousDeploymentPolicySingleHeaderConfig = {
|
|
25076
25477
|
};
|
25077
25478
|
/**
|
25078
25479
|
* Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.SingleWeightConfig`.
|
25480
|
+
* This configuration determines the percentage of HTTP requests that are sent to the staging distribution.
|
25079
25481
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-singleweightconfig.html}
|
25080
25482
|
*/
|
25081
25483
|
export type CloudFrontContinuousDeploymentPolicySingleWeightConfig = {
|
25484
|
+
/**
|
25485
|
+
* 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.
|
25486
|
+
*/
|
25082
25487
|
SessionStickinessConfig?: CloudFrontContinuousDeploymentPolicySessionStickinessConfig;
|
25083
25488
|
/**
|
25489
|
+
* 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
25490
|
* @min `0`
|
25085
25491
|
* @max `1`
|
25086
25492
|
*/
|
@@ -25088,11 +25494,21 @@ export type CloudFrontContinuousDeploymentPolicySingleWeightConfig = {
|
|
25088
25494
|
};
|
25089
25495
|
/**
|
25090
25496
|
* Type definition for `AWS::CloudFront::ContinuousDeploymentPolicy.TrafficConfig`.
|
25497
|
+
* The traffic configuration of your continuous deployment.
|
25091
25498
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-continuousdeploymentpolicy-trafficconfig.html}
|
25092
25499
|
*/
|
25093
25500
|
export type CloudFrontContinuousDeploymentPolicyTrafficConfig = {
|
25501
|
+
/**
|
25502
|
+
* Determines which HTTP requests are sent to the staging distribution.
|
25503
|
+
*/
|
25094
25504
|
SingleHeaderConfig?: CloudFrontContinuousDeploymentPolicySingleHeaderConfig;
|
25505
|
+
/**
|
25506
|
+
* Contains the percentage of traffic to send to the staging distribution.
|
25507
|
+
*/
|
25095
25508
|
SingleWeightConfig?: CloudFrontContinuousDeploymentPolicySingleWeightConfig;
|
25509
|
+
/**
|
25510
|
+
* The type of traffic configuration.
|
25511
|
+
*/
|
25096
25512
|
Type: "SingleWeight" | "SingleHeader";
|
25097
25513
|
};
|
25098
25514
|
/**
|
@@ -25123,7 +25539,7 @@ export type CloudFrontDistributionAttributes = {
|
|
25123
25539
|
* A complex type that describes how CloudFront processes requests.
|
25124
25540
|
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
25541
|
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
|
25542
|
+
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
25543
|
To delete all cache behaviors in an existing distribution, update the distribution configuration and include only an empty ``CacheBehaviors`` element.
|
25128
25544
|
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
25545
|
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 +25809,7 @@ export type CloudFrontDistributionDefaultCacheBehavior = {
|
|
25393
25809
|
*/
|
25394
25810
|
ForwardedValues?: CloudFrontDistributionForwardedValues;
|
25395
25811
|
/**
|
25396
|
-
* A list of CloudFront functions that are associated with this cache behavior.
|
25812
|
+
* 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
25813
|
*/
|
25398
25814
|
FunctionAssociations?: CloudFrontDistributionFunctionAssociation[];
|
25399
25815
|
/**
|
@@ -25463,6 +25879,10 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
25463
25879
|
* A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
|
25464
25880
|
*/
|
25465
25881
|
Aliases?: string[];
|
25882
|
+
/**
|
25883
|
+
* An alias for the CF distribution's domain name.
|
25884
|
+
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.
|
25885
|
+
*/
|
25466
25886
|
CNAMEs?: string[];
|
25467
25887
|
/**
|
25468
25888
|
* A complex type that contains zero or more ``CacheBehavior`` elements.
|
@@ -25484,6 +25904,10 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
25484
25904
|
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
25905
|
*/
|
25486
25906
|
CustomErrorResponses?: CloudFrontDistributionCustomErrorResponse[];
|
25907
|
+
/**
|
25908
|
+
* The user-defined HTTP server that serves as the origin for content that CF distributes.
|
25909
|
+
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.
|
25910
|
+
*/
|
25487
25911
|
CustomOrigin?: CloudFrontDistributionLegacyCustomOrigin;
|
25488
25912
|
/**
|
25489
25913
|
* 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 +25927,7 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
25503
25927
|
*/
|
25504
25928
|
Enabled: boolean;
|
25505
25929
|
/**
|
25506
|
-
* (Optional) Specify the
|
25930
|
+
* (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
25931
|
For viewers and CF to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).
|
25508
25932
|
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
25933
|
*/
|
@@ -25525,12 +25949,14 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
25525
25949
|
*/
|
25526
25950
|
Logging?: CloudFrontDistributionLogging;
|
25527
25951
|
/**
|
25528
|
-
|
25529
|
-
|
25952
|
+
* A complex type that contains information about origin groups for this distribution.
|
25953
|
+
Specify a value for either the ``Origins`` or ``OriginGroups`` property.
|
25954
|
+
*/
|
25530
25955
|
OriginGroups?: CloudFrontDistributionOriginGroups;
|
25531
25956
|
/**
|
25532
|
-
|
25533
|
-
|
25957
|
+
* A complex type that contains information about origins for this distribution.
|
25958
|
+
Specify a value for either the ``Origins`` or ``OriginGroups`` property.
|
25959
|
+
*/
|
25534
25960
|
Origins?: CloudFrontDistributionOrigin[];
|
25535
25961
|
/**
|
25536
25962
|
* 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 +25968,10 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
25542
25968
|
* A complex type that identifies ways in which you want to restrict distribution of your content.
|
25543
25969
|
*/
|
25544
25970
|
Restrictions?: CloudFrontDistributionRestrictions;
|
25971
|
+
/**
|
25972
|
+
* The origin as an S3 bucket.
|
25973
|
+
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.
|
25974
|
+
*/
|
25545
25975
|
S3Origin?: CloudFrontDistributionLegacyS3Origin;
|
25546
25976
|
/**
|
25547
25977
|
* 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 +25982,7 @@ export type CloudFrontDistributionDistributionConfig = {
|
|
25552
25982
|
*/
|
25553
25983
|
ViewerCertificate?: CloudFrontDistributionViewerCertificate;
|
25554
25984
|
/**
|
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/
|
25985
|
+
* 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
25986
|
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
25987
|
*/
|
25558
25988
|
WebACLId?: string;
|
@@ -25661,21 +26091,48 @@ export type CloudFrontDistributionLambdaFunctionAssociation = {
|
|
25661
26091
|
};
|
25662
26092
|
/**
|
25663
26093
|
* Type definition for `AWS::CloudFront::Distribution.LegacyCustomOrigin`.
|
26094
|
+
* 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.
|
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.
|
25664
26096
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-legacycustomorigin.html}
|
25665
26097
|
*/
|
25666
26098
|
export type CloudFrontDistributionLegacyCustomOrigin = {
|
26099
|
+
/**
|
26100
|
+
* The domain name assigned to your CF distribution.
|
26101
|
+
*/
|
25667
26102
|
DNSName: string;
|
26103
|
+
/**
|
26104
|
+
* The HTTP port that CF uses to connect to the origin. Specify the HTTP port that the origin listens on.
|
26105
|
+
*/
|
25668
26106
|
HTTPPort?: number;
|
26107
|
+
/**
|
26108
|
+
* The HTTPS port that CF uses to connect to the origin. Specify the HTTPS port that the origin listens on.
|
26109
|
+
*/
|
25669
26110
|
HTTPSPort?: number;
|
26111
|
+
/**
|
26112
|
+
* Specifies the protocol (HTTP or HTTPS) that CF uses to connect to the origin.
|
26113
|
+
*/
|
25670
26114
|
OriginProtocolPolicy: string;
|
26115
|
+
/**
|
26116
|
+
* The minimum SSL/TLS protocol version that CF uses when communicating with your origin server over HTTPs.
|
26117
|
+
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*.
|
26118
|
+
*/
|
25671
26119
|
OriginSSLProtocols: string[];
|
25672
26120
|
};
|
25673
26121
|
/**
|
25674
26122
|
* Type definition for `AWS::CloudFront::Distribution.LegacyS3Origin`.
|
26123
|
+
* The origin as an S3 bucket.
|
26124
|
+
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
26125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-legacys3origin.html}
|
25676
26126
|
*/
|
25677
26127
|
export type CloudFrontDistributionLegacyS3Origin = {
|
26128
|
+
/**
|
26129
|
+
* The domain name assigned to your CF distribution.
|
26130
|
+
*/
|
25678
26131
|
DNSName: string;
|
26132
|
+
/**
|
26133
|
+
* 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.
|
26134
|
+
This property is legacy. We recommend that you use [OriginAccessControl](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-originaccesscontrol.html) instead.
|
26135
|
+
*/
|
25679
26136
|
OriginAccessIdentity?: string;
|
25680
26137
|
};
|
25681
26138
|
/**
|
@@ -25887,9 +26344,10 @@ export type CloudFrontDistributionRestrictions = {
|
|
25887
26344
|
*/
|
25888
26345
|
export type CloudFrontDistributionS3OriginConfig = {
|
25889
26346
|
/**
|
25890
|
-
*
|
25891
|
-
|
25892
|
-
|
26347
|
+
* 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*.
|
26348
|
+
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:
|
26349
|
+
``origin-access-identity/cloudfront/ID-of-origin-access-identity``
|
26350
|
+
The ``ID-of-origin-access-identity`` is the value that CloudFront returned in the ``ID`` element when you created the origin access identity.
|
25893
26351
|
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
26352
|
To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty ``OriginAccessIdentity`` element.
|
25895
26353
|
To replace the origin access identity, update the distribution configuration and specify the new origin access identity.
|
@@ -25992,13 +26450,29 @@ export type CloudFrontDistributionViewerCertificate = {
|
|
25992
26450
|
SslSupportMethod?: string;
|
25993
26451
|
};
|
25994
26452
|
/**
|
25995
|
-
*
|
26453
|
+
* Creates a CF function.
|
26454
|
+
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.
|
26455
|
+
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).
|
26456
|
+
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.
|
26457
|
+
To automatically publish the function to the ``LIVE`` stage when it’s created, set the ``AutoPublish`` property to ``true``.
|
25996
26458
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-function.html}
|
25997
26459
|
*/
|
25998
26460
|
export type CloudFrontFunctionProps = {
|
26461
|
+
/**
|
26462
|
+
* 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``.
|
26463
|
+
*/
|
25999
26464
|
AutoPublish?: boolean;
|
26465
|
+
/**
|
26466
|
+
* 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*.
|
26467
|
+
*/
|
26000
26468
|
FunctionCode: string;
|
26469
|
+
/**
|
26470
|
+
* Contains configuration information about a CloudFront function.
|
26471
|
+
*/
|
26001
26472
|
FunctionConfig: CloudFrontFunctionFunctionConfig;
|
26473
|
+
/**
|
26474
|
+
* A name to identify the function.
|
26475
|
+
*/
|
26002
26476
|
Name: string;
|
26003
26477
|
};
|
26004
26478
|
/**
|
@@ -26007,32 +26481,57 @@ export type CloudFrontFunctionProps = {
|
|
26007
26481
|
*/
|
26008
26482
|
export type CloudFrontFunctionAttributes = {
|
26009
26483
|
FunctionARN: string;
|
26484
|
+
/**
|
26485
|
+
* Contains metadata about a CloudFront function.
|
26486
|
+
*/
|
26010
26487
|
FunctionMetadata: {
|
26488
|
+
/**
|
26489
|
+
* The Amazon Resource Name (ARN) of the function. The ARN uniquely identifies the function.
|
26490
|
+
*/
|
26011
26491
|
FunctionARN: string;
|
26012
26492
|
};
|
26013
26493
|
Stage: string;
|
26014
26494
|
};
|
26015
26495
|
/**
|
26016
26496
|
* Type definition for `AWS::CloudFront::Function.FunctionConfig`.
|
26497
|
+
* Contains configuration information about a CloudFront function.
|
26017
26498
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionconfig.html}
|
26018
26499
|
*/
|
26019
26500
|
export type CloudFrontFunctionFunctionConfig = {
|
26501
|
+
/**
|
26502
|
+
* A comment to describe the function.
|
26503
|
+
*/
|
26020
26504
|
Comment: string;
|
26505
|
+
/**
|
26506
|
+
* The configuration for the key value store associations.
|
26507
|
+
*/
|
26021
26508
|
KeyValueStoreAssociations?: CloudFrontFunctionKeyValueStoreAssociation[];
|
26509
|
+
/**
|
26510
|
+
* The function's runtime environment version.
|
26511
|
+
*/
|
26022
26512
|
Runtime: string;
|
26023
26513
|
};
|
26024
26514
|
/**
|
26025
26515
|
* Type definition for `AWS::CloudFront::Function.KeyValueStoreAssociation`.
|
26516
|
+
* The key value store association.
|
26026
26517
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-keyvaluestoreassociation.html}
|
26027
26518
|
*/
|
26028
26519
|
export type CloudFrontFunctionKeyValueStoreAssociation = {
|
26520
|
+
/**
|
26521
|
+
* The Amazon Resource Name (ARN) of the key value store association.
|
26522
|
+
*/
|
26029
26523
|
KeyValueStoreARN: string;
|
26030
26524
|
};
|
26031
26525
|
/**
|
26032
|
-
* Resource
|
26526
|
+
* Resource type definition for `AWS::CloudFront::KeyGroup`.
|
26527
|
+
* A key group.
|
26528
|
+
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
26529
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keygroup.html}
|
26034
26530
|
*/
|
26035
26531
|
export type CloudFrontKeyGroupProps = {
|
26532
|
+
/**
|
26533
|
+
* The key group configuration.
|
26534
|
+
*/
|
26036
26535
|
KeyGroupConfig: CloudFrontKeyGroupKeyGroupConfig;
|
26037
26536
|
};
|
26038
26537
|
/**
|
@@ -26045,20 +26544,41 @@ export type CloudFrontKeyGroupAttributes = {
|
|
26045
26544
|
};
|
26046
26545
|
/**
|
26047
26546
|
* Type definition for `AWS::CloudFront::KeyGroup.KeyGroupConfig`.
|
26547
|
+
* A key group configuration.
|
26548
|
+
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
26549
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-keygroup-keygroupconfig.html}
|
26049
26550
|
*/
|
26050
26551
|
export type CloudFrontKeyGroupKeyGroupConfig = {
|
26552
|
+
/**
|
26553
|
+
* A comment to describe the key group. The comment cannot be longer than 128 characters.
|
26554
|
+
*/
|
26051
26555
|
Comment?: string;
|
26556
|
+
/**
|
26557
|
+
* A list of the identifiers of the public keys in the key group.
|
26558
|
+
*/
|
26052
26559
|
Items: string[];
|
26560
|
+
/**
|
26561
|
+
* A name to identify the key group.
|
26562
|
+
*/
|
26053
26563
|
Name: string;
|
26054
26564
|
};
|
26055
26565
|
/**
|
26056
|
-
* Resource
|
26566
|
+
* Resource type definition for `AWS::CloudFront::KeyValueStore`.
|
26567
|
+
* 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
26568
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keyvaluestore.html}
|
26058
26569
|
*/
|
26059
26570
|
export type CloudFrontKeyValueStoreProps = {
|
26571
|
+
/**
|
26572
|
+
* A comment for the key value store.
|
26573
|
+
*/
|
26060
26574
|
Comment?: string;
|
26575
|
+
/**
|
26576
|
+
* The import source for the key value store.
|
26577
|
+
*/
|
26061
26578
|
ImportSource?: CloudFrontKeyValueStoreImportSource;
|
26579
|
+
/**
|
26580
|
+
* The name of the key value store.
|
26581
|
+
*/
|
26062
26582
|
Name: string;
|
26063
26583
|
};
|
26064
26584
|
/**
|
@@ -26072,39 +26592,67 @@ export type CloudFrontKeyValueStoreAttributes = {
|
|
26072
26592
|
};
|
26073
26593
|
/**
|
26074
26594
|
* Type definition for `AWS::CloudFront::KeyValueStore.ImportSource`.
|
26595
|
+
* The import source for the key value store.
|
26075
26596
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-keyvaluestore-importsource.html}
|
26076
26597
|
*/
|
26077
26598
|
export type CloudFrontKeyValueStoreImportSource = {
|
26599
|
+
/**
|
26600
|
+
* The Amazon Resource Name (ARN) of the import source for the key value store.
|
26601
|
+
*/
|
26078
26602
|
SourceArn: string;
|
26603
|
+
/**
|
26604
|
+
* The source type of the import source for the key value store.
|
26605
|
+
*/
|
26079
26606
|
SourceType: string;
|
26080
26607
|
};
|
26081
26608
|
/**
|
26082
|
-
* Resource
|
26609
|
+
* Resource type definition for `AWS::CloudFront::MonitoringSubscription`.
|
26610
|
+
* A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution.
|
26083
26611
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-monitoringsubscription.html}
|
26084
26612
|
*/
|
26085
26613
|
export type CloudFrontMonitoringSubscriptionProps = {
|
26614
|
+
/**
|
26615
|
+
* The ID of the distribution that you are enabling metrics for.
|
26616
|
+
*/
|
26086
26617
|
DistributionId: string;
|
26618
|
+
/**
|
26619
|
+
* A subscription configuration for additional CloudWatch metrics.
|
26620
|
+
*/
|
26087
26621
|
MonitoringSubscription: CloudFrontMonitoringSubscriptionMonitoringSubscription;
|
26088
26622
|
};
|
26089
26623
|
/**
|
26090
26624
|
* Type definition for `AWS::CloudFront::MonitoringSubscription.MonitoringSubscription`.
|
26625
|
+
* A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution.
|
26091
26626
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-monitoringsubscription-monitoringsubscription.html}
|
26092
26627
|
*/
|
26093
26628
|
export type CloudFrontMonitoringSubscriptionMonitoringSubscription = {
|
26629
|
+
/**
|
26630
|
+
* A subscription configuration for additional CloudWatch metrics.
|
26631
|
+
*/
|
26094
26632
|
RealtimeMetricsSubscriptionConfig?: CloudFrontMonitoringSubscriptionRealtimeMetricsSubscriptionConfig;
|
26095
26633
|
};
|
26096
26634
|
/**
|
26097
26635
|
* Type definition for `AWS::CloudFront::MonitoringSubscription.RealtimeMetricsSubscriptionConfig`.
|
26636
|
+
* A subscription configuration for additional CloudWatch metrics.
|
26098
26637
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-monitoringsubscription-realtimemetricssubscriptionconfig.html}
|
26099
26638
|
*/
|
26100
26639
|
export type CloudFrontMonitoringSubscriptionRealtimeMetricsSubscriptionConfig = {
|
26640
|
+
/**
|
26641
|
+
* A flag that indicates whether additional CloudWatch metrics are enabled for a given CloudFront distribution.
|
26642
|
+
*/
|
26101
26643
|
RealtimeMetricsSubscriptionStatus: "Enabled" | "Disabled";
|
26102
26644
|
};
|
26103
26645
|
/**
|
26104
|
-
* Resource
|
26646
|
+
* Resource type definition for `AWS::CloudFront::OriginAccessControl`.
|
26647
|
+
* 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.
|
26648
|
+
This makes it possible to block public access to the origin, allowing viewers (users) to access the origin's content only through CloudFront.
|
26649
|
+
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
26650
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-originaccesscontrol.html}
|
26106
26651
|
*/
|
26107
26652
|
export type CloudFrontOriginAccessControlProps = {
|
26653
|
+
/**
|
26654
|
+
* The origin access control.
|
26655
|
+
*/
|
26108
26656
|
OriginAccessControlConfig: CloudFrontOriginAccessControlOriginAccessControlConfig;
|
26109
26657
|
};
|
26110
26658
|
/**
|
@@ -26116,29 +26664,55 @@ export type CloudFrontOriginAccessControlAttributes = {
|
|
26116
26664
|
};
|
26117
26665
|
/**
|
26118
26666
|
* Type definition for `AWS::CloudFront::OriginAccessControl.OriginAccessControlConfig`.
|
26667
|
+
* 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.
|
26668
|
+
This makes it possible to block public access to the origin, allowing viewers (users) to access the origin's content only through CloudFront.
|
26669
|
+
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
26670
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originaccesscontrol-originaccesscontrolconfig.html}
|
26120
26671
|
*/
|
26121
26672
|
export type CloudFrontOriginAccessControlOriginAccessControlConfig = {
|
26673
|
+
/**
|
26674
|
+
* A description of the origin access control.
|
26675
|
+
*/
|
26122
26676
|
Description?: string;
|
26677
|
+
/**
|
26678
|
+
* A name to identify the origin access control. You can specify up to 64 characters.
|
26679
|
+
*/
|
26123
26680
|
Name: string;
|
26124
26681
|
/**
|
26682
|
+
* The type of origin that this origin access control is for.
|
26125
26683
|
* @pattern `^(s3|mediastore|lambda|mediapackagev2)$`
|
26126
26684
|
*/
|
26127
26685
|
OriginAccessControlOriginType: string;
|
26128
26686
|
/**
|
26129
|
-
|
26130
|
-
|
26687
|
+
* 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*.
|
26688
|
+
This field can have one of the following values:
|
26689
|
+
+ ``always`` – CloudFront signs all origin requests, overwriting the ``Authorization`` header from the viewer request if one exists.
|
26690
|
+
+ ``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.
|
26691
|
+
+ ``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.*
|
26692
|
+
* @pattern `^(never|no-override|always)$`
|
26693
|
+
*/
|
26131
26694
|
SigningBehavior: string;
|
26132
26695
|
/**
|
26696
|
+
* The signing protocol of the origin access control, which determines how CloudFront signs (authenticates) requests. The only valid value is ``sigv4``.
|
26133
26697
|
* @pattern `^(sigv4)$`
|
26134
26698
|
*/
|
26135
26699
|
SigningProtocol: string;
|
26136
26700
|
};
|
26137
26701
|
/**
|
26138
|
-
* Resource
|
26702
|
+
* Resource type definition for `AWS::CloudFront::OriginRequestPolicy`.
|
26703
|
+
* An origin request policy.
|
26704
|
+
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:
|
26705
|
+
+ The request body and the URL path (without the domain name) from the viewer request.
|
26706
|
+
+ The headers that CloudFront automatically includes in every origin request, including ``Host``, ``User-Agent``, and ``X-Amz-Cf-Id``.
|
26707
|
+
+ 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.
|
26708
|
+
|
26709
|
+
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
26710
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-originrequestpolicy.html}
|
26140
26711
|
*/
|
26141
26712
|
export type CloudFrontOriginRequestPolicyProps = {
|
26713
|
+
/**
|
26714
|
+
* The origin request policy configuration.
|
26715
|
+
*/
|
26142
26716
|
OriginRequestPolicyConfig: CloudFrontOriginRequestPolicyOriginRequestPolicyConfig;
|
26143
26717
|
};
|
26144
26718
|
/**
|
@@ -26151,53 +26725,107 @@ export type CloudFrontOriginRequestPolicyAttributes = {
|
|
26151
26725
|
};
|
26152
26726
|
/**
|
26153
26727
|
* Type definition for `AWS::CloudFront::OriginRequestPolicy.CookiesConfig`.
|
26728
|
+
* 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
26729
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-cookiesconfig.html}
|
26155
26730
|
*/
|
26156
26731
|
export type CloudFrontOriginRequestPolicyCookiesConfig = {
|
26157
26732
|
/**
|
26158
|
-
|
26159
|
-
|
26733
|
+
* Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
26734
|
+
+ ``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.
|
26735
|
+
+ ``whitelist`` – Only the cookies in viewer requests that are listed in the ``CookieNames`` type are included in requests that CloudFront sends to the origin.
|
26736
|
+
+ ``all`` – All cookies in viewer requests are included in requests that CloudFront sends to the origin.
|
26737
|
+
+ ``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.
|
26738
|
+
* @pattern `^(none|whitelist|all|allExcept)$`
|
26739
|
+
*/
|
26160
26740
|
CookieBehavior: string;
|
26741
|
+
/**
|
26742
|
+
* Contains a list of cookie names.
|
26743
|
+
*/
|
26161
26744
|
Cookies?: string[];
|
26162
26745
|
};
|
26163
26746
|
/**
|
26164
26747
|
* Type definition for `AWS::CloudFront::OriginRequestPolicy.HeadersConfig`.
|
26748
|
+
* An object that determines whether any HTTP headers (and if so, which headers) are included in requests that CloudFront sends to the origin.
|
26165
26749
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-headersconfig.html}
|
26166
26750
|
*/
|
26167
26751
|
export type CloudFrontOriginRequestPolicyHeadersConfig = {
|
26168
26752
|
/**
|
26169
|
-
|
26170
|
-
|
26753
|
+
* Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:
|
26754
|
+
+ ``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.
|
26755
|
+
+ ``whitelist`` – Only the HTTP headers that are listed in the ``Headers`` type are included in requests that CloudFront sends to the origin.
|
26756
|
+
+ ``allViewer`` – All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.
|
26757
|
+
+ ``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.
|
26758
|
+
+ ``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.
|
26759
|
+
* @pattern `^(none|whitelist|allViewer|allViewerAndWhitelistCloudFront|allExcept)$`
|
26760
|
+
*/
|
26171
26761
|
HeaderBehavior: string;
|
26762
|
+
/**
|
26763
|
+
* Contains a list of HTTP header names.
|
26764
|
+
*/
|
26172
26765
|
Headers?: string[];
|
26173
26766
|
};
|
26174
26767
|
/**
|
26175
26768
|
* Type definition for `AWS::CloudFront::OriginRequestPolicy.OriginRequestPolicyConfig`.
|
26769
|
+
* An origin request policy configuration.
|
26770
|
+
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:
|
26771
|
+
+ The request body and the URL path (without the domain name) from the viewer request.
|
26772
|
+
+ The headers that CloudFront automatically includes in every origin request, including ``Host``, ``User-Agent``, and ``X-Amz-Cf-Id``.
|
26773
|
+
+ 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.
|
26774
|
+
|
26775
|
+
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
26776
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-originrequestpolicyconfig.html}
|
26177
26777
|
*/
|
26178
26778
|
export type CloudFrontOriginRequestPolicyOriginRequestPolicyConfig = {
|
26779
|
+
/**
|
26780
|
+
* A comment to describe the origin request policy. The comment cannot be longer than 128 characters.
|
26781
|
+
*/
|
26179
26782
|
Comment?: string;
|
26783
|
+
/**
|
26784
|
+
* The cookies from viewer requests to include in origin requests.
|
26785
|
+
*/
|
26180
26786
|
CookiesConfig: CloudFrontOriginRequestPolicyCookiesConfig;
|
26787
|
+
/**
|
26788
|
+
* The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.
|
26789
|
+
*/
|
26181
26790
|
HeadersConfig: CloudFrontOriginRequestPolicyHeadersConfig;
|
26791
|
+
/**
|
26792
|
+
* A unique name to identify the origin request policy.
|
26793
|
+
*/
|
26182
26794
|
Name: string;
|
26795
|
+
/**
|
26796
|
+
* The URL query strings from viewer requests to include in origin requests.
|
26797
|
+
*/
|
26183
26798
|
QueryStringsConfig: CloudFrontOriginRequestPolicyQueryStringsConfig;
|
26184
26799
|
};
|
26185
26800
|
/**
|
26186
26801
|
* Type definition for `AWS::CloudFront::OriginRequestPolicy.QueryStringsConfig`.
|
26802
|
+
* 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
26803
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-originrequestpolicy-querystringsconfig.html}
|
26188
26804
|
*/
|
26189
26805
|
export type CloudFrontOriginRequestPolicyQueryStringsConfig = {
|
26190
26806
|
/**
|
26191
|
-
|
26192
|
-
|
26807
|
+
* Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
|
26808
|
+
+ ``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.
|
26809
|
+
+ ``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.
|
26810
|
+
+ ``all`` – All query strings in viewer requests are included in requests that CloudFront sends to the origin.
|
26811
|
+
+ ``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.
|
26812
|
+
* @pattern `^(none|whitelist|all|allExcept)$`
|
26813
|
+
*/
|
26193
26814
|
QueryStringBehavior: string;
|
26815
|
+
/**
|
26816
|
+
* Contains a list of query string names.
|
26817
|
+
*/
|
26194
26818
|
QueryStrings?: string[];
|
26195
26819
|
};
|
26196
26820
|
/**
|
26197
|
-
* Resource
|
26821
|
+
* Resource type definition for `AWS::CloudFront::PublicKey`.
|
26822
|
+
* 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
26823
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-publickey.html}
|
26199
26824
|
*/
|
26200
26825
|
export type CloudFrontPublicKeyProps = {
|
26826
|
+
/**
|
26827
|
+
* 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).
|
26828
|
+
*/
|
26201
26829
|
PublicKeyConfig: CloudFrontPublicKeyPublicKeyConfig;
|
26202
26830
|
};
|
26203
26831
|
/**
|
@@ -26210,29 +26838,50 @@ export type CloudFrontPublicKeyAttributes = {
|
|
26210
26838
|
};
|
26211
26839
|
/**
|
26212
26840
|
* Type definition for `AWS::CloudFront::PublicKey.PublicKeyConfig`.
|
26841
|
+
* 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
26842
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.html}
|
26214
26843
|
*/
|
26215
26844
|
export type CloudFrontPublicKeyPublicKeyConfig = {
|
26845
|
+
/**
|
26846
|
+
* A string included in the request to help make sure that the request can't be replayed.
|
26847
|
+
*/
|
26216
26848
|
CallerReference: string;
|
26849
|
+
/**
|
26850
|
+
* A comment to describe the public key. The comment cannot be longer than 128 characters.
|
26851
|
+
*/
|
26217
26852
|
Comment?: string;
|
26853
|
+
/**
|
26854
|
+
* 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).
|
26855
|
+
*/
|
26218
26856
|
EncodedKey: string;
|
26857
|
+
/**
|
26858
|
+
* A name to help identify the public key.
|
26859
|
+
*/
|
26219
26860
|
Name: string;
|
26220
26861
|
};
|
26221
26862
|
/**
|
26222
|
-
* Resource
|
26863
|
+
* Resource type definition for `AWS::CloudFront::RealtimeLogConfig`.
|
26864
|
+
* A real-time log configuration.
|
26223
26865
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-realtimelogconfig.html}
|
26224
26866
|
*/
|
26225
26867
|
export type CloudFrontRealtimeLogConfigProps = {
|
26226
26868
|
/**
|
26869
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data for this real-time log configuration.
|
26227
26870
|
* @minLength `1`
|
26228
26871
|
*/
|
26229
26872
|
EndPoints: CloudFrontRealtimeLogConfigEndPoint[];
|
26230
26873
|
/**
|
26231
|
-
|
26232
|
-
|
26874
|
+
* 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.
|
26875
|
+
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*.
|
26876
|
+
* @minLength `1`
|
26877
|
+
*/
|
26233
26878
|
Fields: string[];
|
26879
|
+
/**
|
26880
|
+
* The unique name of this real-time log configuration.
|
26881
|
+
*/
|
26234
26882
|
Name: string;
|
26235
26883
|
/**
|
26884
|
+
* 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
26885
|
* @min `1`
|
26237
26886
|
* @max `100`
|
26238
26887
|
*/
|
@@ -26247,25 +26896,47 @@ export type CloudFrontRealtimeLogConfigAttributes = {
|
|
26247
26896
|
};
|
26248
26897
|
/**
|
26249
26898
|
* Type definition for `AWS::CloudFront::RealtimeLogConfig.EndPoint`.
|
26899
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data in a real-time log configuration.
|
26250
26900
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-endpoint.html}
|
26251
26901
|
*/
|
26252
26902
|
export type CloudFrontRealtimeLogConfigEndPoint = {
|
26903
|
+
/**
|
26904
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
|
26905
|
+
*/
|
26253
26906
|
KinesisStreamConfig: CloudFrontRealtimeLogConfigKinesisStreamConfig;
|
26907
|
+
/**
|
26908
|
+
* The type of data stream where you are sending real-time log data. The only valid value is ``Kinesis``.
|
26909
|
+
*/
|
26254
26910
|
StreamType: string;
|
26255
26911
|
};
|
26256
26912
|
/**
|
26257
26913
|
* Type definition for `AWS::CloudFront::RealtimeLogConfig.KinesisStreamConfig`.
|
26914
|
+
* Contains information about the Amazon Kinesis data stream where you are sending real-time log data.
|
26258
26915
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-realtimelogconfig-kinesisstreamconfig.html}
|
26259
26916
|
*/
|
26260
26917
|
export type CloudFrontRealtimeLogConfigKinesisStreamConfig = {
|
26918
|
+
/**
|
26919
|
+
* 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.
|
26920
|
+
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*.
|
26921
|
+
*/
|
26261
26922
|
RoleArn: string;
|
26923
|
+
/**
|
26924
|
+
* The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending real-time log data.
|
26925
|
+
*/
|
26262
26926
|
StreamArn: string;
|
26263
26927
|
};
|
26264
26928
|
/**
|
26265
|
-
* Resource
|
26929
|
+
* Resource type definition for `AWS::CloudFront::ResponseHeadersPolicy`.
|
26930
|
+
* A response headers policy.
|
26931
|
+
A response headers policy contains information about a set of HTTP response headers.
|
26932
|
+
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.
|
26933
|
+
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
26934
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-responseheaderspolicy.html}
|
26267
26935
|
*/
|
26268
26936
|
export type CloudFrontResponseHeadersPolicyProps = {
|
26937
|
+
/**
|
26938
|
+
* A response headers policy configuration.
|
26939
|
+
*/
|
26269
26940
|
ResponseHeadersPolicyConfig: CloudFrontResponseHeadersPolicyResponseHeadersPolicyConfig;
|
26270
26941
|
};
|
26271
26942
|
/**
|
@@ -26278,144 +26949,308 @@ export type CloudFrontResponseHeadersPolicyAttributes = {
|
|
26278
26949
|
};
|
26279
26950
|
/**
|
26280
26951
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowHeaders`.
|
26952
|
+
* A list of HTTP header names that CloudFront includes as values for the ``Access-Control-Allow-Headers`` HTTP response header.
|
26953
|
+
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
26954
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-accesscontrolallowheaders.html}
|
26282
26955
|
*/
|
26283
26956
|
export type CloudFrontResponseHeadersPolicyAccessControlAllowHeaders = {
|
26957
|
+
/**
|
26958
|
+
* The list of HTTP header names. You can specify ``*`` to allow all headers.
|
26959
|
+
*/
|
26284
26960
|
Items: string[];
|
26285
26961
|
};
|
26286
26962
|
/**
|
26287
26963
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowMethods`.
|
26964
|
+
* A list of HTTP methods that CloudFront includes as values for the ``Access-Control-Allow-Methods`` HTTP response header.
|
26965
|
+
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
26966
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-accesscontrolallowmethods.html}
|
26289
26967
|
*/
|
26290
26968
|
export type CloudFrontResponseHeadersPolicyAccessControlAllowMethods = {
|
26969
|
+
/**
|
26970
|
+
* The list of HTTP methods. Valid values are:
|
26971
|
+
+ ``GET``
|
26972
|
+
+ ``DELETE``
|
26973
|
+
+ ``HEAD``
|
26974
|
+
+ ``OPTIONS``
|
26975
|
+
+ ``PATCH``
|
26976
|
+
+ ``POST``
|
26977
|
+
+ ``PUT``
|
26978
|
+
+ ``ALL``
|
26979
|
+
|
26980
|
+
``ALL`` is a special value that includes all of the listed HTTP methods.
|
26981
|
+
*/
|
26291
26982
|
Items: string[];
|
26292
26983
|
};
|
26293
26984
|
/**
|
26294
26985
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.AccessControlAllowOrigins`.
|
26986
|
+
* A list of origins (domain names) that CloudFront can use as the value for the ``Access-Control-Allow-Origin`` HTTP response header.
|
26987
|
+
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
26988
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-accesscontrolalloworigins.html}
|
26296
26989
|
*/
|
26297
26990
|
export type CloudFrontResponseHeadersPolicyAccessControlAllowOrigins = {
|
26991
|
+
/**
|
26992
|
+
* The list of origins (domain names). You can specify ``*`` to allow all origins.
|
26993
|
+
*/
|
26298
26994
|
Items: string[];
|
26299
26995
|
};
|
26300
26996
|
/**
|
26301
26997
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.AccessControlExposeHeaders`.
|
26998
|
+
* A list of HTTP headers that CloudFront includes as values for the ``Access-Control-Expose-Headers`` HTTP response header.
|
26999
|
+
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
27000
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-accesscontrolexposeheaders.html}
|
26303
27001
|
*/
|
26304
27002
|
export type CloudFrontResponseHeadersPolicyAccessControlExposeHeaders = {
|
27003
|
+
/**
|
27004
|
+
* The list of HTTP headers. You can specify ``*`` to expose all headers.
|
27005
|
+
*/
|
26305
27006
|
Items: string[];
|
26306
27007
|
};
|
26307
27008
|
/**
|
26308
27009
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ContentSecurityPolicy`.
|
27010
|
+
* The policy directives and their values that CloudFront includes as values for the ``Content-Security-Policy`` HTTP response header.
|
27011
|
+
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
27012
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-contentsecuritypolicy.html}
|
26310
27013
|
*/
|
26311
27014
|
export type CloudFrontResponseHeadersPolicyContentSecurityPolicy = {
|
27015
|
+
/**
|
27016
|
+
* The policy directives and their values that CloudFront includes as values for the ``Content-Security-Policy`` HTTP response header.
|
27017
|
+
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.
|
27018
|
+
*/
|
26312
27019
|
ContentSecurityPolicy: string;
|
27020
|
+
/**
|
27021
|
+
* 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.
|
27022
|
+
*/
|
26313
27023
|
Override: boolean;
|
26314
27024
|
};
|
26315
27025
|
/**
|
26316
27026
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ContentTypeOptions`.
|
27027
|
+
* Determines whether CloudFront includes the ``X-Content-Type-Options`` HTTP response header with its value set to ``nosniff``.
|
27028
|
+
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
27029
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-contenttypeoptions.html}
|
26318
27030
|
*/
|
26319
27031
|
export type CloudFrontResponseHeadersPolicyContentTypeOptions = {
|
27032
|
+
/**
|
27033
|
+
* 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.
|
27034
|
+
*/
|
26320
27035
|
Override: boolean;
|
26321
27036
|
};
|
26322
27037
|
/**
|
26323
27038
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.CorsConfig`.
|
27039
|
+
* 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.
|
27040
|
+
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
27041
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-corsconfig.html}
|
26325
27042
|
*/
|
26326
27043
|
export type CloudFrontResponseHeadersPolicyCorsConfig = {
|
27044
|
+
/**
|
27045
|
+
* A Boolean that CloudFront uses as the value for the ``Access-Control-Allow-Credentials`` HTTP response header.
|
27046
|
+
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.
|
27047
|
+
*/
|
26327
27048
|
AccessControlAllowCredentials: boolean;
|
27049
|
+
/**
|
27050
|
+
* A list of HTTP header names that CloudFront includes as values for the ``Access-Control-Allow-Headers`` HTTP response header.
|
27051
|
+
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.
|
27052
|
+
*/
|
26328
27053
|
AccessControlAllowHeaders: CloudFrontResponseHeadersPolicyAccessControlAllowHeaders;
|
27054
|
+
/**
|
27055
|
+
* A list of HTTP methods that CloudFront includes as values for the ``Access-Control-Allow-Methods`` HTTP response header.
|
27056
|
+
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.
|
27057
|
+
*/
|
26329
27058
|
AccessControlAllowMethods: CloudFrontResponseHeadersPolicyAccessControlAllowMethods;
|
27059
|
+
/**
|
27060
|
+
* A list of origins (domain names) that CloudFront can use as the value for the ``Access-Control-Allow-Origin`` HTTP response header.
|
27061
|
+
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.
|
27062
|
+
*/
|
26330
27063
|
AccessControlAllowOrigins: CloudFrontResponseHeadersPolicyAccessControlAllowOrigins;
|
27064
|
+
/**
|
27065
|
+
* A list of HTTP headers that CloudFront includes as values for the ``Access-Control-Expose-Headers`` HTTP response header.
|
27066
|
+
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.
|
27067
|
+
*/
|
26331
27068
|
AccessControlExposeHeaders?: CloudFrontResponseHeadersPolicyAccessControlExposeHeaders;
|
27069
|
+
/**
|
27070
|
+
* A number that CloudFront uses as the value for the ``Access-Control-Max-Age`` HTTP response header.
|
27071
|
+
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.
|
27072
|
+
*/
|
26332
27073
|
AccessControlMaxAgeSec?: number;
|
27074
|
+
/**
|
27075
|
+
* A Boolean that determines whether CloudFront overrides HTTP response headers received from the origin with the ones specified in this response headers policy.
|
27076
|
+
*/
|
26333
27077
|
OriginOverride: boolean;
|
26334
27078
|
};
|
26335
27079
|
/**
|
26336
27080
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.CustomHeader`.
|
27081
|
+
* 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
27082
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-customheader.html}
|
26338
27083
|
*/
|
26339
27084
|
export type CloudFrontResponseHeadersPolicyCustomHeader = {
|
27085
|
+
/**
|
27086
|
+
* The HTTP response header name.
|
27087
|
+
*/
|
26340
27088
|
Header: string;
|
27089
|
+
/**
|
27090
|
+
* A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.
|
27091
|
+
*/
|
26341
27092
|
Override: boolean;
|
27093
|
+
/**
|
27094
|
+
* The value for the HTTP response header.
|
27095
|
+
*/
|
26342
27096
|
Value: string;
|
26343
27097
|
};
|
26344
27098
|
/**
|
26345
27099
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.CustomHeadersConfig`.
|
27100
|
+
* 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
27101
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-customheadersconfig.html}
|
26347
27102
|
*/
|
26348
27103
|
export type CloudFrontResponseHeadersPolicyCustomHeadersConfig = {
|
27104
|
+
/**
|
27105
|
+
* The list of HTTP response headers and their values.
|
27106
|
+
*/
|
26349
27107
|
Items: CloudFrontResponseHeadersPolicyCustomHeader[];
|
26350
27108
|
};
|
26351
27109
|
/**
|
26352
27110
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.FrameOptions`.
|
27111
|
+
* Determines whether CloudFront includes the ``X-Frame-Options`` HTTP response header and the header's value.
|
27112
|
+
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
27113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-frameoptions.html}
|
26354
27114
|
*/
|
26355
27115
|
export type CloudFrontResponseHeadersPolicyFrameOptions = {
|
26356
27116
|
/**
|
26357
|
-
|
26358
|
-
|
27117
|
+
* The value of the ``X-Frame-Options`` HTTP response header. Valid values are ``DENY`` and ``SAMEORIGIN``.
|
27118
|
+
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.
|
27119
|
+
* @pattern `^(DENY|SAMEORIGIN)$`
|
27120
|
+
*/
|
26359
27121
|
FrameOption: string;
|
27122
|
+
/**
|
27123
|
+
* 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.
|
27124
|
+
*/
|
26360
27125
|
Override: boolean;
|
26361
27126
|
};
|
26362
27127
|
/**
|
26363
27128
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ReferrerPolicy`.
|
27129
|
+
* Determines whether CloudFront includes the ``Referrer-Policy`` HTTP response header and the header's value.
|
27130
|
+
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
27131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-referrerpolicy.html}
|
26365
27132
|
*/
|
26366
27133
|
export type CloudFrontResponseHeadersPolicyReferrerPolicy = {
|
26367
|
-
Override: boolean;
|
26368
27134
|
/**
|
26369
|
-
*
|
27135
|
+
* 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
27136
|
*/
|
27137
|
+
Override: boolean;
|
27138
|
+
/**
|
27139
|
+
* Determines whether CloudFront includes the ``Referrer-Policy`` HTTP response header and the header's value.
|
27140
|
+
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.
|
27141
|
+
* @pattern `^(no-referrer|no-referrer-when-downgrade|origin|origin-when-cross-origin|same-origin|strict-origin|strict-origin-when-cross-origin|unsafe-url)$`
|
27142
|
+
*/
|
26371
27143
|
ReferrerPolicy: string;
|
26372
27144
|
};
|
26373
27145
|
/**
|
26374
27146
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.RemoveHeader`.
|
27147
|
+
* 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
27148
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-removeheader.html}
|
26376
27149
|
*/
|
26377
27150
|
export type CloudFrontResponseHeadersPolicyRemoveHeader = {
|
27151
|
+
/**
|
27152
|
+
* The HTTP header name.
|
27153
|
+
*/
|
26378
27154
|
Header: string;
|
26379
27155
|
};
|
26380
27156
|
/**
|
26381
27157
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.RemoveHeadersConfig`.
|
27158
|
+
* 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
27159
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-removeheadersconfig.html}
|
26383
27160
|
*/
|
26384
27161
|
export type CloudFrontResponseHeadersPolicyRemoveHeadersConfig = {
|
27162
|
+
/**
|
27163
|
+
* The list of HTTP header names.
|
27164
|
+
*/
|
26385
27165
|
Items: CloudFrontResponseHeadersPolicyRemoveHeader[];
|
26386
27166
|
};
|
26387
27167
|
/**
|
26388
27168
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ResponseHeadersPolicyConfig`.
|
27169
|
+
* A response headers policy configuration.
|
27170
|
+
A response headers policy configuration contains metadata about the response headers policy, and configurations for sets of HTTP response headers.
|
26389
27171
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-responseheaderspolicyconfig.html}
|
26390
27172
|
*/
|
26391
27173
|
export type CloudFrontResponseHeadersPolicyResponseHeadersPolicyConfig = {
|
27174
|
+
/**
|
27175
|
+
* A comment to describe the response headers policy.
|
27176
|
+
The comment cannot be longer than 128 characters.
|
27177
|
+
*/
|
26392
27178
|
Comment?: string;
|
27179
|
+
/**
|
27180
|
+
* A configuration for a set of HTTP response headers that are used for cross-origin resource sharing (CORS).
|
27181
|
+
*/
|
26393
27182
|
CorsConfig?: CloudFrontResponseHeadersPolicyCorsConfig;
|
27183
|
+
/**
|
27184
|
+
* A configuration for a set of custom HTTP response headers.
|
27185
|
+
*/
|
26394
27186
|
CustomHeadersConfig?: CloudFrontResponseHeadersPolicyCustomHeadersConfig;
|
27187
|
+
/**
|
27188
|
+
* A name to identify the response headers policy.
|
27189
|
+
The name must be unique for response headers policies in this AWS-account.
|
27190
|
+
*/
|
26395
27191
|
Name: string;
|
27192
|
+
/**
|
27193
|
+
* A configuration for a set of HTTP headers to remove from the HTTP response.
|
27194
|
+
*/
|
26396
27195
|
RemoveHeadersConfig?: CloudFrontResponseHeadersPolicyRemoveHeadersConfig;
|
27196
|
+
/**
|
27197
|
+
* A configuration for a set of security-related HTTP response headers.
|
27198
|
+
*/
|
26397
27199
|
SecurityHeadersConfig?: CloudFrontResponseHeadersPolicySecurityHeadersConfig;
|
27200
|
+
/**
|
27201
|
+
* A configuration for enabling the ``Server-Timing`` header in HTTP responses sent from CloudFront.
|
27202
|
+
*/
|
26398
27203
|
ServerTimingHeadersConfig?: CloudFrontResponseHeadersPolicyServerTimingHeadersConfig;
|
26399
27204
|
};
|
26400
27205
|
/**
|
26401
27206
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.SecurityHeadersConfig`.
|
27207
|
+
* 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
27208
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-securityheadersconfig.html}
|
26403
27209
|
*/
|
26404
27210
|
export type CloudFrontResponseHeadersPolicySecurityHeadersConfig = {
|
27211
|
+
/**
|
27212
|
+
* The policy directives and their values that CloudFront includes as values for the ``Content-Security-Policy`` HTTP response header.
|
27213
|
+
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.
|
27214
|
+
*/
|
26405
27215
|
ContentSecurityPolicy?: CloudFrontResponseHeadersPolicyContentSecurityPolicy;
|
27216
|
+
/**
|
27217
|
+
* Determines whether CloudFront includes the ``X-Content-Type-Options`` HTTP response header with its value set to ``nosniff``.
|
27218
|
+
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.
|
27219
|
+
*/
|
26406
27220
|
ContentTypeOptions?: CloudFrontResponseHeadersPolicyContentTypeOptions;
|
27221
|
+
/**
|
27222
|
+
* Determines whether CloudFront includes the ``X-Frame-Options`` HTTP response header and the header's value.
|
27223
|
+
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.
|
27224
|
+
*/
|
26407
27225
|
FrameOptions?: CloudFrontResponseHeadersPolicyFrameOptions;
|
27226
|
+
/**
|
27227
|
+
* Determines whether CloudFront includes the ``Referrer-Policy`` HTTP response header and the header's value.
|
27228
|
+
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.
|
27229
|
+
*/
|
26408
27230
|
ReferrerPolicy?: CloudFrontResponseHeadersPolicyReferrerPolicy;
|
27231
|
+
/**
|
27232
|
+
* Determines whether CloudFront includes the ``Strict-Transport-Security`` HTTP response header and the header's value.
|
27233
|
+
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.
|
27234
|
+
*/
|
26409
27235
|
StrictTransportSecurity?: CloudFrontResponseHeadersPolicyStrictTransportSecurity;
|
27236
|
+
/**
|
27237
|
+
* Determines whether CloudFront includes the ``X-XSS-Protection`` HTTP response header and the header's value.
|
27238
|
+
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.
|
27239
|
+
*/
|
26410
27240
|
XSSProtection?: CloudFrontResponseHeadersPolicyXSSProtection;
|
26411
27241
|
};
|
26412
27242
|
/**
|
26413
27243
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.ServerTimingHeadersConfig`.
|
27244
|
+
* A configuration for enabling the ``Server-Timing`` header in HTTP responses sent from CloudFront.
|
26414
27245
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-servertimingheadersconfig.html}
|
26415
27246
|
*/
|
26416
27247
|
export type CloudFrontResponseHeadersPolicyServerTimingHeadersConfig = {
|
27248
|
+
/**
|
27249
|
+
* 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.
|
27250
|
+
*/
|
26417
27251
|
Enabled: boolean;
|
26418
27252
|
/**
|
27253
|
+
* 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
27254
|
* @min `0`
|
26420
27255
|
* @max `100`
|
26421
27256
|
*/
|
@@ -26423,22 +27258,54 @@ export type CloudFrontResponseHeadersPolicyServerTimingHeadersConfig = {
|
|
26423
27258
|
};
|
26424
27259
|
/**
|
26425
27260
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.StrictTransportSecurity`.
|
27261
|
+
* Determines whether CloudFront includes the ``Strict-Transport-Security`` HTTP response header and the header's value.
|
27262
|
+
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
27263
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-stricttransportsecurity.html}
|
26427
27264
|
*/
|
26428
27265
|
export type CloudFrontResponseHeadersPolicyStrictTransportSecurity = {
|
27266
|
+
/**
|
27267
|
+
* A number that CloudFront uses as the value for the ``max-age`` directive in the ``Strict-Transport-Security`` HTTP response header.
|
27268
|
+
*/
|
26429
27269
|
AccessControlMaxAgeSec: number;
|
27270
|
+
/**
|
27271
|
+
* A Boolean that determines whether CloudFront includes the ``includeSubDomains`` directive in the ``Strict-Transport-Security`` HTTP response header.
|
27272
|
+
*/
|
26430
27273
|
IncludeSubdomains?: boolean;
|
27274
|
+
/**
|
27275
|
+
* 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.
|
27276
|
+
*/
|
26431
27277
|
Override: boolean;
|
27278
|
+
/**
|
27279
|
+
* A Boolean that determines whether CloudFront includes the ``preload`` directive in the ``Strict-Transport-Security`` HTTP response header.
|
27280
|
+
*/
|
26432
27281
|
Preload?: boolean;
|
26433
27282
|
};
|
26434
27283
|
/**
|
26435
27284
|
* Type definition for `AWS::CloudFront::ResponseHeadersPolicy.XSSProtection`.
|
27285
|
+
* Determines whether CloudFront includes the ``X-XSS-Protection`` HTTP response header and the header's value.
|
27286
|
+
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
27287
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-responseheaderspolicy-xssprotection.html}
|
26437
27288
|
*/
|
26438
27289
|
export type CloudFrontResponseHeadersPolicyXSSProtection = {
|
27290
|
+
/**
|
27291
|
+
* A Boolean that determines whether CloudFront includes the ``mode=block`` directive in the ``X-XSS-Protection`` header.
|
27292
|
+
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.
|
27293
|
+
*/
|
26439
27294
|
ModeBlock?: boolean;
|
27295
|
+
/**
|
27296
|
+
* 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.
|
27297
|
+
*/
|
26440
27298
|
Override: boolean;
|
27299
|
+
/**
|
27300
|
+
* 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``.
|
27301
|
+
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.
|
27302
|
+
*/
|
26441
27303
|
Protection: boolean;
|
27304
|
+
/**
|
27305
|
+
* A reporting URI, which CloudFront uses as the value of the ``report`` directive in the ``X-XSS-Protection`` header.
|
27306
|
+
You cannot specify a ``ReportUri`` when ``ModeBlock`` is ``true``.
|
27307
|
+
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.
|
27308
|
+
*/
|
26442
27309
|
ReportUri?: string;
|
26443
27310
|
};
|
26444
27311
|
/**
|
@@ -26583,6 +27450,123 @@ export type CloudTrailChannelTag = {
|
|
26583
27450
|
*/
|
26584
27451
|
Value: string;
|
26585
27452
|
};
|
27453
|
+
/**
|
27454
|
+
* Resource type definition for `AWS::CloudTrail::Dashboard`.
|
27455
|
+
* 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.
|
27456
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-dashboard.html}
|
27457
|
+
*/
|
27458
|
+
export type CloudTrailDashboardProps = {
|
27459
|
+
/**
|
27460
|
+
* The name of the dashboard.
|
27461
|
+
* @pattern `^[a-zA-Z0-9_\-]+$`
|
27462
|
+
*/
|
27463
|
+
Name?: string;
|
27464
|
+
/**
|
27465
|
+
* 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.
|
27466
|
+
*/
|
27467
|
+
RefreshSchedule?: CloudTrailDashboardRefreshSchedule;
|
27468
|
+
Tags?: CloudTrailDashboardTag[];
|
27469
|
+
/**
|
27470
|
+
* Indicates whether the dashboard is protected from termination.
|
27471
|
+
*/
|
27472
|
+
TerminationProtectionEnabled?: boolean;
|
27473
|
+
/**
|
27474
|
+
* List of widgets on the dashboard
|
27475
|
+
*/
|
27476
|
+
Widgets?: CloudTrailDashboardWidget[];
|
27477
|
+
};
|
27478
|
+
/**
|
27479
|
+
* Attribute type definition for `AWS::CloudTrail::Dashboard`.
|
27480
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-dashboard.html#aws-resource-cloudtrail-dashboard-return-values}
|
27481
|
+
*/
|
27482
|
+
export type CloudTrailDashboardAttributes = {
|
27483
|
+
/**
|
27484
|
+
* The timestamp of the dashboard creation.
|
27485
|
+
*/
|
27486
|
+
CreatedTimestamp: string;
|
27487
|
+
/**
|
27488
|
+
* The ARN of the dashboard.
|
27489
|
+
* @pattern `^[a-zA-Z0-9._/\-:]+$`
|
27490
|
+
*/
|
27491
|
+
DashboardArn: string;
|
27492
|
+
/**
|
27493
|
+
* The status of the dashboard. Values are CREATING, CREATED, UPDATING, UPDATED and DELETING.
|
27494
|
+
*/
|
27495
|
+
Status: "CREATING" | "CREATED" | "UPDATING" | "UPDATED" | "DELETING";
|
27496
|
+
/**
|
27497
|
+
* The type of the dashboard. Values are CUSTOM and MANAGED.
|
27498
|
+
*/
|
27499
|
+
Type: "MANAGED" | "CUSTOM";
|
27500
|
+
/**
|
27501
|
+
* The timestamp showing when the dashboard was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
|
27502
|
+
*/
|
27503
|
+
UpdatedTimestamp: string;
|
27504
|
+
};
|
27505
|
+
/**
|
27506
|
+
* Type definition for `AWS::CloudTrail::Dashboard.RefreshSchedule`.
|
27507
|
+
* 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.
|
27508
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-dashboard-refreshschedule.html}
|
27509
|
+
*/
|
27510
|
+
export type CloudTrailDashboardRefreshSchedule = {
|
27511
|
+
Frequency?: {
|
27512
|
+
/**
|
27513
|
+
* The frequency unit. Supported values are HOURS and DAYS.
|
27514
|
+
*/
|
27515
|
+
Unit: "HOURS" | "DAYS";
|
27516
|
+
/**
|
27517
|
+
* The frequency value.
|
27518
|
+
*/
|
27519
|
+
Value: number;
|
27520
|
+
};
|
27521
|
+
/**
|
27522
|
+
* The status of the schedule. Supported values are ENABLED and DISABLED.
|
27523
|
+
*/
|
27524
|
+
Status?: "ENABLED" | "DISABLED";
|
27525
|
+
/**
|
27526
|
+
* StartTime of the automatic schedule refresh.
|
27527
|
+
* @pattern `^[0-9]{2}:[0-9]{2}`
|
27528
|
+
*/
|
27529
|
+
TimeOfDay?: string;
|
27530
|
+
};
|
27531
|
+
/**
|
27532
|
+
* Type definition for `AWS::CloudTrail::Dashboard.Tag`.
|
27533
|
+
* An arbitrary set of tags (key-value pairs) for this dashboard.
|
27534
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-dashboard-tag.html}
|
27535
|
+
*/
|
27536
|
+
export type CloudTrailDashboardTag = {
|
27537
|
+
/**
|
27538
|
+
* 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 -.
|
27539
|
+
*/
|
27540
|
+
Key: string;
|
27541
|
+
/**
|
27542
|
+
* 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 -.
|
27543
|
+
*/
|
27544
|
+
Value: string;
|
27545
|
+
};
|
27546
|
+
/**
|
27547
|
+
* Type definition for `AWS::CloudTrail::Dashboard.Widget`.
|
27548
|
+
* The dashboard widget
|
27549
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-dashboard-widget.html}
|
27550
|
+
*/
|
27551
|
+
export type CloudTrailDashboardWidget = {
|
27552
|
+
/**
|
27553
|
+
* The placeholder keys in the QueryStatement. For example: $StartTime$, $EndTime$, $Period$.
|
27554
|
+
* @minLength `1`
|
27555
|
+
* @maxLength `10`
|
27556
|
+
*/
|
27557
|
+
QueryParameters?: string[];
|
27558
|
+
/**
|
27559
|
+
* The SQL query statement on one or more event data stores.
|
27560
|
+
* @minLength `1`
|
27561
|
+
* @maxLength `10000`
|
27562
|
+
* @pattern `(?s).*`
|
27563
|
+
*/
|
27564
|
+
QueryStatement: string;
|
27565
|
+
/**
|
27566
|
+
* The view properties of the widget.
|
27567
|
+
*/
|
27568
|
+
ViewProperties?: Record<string, string>;
|
27569
|
+
};
|
26586
27570
|
/**
|
26587
27571
|
* Resource type definition for `AWS::CloudTrail::EventDataStore`.
|
26588
27572
|
* 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 +32856,74 @@ export type ConnectContactFlowModuleTag = {
|
|
31872
32856
|
*/
|
31873
32857
|
Value: string;
|
31874
32858
|
};
|
32859
|
+
/**
|
32860
|
+
* Resource Type definition for AWS::Connect::EmailAddress
|
32861
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html}
|
32862
|
+
*/
|
32863
|
+
export type ConnectEmailAddressProps = {
|
32864
|
+
/**
|
32865
|
+
* A description for the email address.
|
32866
|
+
* @minLength `1`
|
32867
|
+
* @maxLength `250`
|
32868
|
+
* @pattern `(^[\S].*[\S]$)|(^[\S]$)`
|
32869
|
+
*/
|
32870
|
+
Description?: string;
|
32871
|
+
/**
|
32872
|
+
* The display name for the email address.
|
32873
|
+
* @minLength `0`
|
32874
|
+
* @maxLength `256`
|
32875
|
+
* @pattern `(^[\S].*[\S]$)|(^[\S]$)`
|
32876
|
+
*/
|
32877
|
+
DisplayName?: string;
|
32878
|
+
/**
|
32879
|
+
* Email address to be created for this instance
|
32880
|
+
* @minLength `1`
|
32881
|
+
* @maxLength `255`
|
32882
|
+
* @pattern `([^\s@]+@[^\s@]+\.[^\s@]+)`
|
32883
|
+
*/
|
32884
|
+
EmailAddress: string;
|
32885
|
+
/**
|
32886
|
+
* The identifier of the Amazon Connect instance.
|
32887
|
+
* @minLength `1`
|
32888
|
+
* @maxLength `250`
|
32889
|
+
* @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}$`
|
32890
|
+
*/
|
32891
|
+
InstanceArn: string;
|
32892
|
+
/**
|
32893
|
+
* One or more tags.
|
32894
|
+
* @maxLength `50`
|
32895
|
+
*/
|
32896
|
+
Tags?: ConnectEmailAddressTag[];
|
32897
|
+
};
|
32898
|
+
/**
|
32899
|
+
* Attribute type definition for `AWS::Connect::EmailAddress`.
|
32900
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#aws-resource-connect-emailaddress-return-values}
|
32901
|
+
*/
|
32902
|
+
export type ConnectEmailAddressAttributes = {
|
32903
|
+
/**
|
32904
|
+
* The identifier of the email address.
|
32905
|
+
* @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}$`
|
32906
|
+
*/
|
32907
|
+
EmailAddressArn: string;
|
32908
|
+
};
|
32909
|
+
/**
|
32910
|
+
* Type definition for `AWS::Connect::EmailAddress.Tag`.
|
32911
|
+
* A key-value pair to associate with a resource.
|
32912
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-emailaddress-tag.html}
|
32913
|
+
*/
|
32914
|
+
export type ConnectEmailAddressTag = {
|
32915
|
+
/**
|
32916
|
+
* 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 -.
|
32917
|
+
* @minLength `1`
|
32918
|
+
* @maxLength `128`
|
32919
|
+
*/
|
32920
|
+
Key: string;
|
32921
|
+
/**
|
32922
|
+
* 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 -.
|
32923
|
+
* @maxLength `256`
|
32924
|
+
*/
|
32925
|
+
Value: string;
|
32926
|
+
};
|
31875
32927
|
/**
|
31876
32928
|
* Resource type definition for `AWS::Connect::EvaluationForm`.
|
31877
32929
|
* Creates an evaluation form for the specified CON instance.
|
@@ -32298,6 +33350,11 @@ export type ConnectHoursOfOperationProps = {
|
|
32298
33350
|
* @maxLength `250`
|
32299
33351
|
*/
|
32300
33352
|
Description?: string;
|
33353
|
+
/**
|
33354
|
+
* One or more hours of operation overrides assigned to an hour of operation.
|
33355
|
+
* @maxLength `50`
|
33356
|
+
*/
|
33357
|
+
HoursOfOperationOverrides?: ConnectHoursOfOperationHoursOfOperationOverride[];
|
32301
33358
|
/**
|
32302
33359
|
* The identifier of the Amazon Connect instance.
|
32303
33360
|
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
|
@@ -32349,6 +33406,64 @@ export type ConnectHoursOfOperationHoursOfOperationConfig = {
|
|
32349
33406
|
*/
|
32350
33407
|
StartTime: ConnectHoursOfOperationHoursOfOperationTimeSlice;
|
32351
33408
|
};
|
33409
|
+
/**
|
33410
|
+
* Type definition for `AWS::Connect::HoursOfOperation.HoursOfOperationOverride`.
|
33411
|
+
* Overrides attached to the hours of operation.
|
33412
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverride.html}
|
33413
|
+
*/
|
33414
|
+
export type ConnectHoursOfOperationHoursOfOperationOverride = {
|
33415
|
+
/**
|
33416
|
+
* The date from which the hours of operation override would be effective.
|
33417
|
+
* @pattern `^\d{4}-\d{2}-\d{2}$`
|
33418
|
+
*/
|
33419
|
+
EffectiveFrom: string;
|
33420
|
+
/**
|
33421
|
+
* The date till which the hours of operation override would be effective.
|
33422
|
+
* @pattern `^\d{4}-\d{2}-\d{2}$`
|
33423
|
+
*/
|
33424
|
+
EffectiveTill: string;
|
33425
|
+
/**
|
33426
|
+
* The Resource Identifier for the hours of operation override.
|
33427
|
+
* @pattern `^[-a-zA-Z0-9]*$`
|
33428
|
+
*/
|
33429
|
+
HoursOfOperationOverrideId?: string;
|
33430
|
+
/**
|
33431
|
+
* Configuration information for the hours of operation override: day, start time, and end time.
|
33432
|
+
* @maxLength `100`
|
33433
|
+
*/
|
33434
|
+
OverrideConfig: ConnectHoursOfOperationHoursOfOperationOverrideConfig[];
|
33435
|
+
/**
|
33436
|
+
* The description of the hours of operation override.
|
33437
|
+
* @minLength `1`
|
33438
|
+
* @maxLength `250`
|
33439
|
+
*/
|
33440
|
+
OverrideDescription?: string;
|
33441
|
+
/**
|
33442
|
+
* The name of the hours of operation override.
|
33443
|
+
* @minLength `1`
|
33444
|
+
* @maxLength `127`
|
33445
|
+
*/
|
33446
|
+
OverrideName: string;
|
33447
|
+
};
|
33448
|
+
/**
|
33449
|
+
* Type definition for `AWS::Connect::HoursOfOperation.HoursOfOperationOverrideConfig`.
|
33450
|
+
* Contains information about the hours of operation override.
|
33451
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-hoursofoperationoverrideconfig.html}
|
33452
|
+
*/
|
33453
|
+
export type ConnectHoursOfOperationHoursOfOperationOverrideConfig = {
|
33454
|
+
/**
|
33455
|
+
* The day that the hours of operation override applies to.
|
33456
|
+
*/
|
33457
|
+
Day: "SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY";
|
33458
|
+
/**
|
33459
|
+
* The new end time that your contact center closes for the overriden days.
|
33460
|
+
*/
|
33461
|
+
EndTime: ConnectHoursOfOperationOverrideTimeSlice;
|
33462
|
+
/**
|
33463
|
+
* The new start time that your contact center opens for the overriden days.
|
33464
|
+
*/
|
33465
|
+
StartTime: ConnectHoursOfOperationOverrideTimeSlice;
|
33466
|
+
};
|
32352
33467
|
/**
|
32353
33468
|
* Type definition for `AWS::Connect::HoursOfOperation.HoursOfOperationTimeSlice`.
|
32354
33469
|
* The start time or end time for an hours of operation.
|
@@ -32368,6 +33483,25 @@ export type ConnectHoursOfOperationHoursOfOperationTimeSlice = {
|
|
32368
33483
|
*/
|
32369
33484
|
Minutes: number;
|
32370
33485
|
};
|
33486
|
+
/**
|
33487
|
+
* Type definition for `AWS::Connect::HoursOfOperation.OverrideTimeSlice`.
|
33488
|
+
* The start time or end time for an an hours of operation override.
|
33489
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-hoursofoperation-overridetimeslice.html}
|
33490
|
+
*/
|
33491
|
+
export type ConnectHoursOfOperationOverrideTimeSlice = {
|
33492
|
+
/**
|
33493
|
+
* The hours.
|
33494
|
+
* @min `0`
|
33495
|
+
* @max `23`
|
33496
|
+
*/
|
33497
|
+
Hours: number;
|
33498
|
+
/**
|
33499
|
+
* The minutes.
|
33500
|
+
* @min `0`
|
33501
|
+
* @max `59`
|
33502
|
+
*/
|
33503
|
+
Minutes: number;
|
33504
|
+
};
|
32371
33505
|
/**
|
32372
33506
|
* Type definition for `AWS::Connect::HoursOfOperation.Tag`.
|
32373
33507
|
* A key-value pair to associate with a resource.
|
@@ -36625,6 +37759,418 @@ export type CustomerProfilesObjectTypeTag = {
|
|
36625
37759
|
*/
|
36626
37760
|
Value: string;
|
36627
37761
|
};
|
37762
|
+
/**
|
37763
|
+
* Resource type definition for `AWS::CustomerProfiles::SegmentDefinition`.
|
37764
|
+
* A segment definition resource of Amazon Connect Customer Profiles
|
37765
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-segmentdefinition.html}
|
37766
|
+
*/
|
37767
|
+
export type CustomerProfilesSegmentDefinitionProps = {
|
37768
|
+
/**
|
37769
|
+
* The description of the segment definition.
|
37770
|
+
* @minLength `1`
|
37771
|
+
* @maxLength `1000`
|
37772
|
+
*/
|
37773
|
+
Description?: string;
|
37774
|
+
/**
|
37775
|
+
* The display name of the segment definition.
|
37776
|
+
* @minLength `1`
|
37777
|
+
* @maxLength `255`
|
37778
|
+
*/
|
37779
|
+
DisplayName: string;
|
37780
|
+
/**
|
37781
|
+
* The unique name of the domain.
|
37782
|
+
* @minLength `1`
|
37783
|
+
* @maxLength `64`
|
37784
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
37785
|
+
*/
|
37786
|
+
DomainName: string;
|
37787
|
+
/**
|
37788
|
+
* The unique name of the segment definition.
|
37789
|
+
* @minLength `1`
|
37790
|
+
* @maxLength `64`
|
37791
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
37792
|
+
*/
|
37793
|
+
SegmentDefinitionName: string;
|
37794
|
+
/**
|
37795
|
+
* An array that defines the set of segment criteria to evaluate when handling segment groups for the segment.
|
37796
|
+
*/
|
37797
|
+
SegmentGroups: CustomerProfilesSegmentDefinitionSegmentGroup;
|
37798
|
+
/**
|
37799
|
+
* The tags used to organize, track, or control access for this resource.
|
37800
|
+
* @minLength `0`
|
37801
|
+
* @maxLength `50`
|
37802
|
+
*/
|
37803
|
+
Tags?: CustomerProfilesSegmentDefinitionTag[];
|
37804
|
+
};
|
37805
|
+
/**
|
37806
|
+
* Attribute type definition for `AWS::CustomerProfiles::SegmentDefinition`.
|
37807
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-segmentdefinition.html#aws-resource-customerprofiles-segmentdefinition-return-values}
|
37808
|
+
*/
|
37809
|
+
export type CustomerProfilesSegmentDefinitionAttributes = {
|
37810
|
+
/**
|
37811
|
+
* The time of this segment definition got created.
|
37812
|
+
*/
|
37813
|
+
CreatedAt: string;
|
37814
|
+
/**
|
37815
|
+
* The Amazon Resource Name (ARN) of the segment definition.
|
37816
|
+
* @minLength `1`
|
37817
|
+
* @maxLength `255`
|
37818
|
+
*/
|
37819
|
+
SegmentDefinitionArn: string;
|
37820
|
+
};
|
37821
|
+
/**
|
37822
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.AddressDimension`.
|
37823
|
+
* The address based criteria for the segment.
|
37824
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-addressdimension.html}
|
37825
|
+
*/
|
37826
|
+
export type CustomerProfilesSegmentDefinitionAddressDimension = {
|
37827
|
+
/**
|
37828
|
+
* Specifies profile based criteria for a segment.
|
37829
|
+
*/
|
37830
|
+
City?: CustomerProfilesSegmentDefinitionProfileDimension;
|
37831
|
+
/**
|
37832
|
+
* Specifies profile based criteria for a segment.
|
37833
|
+
*/
|
37834
|
+
Country?: CustomerProfilesSegmentDefinitionProfileDimension;
|
37835
|
+
/**
|
37836
|
+
* Specifies profile based criteria for a segment.
|
37837
|
+
*/
|
37838
|
+
County?: CustomerProfilesSegmentDefinitionProfileDimension;
|
37839
|
+
/**
|
37840
|
+
* Specifies profile based criteria for a segment.
|
37841
|
+
*/
|
37842
|
+
PostalCode?: CustomerProfilesSegmentDefinitionProfileDimension;
|
37843
|
+
/**
|
37844
|
+
* Specifies profile based criteria for a segment.
|
37845
|
+
*/
|
37846
|
+
Province?: CustomerProfilesSegmentDefinitionProfileDimension;
|
37847
|
+
/**
|
37848
|
+
* Specifies profile based criteria for a segment.
|
37849
|
+
*/
|
37850
|
+
State?: CustomerProfilesSegmentDefinitionProfileDimension;
|
37851
|
+
};
|
37852
|
+
/**
|
37853
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.AttributeDimension`.
|
37854
|
+
* Specifies attribute based criteria for a segment.
|
37855
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-attributedimension.html}
|
37856
|
+
*/
|
37857
|
+
export type CustomerProfilesSegmentDefinitionAttributeDimension = {
|
37858
|
+
/**
|
37859
|
+
* The type of segment dimension to use.
|
37860
|
+
*/
|
37861
|
+
DimensionType: CustomerProfilesSegmentDefinitionAttributeDimensionType;
|
37862
|
+
/**
|
37863
|
+
* @minLength `1`
|
37864
|
+
* @maxLength `50`
|
37865
|
+
*/
|
37866
|
+
Values: string[];
|
37867
|
+
};
|
37868
|
+
/**
|
37869
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.AttributeDimensionType`.
|
37870
|
+
* The type of segment dimension to use.
|
37871
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-attributedimensiontype.html}
|
37872
|
+
*/
|
37873
|
+
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";
|
37874
|
+
/**
|
37875
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.CalculatedAttributeDimension`.
|
37876
|
+
* Specifies calculated attribute based criteria for a segment.
|
37877
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-calculatedattributedimension.html}
|
37878
|
+
*/
|
37879
|
+
export type CustomerProfilesSegmentDefinitionCalculatedAttributeDimension = {
|
37880
|
+
/**
|
37881
|
+
* Overrides the condition block within the original calculated attribute definition.
|
37882
|
+
*/
|
37883
|
+
ConditionOverrides?: CustomerProfilesSegmentDefinitionConditionOverrides;
|
37884
|
+
/**
|
37885
|
+
* The type of segment dimension to use.
|
37886
|
+
*/
|
37887
|
+
DimensionType: CustomerProfilesSegmentDefinitionAttributeDimensionType;
|
37888
|
+
/**
|
37889
|
+
* @minLength `1`
|
37890
|
+
* @maxLength `50`
|
37891
|
+
*/
|
37892
|
+
Values: string[];
|
37893
|
+
};
|
37894
|
+
/**
|
37895
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.CalculatedCustomAttributes`.
|
37896
|
+
* One or more calculated attributes to use as criteria for the segment.
|
37897
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-calculatedcustomattributes.html}
|
37898
|
+
*/
|
37899
|
+
export type CustomerProfilesSegmentDefinitionCalculatedCustomAttributes = Record<string, CustomerProfilesSegmentDefinitionCalculatedAttributeDimension>;
|
37900
|
+
/**
|
37901
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.ConditionOverrides`.
|
37902
|
+
* Overrides the condition block within the original calculated attribute definition.
|
37903
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-conditionoverrides.html}
|
37904
|
+
*/
|
37905
|
+
export type CustomerProfilesSegmentDefinitionConditionOverrides = {
|
37906
|
+
/**
|
37907
|
+
* Defines the range to be applied to the calculated attribute definition.
|
37908
|
+
*/
|
37909
|
+
Range?: CustomerProfilesSegmentDefinitionRangeOverride;
|
37910
|
+
};
|
37911
|
+
/**
|
37912
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.CustomAttributes`.
|
37913
|
+
* One or more custom attributes to use as criteria for the segment.
|
37914
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-customattributes.html}
|
37915
|
+
*/
|
37916
|
+
export type CustomerProfilesSegmentDefinitionCustomAttributes = Record<string, CustomerProfilesSegmentDefinitionAttributeDimension>;
|
37917
|
+
/**
|
37918
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.DateDimension`.
|
37919
|
+
* Specifies date based criteria for a segment.
|
37920
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-datedimension.html}
|
37921
|
+
*/
|
37922
|
+
export type CustomerProfilesSegmentDefinitionDateDimension = {
|
37923
|
+
/**
|
37924
|
+
* The type of segment dimension to use for a date dimension.
|
37925
|
+
*/
|
37926
|
+
DimensionType: CustomerProfilesSegmentDefinitionDateDimensionType;
|
37927
|
+
/**
|
37928
|
+
* @minLength `1`
|
37929
|
+
* @maxLength `50`
|
37930
|
+
*/
|
37931
|
+
Values: string[];
|
37932
|
+
};
|
37933
|
+
/**
|
37934
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.DateDimensionType`.
|
37935
|
+
* The type of segment dimension to use for a date dimension.
|
37936
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-datedimensiontype.html}
|
37937
|
+
*/
|
37938
|
+
export type CustomerProfilesSegmentDefinitionDateDimensionType = "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON";
|
37939
|
+
/**
|
37940
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.Dimension`.
|
37941
|
+
* The criteria that define the dimensions for the segment.
|
37942
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-dimension.html}
|
37943
|
+
*/
|
37944
|
+
export type CustomerProfilesSegmentDefinitionDimension = {
|
37945
|
+
/**
|
37946
|
+
* Specifies the dimension settings within profile attributes for a segment.
|
37947
|
+
*/
|
37948
|
+
ProfileAttributes: CustomerProfilesSegmentDefinitionProfileAttributes;
|
37949
|
+
} | {
|
37950
|
+
/**
|
37951
|
+
* One or more calculated attributes to use as criteria for the segment.
|
37952
|
+
*/
|
37953
|
+
CalculatedAttributes?: CustomerProfilesSegmentDefinitionCalculatedCustomAttributes;
|
37954
|
+
};
|
37955
|
+
/**
|
37956
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.ExtraLengthValueProfileDimension`.
|
37957
|
+
* Specifies criteria for a segment using extended-length string values.
|
37958
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-extralengthvalueprofiledimension.html}
|
37959
|
+
*/
|
37960
|
+
export type CustomerProfilesSegmentDefinitionExtraLengthValueProfileDimension = {
|
37961
|
+
/**
|
37962
|
+
* The type of segment dimension to use for a string dimension.
|
37963
|
+
*/
|
37964
|
+
DimensionType: CustomerProfilesSegmentDefinitionStringDimensionType;
|
37965
|
+
/**
|
37966
|
+
* @minLength `1`
|
37967
|
+
* @maxLength `50`
|
37968
|
+
*/
|
37969
|
+
Values: string[];
|
37970
|
+
};
|
37971
|
+
/**
|
37972
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.Group`.
|
37973
|
+
* An array that defines the set of segment criteria to evaluate when handling segment groups for the segment.
|
37974
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-group.html}
|
37975
|
+
*/
|
37976
|
+
export type CustomerProfilesSegmentDefinitionGroup = {
|
37977
|
+
Dimensions?: CustomerProfilesSegmentDefinitionDimension[];
|
37978
|
+
SourceSegments?: CustomerProfilesSegmentDefinitionSourceSegment[];
|
37979
|
+
/**
|
37980
|
+
* Specifies the operator on how to handle multiple groups within the same segment.
|
37981
|
+
*/
|
37982
|
+
SourceType?: CustomerProfilesSegmentDefinitionIncludeOptions;
|
37983
|
+
/**
|
37984
|
+
* Specifies the operator on how to handle multiple groups within the same segment.
|
37985
|
+
*/
|
37986
|
+
Type?: CustomerProfilesSegmentDefinitionIncludeOptions;
|
37987
|
+
};
|
37988
|
+
/**
|
37989
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.IncludeOptions`.
|
37990
|
+
* Specifies the operator on how to handle multiple groups within the same segment.
|
37991
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-includeoptions.html}
|
37992
|
+
*/
|
37993
|
+
export type CustomerProfilesSegmentDefinitionIncludeOptions = "ALL" | "ANY" | "NONE";
|
37994
|
+
/**
|
37995
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.ProfileAttributes`.
|
37996
|
+
* Specifies the dimension settings within profile attributes for a segment.
|
37997
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html}
|
37998
|
+
*/
|
37999
|
+
export type CustomerProfilesSegmentDefinitionProfileAttributes = {
|
38000
|
+
/**
|
38001
|
+
* Specifies profile based criteria for a segment.
|
38002
|
+
*/
|
38003
|
+
AccountNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38004
|
+
/**
|
38005
|
+
* Specifies criteria for a segment using extended-length string values.
|
38006
|
+
*/
|
38007
|
+
AdditionalInformation?: CustomerProfilesSegmentDefinitionExtraLengthValueProfileDimension;
|
38008
|
+
/**
|
38009
|
+
* The address based criteria for the segment.
|
38010
|
+
*/
|
38011
|
+
Address?: CustomerProfilesSegmentDefinitionAddressDimension;
|
38012
|
+
/**
|
38013
|
+
* One or more custom attributes to use as criteria for the segment.
|
38014
|
+
*/
|
38015
|
+
Attributes?: CustomerProfilesSegmentDefinitionCustomAttributes;
|
38016
|
+
/**
|
38017
|
+
* The address based criteria for the segment.
|
38018
|
+
*/
|
38019
|
+
BillingAddress?: CustomerProfilesSegmentDefinitionAddressDimension;
|
38020
|
+
/**
|
38021
|
+
* Specifies date based criteria for a segment.
|
38022
|
+
*/
|
38023
|
+
BirthDate?: CustomerProfilesSegmentDefinitionDateDimension;
|
38024
|
+
/**
|
38025
|
+
* Specifies profile based criteria for a segment.
|
38026
|
+
*/
|
38027
|
+
BusinessEmailAddress?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38028
|
+
/**
|
38029
|
+
* Specifies profile based criteria for a segment.
|
38030
|
+
*/
|
38031
|
+
BusinessName?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38032
|
+
/**
|
38033
|
+
* Specifies profile based criteria for a segment.
|
38034
|
+
*/
|
38035
|
+
BusinessPhoneNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38036
|
+
/**
|
38037
|
+
* Specifies profile based criteria for a segment.
|
38038
|
+
*/
|
38039
|
+
EmailAddress?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38040
|
+
/**
|
38041
|
+
* Specifies profile based criteria for a segment.
|
38042
|
+
*/
|
38043
|
+
FirstName?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38044
|
+
/**
|
38045
|
+
* Specifies profile based criteria for a segment.
|
38046
|
+
*/
|
38047
|
+
GenderString?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38048
|
+
/**
|
38049
|
+
* Specifies profile based criteria for a segment.
|
38050
|
+
*/
|
38051
|
+
HomePhoneNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38052
|
+
/**
|
38053
|
+
* Specifies profile based criteria for a segment.
|
38054
|
+
*/
|
38055
|
+
LastName?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38056
|
+
/**
|
38057
|
+
* The address based criteria for the segment.
|
38058
|
+
*/
|
38059
|
+
MailingAddress?: CustomerProfilesSegmentDefinitionAddressDimension;
|
38060
|
+
/**
|
38061
|
+
* Specifies profile based criteria for a segment.
|
38062
|
+
*/
|
38063
|
+
MiddleName?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38064
|
+
/**
|
38065
|
+
* Specifies profile based criteria for a segment.
|
38066
|
+
*/
|
38067
|
+
MobilePhoneNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38068
|
+
/**
|
38069
|
+
* Specifies profile based criteria for a segment.
|
38070
|
+
*/
|
38071
|
+
PartyTypeString?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38072
|
+
/**
|
38073
|
+
* Specifies profile based criteria for a segment.
|
38074
|
+
*/
|
38075
|
+
PersonalEmailAddress?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38076
|
+
/**
|
38077
|
+
* Specifies profile based criteria for a segment.
|
38078
|
+
*/
|
38079
|
+
PhoneNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
|
38080
|
+
/**
|
38081
|
+
* The address based criteria for the segment.
|
38082
|
+
*/
|
38083
|
+
ShippingAddress?: CustomerProfilesSegmentDefinitionAddressDimension;
|
38084
|
+
};
|
38085
|
+
/**
|
38086
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.ProfileDimension`.
|
38087
|
+
* Specifies profile based criteria for a segment.
|
38088
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiledimension.html}
|
38089
|
+
*/
|
38090
|
+
export type CustomerProfilesSegmentDefinitionProfileDimension = {
|
38091
|
+
/**
|
38092
|
+
* The type of segment dimension to use for a string dimension.
|
38093
|
+
*/
|
38094
|
+
DimensionType: CustomerProfilesSegmentDefinitionStringDimensionType;
|
38095
|
+
/**
|
38096
|
+
* @minLength `1`
|
38097
|
+
* @maxLength `50`
|
38098
|
+
*/
|
38099
|
+
Values: string[];
|
38100
|
+
};
|
38101
|
+
/**
|
38102
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.RangeOverride`.
|
38103
|
+
* Defines the range to be applied to the calculated attribute definition.
|
38104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-rangeoverride.html}
|
38105
|
+
*/
|
38106
|
+
export type CustomerProfilesSegmentDefinitionRangeOverride = {
|
38107
|
+
/**
|
38108
|
+
* The ending point for this overridden range.
|
38109
|
+
* @min `0`
|
38110
|
+
* @max `366`
|
38111
|
+
*/
|
38112
|
+
End?: number;
|
38113
|
+
/**
|
38114
|
+
* The starting point for this overridden range.
|
38115
|
+
* @min `1`
|
38116
|
+
* @max `366`
|
38117
|
+
*/
|
38118
|
+
Start: number;
|
38119
|
+
/**
|
38120
|
+
* The unit to be applied to the range.
|
38121
|
+
*/
|
38122
|
+
Unit: "DAYS";
|
38123
|
+
};
|
38124
|
+
/**
|
38125
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.SegmentGroup`.
|
38126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-segmentgroup.html}
|
38127
|
+
*/
|
38128
|
+
export type CustomerProfilesSegmentDefinitionSegmentGroup = {
|
38129
|
+
Groups?: CustomerProfilesSegmentDefinitionGroup[];
|
38130
|
+
/**
|
38131
|
+
* Specifies the operator on how to handle multiple groups within the same segment.
|
38132
|
+
*/
|
38133
|
+
Include?: CustomerProfilesSegmentDefinitionIncludeOptions;
|
38134
|
+
};
|
38135
|
+
/**
|
38136
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.SourceSegment`.
|
38137
|
+
* The base segment to build the segment on.
|
38138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-sourcesegment.html}
|
38139
|
+
*/
|
38140
|
+
export type CustomerProfilesSegmentDefinitionSourceSegment = {
|
38141
|
+
/**
|
38142
|
+
* @minLength `1`
|
38143
|
+
* @maxLength `64`
|
38144
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
38145
|
+
*/
|
38146
|
+
SegmentDefinitionName?: string;
|
38147
|
+
};
|
38148
|
+
/**
|
38149
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.StringDimensionType`.
|
38150
|
+
* The type of segment dimension to use for a string dimension.
|
38151
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-stringdimensiontype.html}
|
38152
|
+
*/
|
38153
|
+
export type CustomerProfilesSegmentDefinitionStringDimensionType = "INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH";
|
38154
|
+
/**
|
38155
|
+
* Type definition for `AWS::CustomerProfiles::SegmentDefinition.Tag`.
|
38156
|
+
* A key-value pair to associate with a resource.
|
38157
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-tag.html}
|
38158
|
+
*/
|
38159
|
+
export type CustomerProfilesSegmentDefinitionTag = {
|
38160
|
+
/**
|
38161
|
+
* 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 -.
|
38162
|
+
* @minLength `1`
|
38163
|
+
* @maxLength `128`
|
38164
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
38165
|
+
*/
|
38166
|
+
Key: string;
|
38167
|
+
/**
|
38168
|
+
* 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 -.
|
38169
|
+
* @minLength `0`
|
38170
|
+
* @maxLength `256`
|
38171
|
+
*/
|
38172
|
+
Value: string;
|
38173
|
+
};
|
36628
38174
|
/**
|
36629
38175
|
* Resource schema for AWS::DataBrew::Dataset.
|
36630
38176
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-dataset.html}
|
@@ -44098,6 +45644,9 @@ export type DynamoDBTableProps = {
|
|
44098
45644
|
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
45645
|
*/
|
44100
45646
|
TimeToLiveSpecification?: DynamoDBTableTimeToLiveSpecification;
|
45647
|
+
/**
|
45648
|
+
* Represents the warm throughput (in read units per second and write units per second) for creating a table.
|
45649
|
+
*/
|
44101
45650
|
WarmThroughput?: DynamoDBTableWarmThroughput;
|
44102
45651
|
};
|
44103
45652
|
/**
|
@@ -44188,6 +45737,9 @@ export type DynamoDBTableGlobalSecondaryIndex = {
|
|
44188
45737
|
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
45738
|
*/
|
44190
45739
|
ProvisionedThroughput?: DynamoDBTableProvisionedThroughput;
|
45740
|
+
/**
|
45741
|
+
* 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.
|
45742
|
+
*/
|
44191
45743
|
WarmThroughput?: DynamoDBTableWarmThroughput;
|
44192
45744
|
};
|
44193
45745
|
/**
|
@@ -44469,14 +46021,17 @@ export type DynamoDBTableTimeToLiveSpecification = {
|
|
44469
46021
|
};
|
44470
46022
|
/**
|
44471
46023
|
* Type definition for `AWS::DynamoDB::Table.WarmThroughput`.
|
46024
|
+
* 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
46025
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-warmthroughput.html}
|
44473
46026
|
*/
|
44474
46027
|
export type DynamoDBTableWarmThroughput = {
|
44475
46028
|
/**
|
46029
|
+
* Represents the number of read operations your base table can instantaneously support.
|
44476
46030
|
* @min `1`
|
44477
46031
|
*/
|
44478
46032
|
ReadUnitsPerSecond?: number;
|
44479
46033
|
/**
|
46034
|
+
* Represents the number of write operations your base table can instantaneously support.
|
44480
46035
|
* @min `1`
|
44481
46036
|
*/
|
44482
46037
|
WriteUnitsPerSecond?: number;
|
@@ -46704,6 +48259,13 @@ export type EC2LaunchTemplateBaselineEbsBandwidthMbps = {
|
|
46704
48259
|
*/
|
46705
48260
|
Min?: number;
|
46706
48261
|
};
|
48262
|
+
/**
|
48263
|
+
* Type definition for `AWS::EC2::LaunchTemplate.BaselinePerformanceFactors`.
|
48264
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-baselineperformancefactors.html}
|
48265
|
+
*/
|
48266
|
+
export type EC2LaunchTemplateBaselinePerformanceFactors = {
|
48267
|
+
Cpu?: EC2LaunchTemplateCpu;
|
48268
|
+
};
|
46707
48269
|
/**
|
46708
48270
|
* Type definition for `AWS::EC2::LaunchTemplate.BlockDeviceMapping`.
|
46709
48271
|
* 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 +48343,16 @@ export type EC2LaunchTemplateConnectionTrackingSpecification = {
|
|
46781
48343
|
*/
|
46782
48344
|
UdpTimeout?: number;
|
46783
48345
|
};
|
48346
|
+
/**
|
48347
|
+
* Type definition for `AWS::EC2::LaunchTemplate.Cpu`.
|
48348
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-cpu.html}
|
48349
|
+
*/
|
48350
|
+
export type EC2LaunchTemplateCpu = {
|
48351
|
+
/**
|
48352
|
+
* 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.
|
48353
|
+
*/
|
48354
|
+
References?: EC2LaunchTemplateReference[];
|
48355
|
+
};
|
46784
48356
|
/**
|
46785
48357
|
* Type definition for `AWS::EC2::LaunchTemplate.CpuOptions`.
|
46786
48358
|
* 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 +48622,7 @@ export type EC2LaunchTemplateInstanceRequirements = {
|
|
47050
48622
|
Default: No minimum or maximum limits
|
47051
48623
|
*/
|
47052
48624
|
BaselineEbsBandwidthMbps?: EC2LaunchTemplateBaselineEbsBandwidthMbps;
|
48625
|
+
BaselinePerformanceFactors?: EC2LaunchTemplateBaselinePerformanceFactors;
|
47053
48626
|
/**
|
47054
48627
|
* 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
48628
|
+ To include burstable performance instance types, specify ``included``.
|
@@ -47704,6 +49277,16 @@ export type EC2LaunchTemplatePrivateIpAdd = {
|
|
47704
49277
|
*/
|
47705
49278
|
PrivateIpAddress?: string;
|
47706
49279
|
};
|
49280
|
+
/**
|
49281
|
+
* Type definition for `AWS::EC2::LaunchTemplate.Reference`.
|
49282
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-reference.html}
|
49283
|
+
*/
|
49284
|
+
export type EC2LaunchTemplateReference = {
|
49285
|
+
/**
|
49286
|
+
* 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.
|
49287
|
+
*/
|
49288
|
+
InstanceFamily?: string;
|
49289
|
+
};
|
47707
49290
|
/**
|
47708
49291
|
* Type definition for `AWS::EC2::LaunchTemplate.SpotOptions`.
|
47709
49292
|
* Specifies options for Spot Instances.
|
@@ -79907,6 +81490,7 @@ export type IoTFleetWiseCampaignUpdateCampaignAction = "APPROVE" | "SUSPEND" | "
|
|
79907
81490
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-decodermanifest.html}
|
79908
81491
|
*/
|
79909
81492
|
export type IoTFleetWiseDecoderManifestProps = {
|
81493
|
+
DefaultForUnmappedSignals?: IoTFleetWiseDecoderManifestDefaultForUnmappedSignalsType;
|
79910
81494
|
/**
|
79911
81495
|
* @minLength `1`
|
79912
81496
|
* @maxLength `2048`
|
@@ -79924,12 +81508,12 @@ export type IoTFleetWiseDecoderManifestProps = {
|
|
79924
81508
|
* @minLength `1`
|
79925
81509
|
* @maxLength `5000`
|
79926
81510
|
*/
|
79927
|
-
NetworkInterfaces?: (IoTFleetWiseDecoderManifestCanNetworkInterface | IoTFleetWiseDecoderManifestObdNetworkInterface)[];
|
81511
|
+
NetworkInterfaces?: (IoTFleetWiseDecoderManifestCanNetworkInterface | IoTFleetWiseDecoderManifestObdNetworkInterface | IoTFleetWiseDecoderManifestCustomDecodingNetworkInterface)[];
|
79928
81512
|
/**
|
79929
81513
|
* @minLength `1`
|
79930
81514
|
* @maxLength `5000`
|
79931
81515
|
*/
|
79932
|
-
SignalDecoders?: (IoTFleetWiseDecoderManifestCanSignalDecoder | IoTFleetWiseDecoderManifestObdSignalDecoder)[];
|
81516
|
+
SignalDecoders?: (IoTFleetWiseDecoderManifestCanSignalDecoder | IoTFleetWiseDecoderManifestObdSignalDecoder | IoTFleetWiseDecoderManifestCustomDecodingSignalDecoder)[];
|
79933
81517
|
Status?: IoTFleetWiseDecoderManifestManifestStatus;
|
79934
81518
|
/**
|
79935
81519
|
* @minLength `0`
|
@@ -80016,6 +81600,66 @@ export type IoTFleetWiseDecoderManifestCanSignalDecoder = {
|
|
80016
81600
|
InterfaceId: string;
|
80017
81601
|
Type: "CAN_SIGNAL";
|
80018
81602
|
};
|
81603
|
+
/**
|
81604
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingInterface`.
|
81605
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodinginterface.html}
|
81606
|
+
*/
|
81607
|
+
export type IoTFleetWiseDecoderManifestCustomDecodingInterface = {
|
81608
|
+
/**
|
81609
|
+
* @minLength `1`
|
81610
|
+
* @maxLength `100`
|
81611
|
+
* @pattern `^[a-zA-Z\d\-_:]+$`
|
81612
|
+
*/
|
81613
|
+
Name: string;
|
81614
|
+
};
|
81615
|
+
/**
|
81616
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingNetworkInterface`.
|
81617
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodingnetworkinterface.html}
|
81618
|
+
*/
|
81619
|
+
export type IoTFleetWiseDecoderManifestCustomDecodingNetworkInterface = {
|
81620
|
+
CustomDecodingInterface: IoTFleetWiseDecoderManifestCustomDecodingInterface;
|
81621
|
+
/**
|
81622
|
+
* @minLength `1`
|
81623
|
+
* @maxLength `50`
|
81624
|
+
*/
|
81625
|
+
InterfaceId: string;
|
81626
|
+
Type: "CUSTOM_DECODING_INTERFACE";
|
81627
|
+
};
|
81628
|
+
/**
|
81629
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingSignal`.
|
81630
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodingsignal.html}
|
81631
|
+
*/
|
81632
|
+
export type IoTFleetWiseDecoderManifestCustomDecodingSignal = {
|
81633
|
+
/**
|
81634
|
+
* @minLength `1`
|
81635
|
+
* @maxLength `150`
|
81636
|
+
* @pattern `^(?!.*\.\.)[a-zA-Z0-9_\-#:.]+$`
|
81637
|
+
*/
|
81638
|
+
Id: string;
|
81639
|
+
};
|
81640
|
+
/**
|
81641
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingSignalDecoder`.
|
81642
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodingsignaldecoder.html}
|
81643
|
+
*/
|
81644
|
+
export type IoTFleetWiseDecoderManifestCustomDecodingSignalDecoder = {
|
81645
|
+
CustomDecodingSignal: IoTFleetWiseDecoderManifestCustomDecodingSignal;
|
81646
|
+
/**
|
81647
|
+
* @minLength `1`
|
81648
|
+
* @maxLength `150`
|
81649
|
+
*/
|
81650
|
+
FullyQualifiedName: string;
|
81651
|
+
/**
|
81652
|
+
* @minLength `1`
|
81653
|
+
* @maxLength `50`
|
81654
|
+
*/
|
81655
|
+
InterfaceId: string;
|
81656
|
+
Type: "CUSTOM_DECODING_SIGNAL";
|
81657
|
+
};
|
81658
|
+
/**
|
81659
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.DefaultForUnmappedSignalsType`.
|
81660
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-defaultforunmappedsignalstype.html}
|
81661
|
+
*/
|
81662
|
+
export type IoTFleetWiseDecoderManifestDefaultForUnmappedSignalsType = "CUSTOM_DECODING";
|
80019
81663
|
/**
|
80020
81664
|
* Type definition for `AWS::IoTFleetWise::DecoderManifest.ManifestStatus`.
|
80021
81665
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-manifeststatus.html}
|
@@ -80369,6 +82013,70 @@ export type IoTFleetWiseSignalCatalogTag = {
|
|
80369
82013
|
*/
|
80370
82014
|
Value: string;
|
80371
82015
|
};
|
82016
|
+
/**
|
82017
|
+
* Definition of AWS::IoTFleetWise::StateTemplate Resource Type
|
82018
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html}
|
82019
|
+
*/
|
82020
|
+
export type IoTFleetWiseStateTemplateProps = {
|
82021
|
+
/**
|
82022
|
+
* @minLength `0`
|
82023
|
+
* @maxLength `5`
|
82024
|
+
*/
|
82025
|
+
DataExtraDimensions?: string[];
|
82026
|
+
/**
|
82027
|
+
* @minLength `1`
|
82028
|
+
* @maxLength `2048`
|
82029
|
+
* @pattern `^[^\u0000-\u001F\u007F]+$`
|
82030
|
+
*/
|
82031
|
+
Description?: string;
|
82032
|
+
/**
|
82033
|
+
* @minLength `0`
|
82034
|
+
* @maxLength `5`
|
82035
|
+
*/
|
82036
|
+
MetadataExtraDimensions?: string[];
|
82037
|
+
/**
|
82038
|
+
* @minLength `1`
|
82039
|
+
* @maxLength `100`
|
82040
|
+
* @pattern `^[a-zA-Z\d\-_:]+$`
|
82041
|
+
*/
|
82042
|
+
Name: string;
|
82043
|
+
SignalCatalogArn: string;
|
82044
|
+
/**
|
82045
|
+
* @minLength `1`
|
82046
|
+
* @maxLength `500`
|
82047
|
+
*/
|
82048
|
+
StateTemplateProperties: string[];
|
82049
|
+
/**
|
82050
|
+
* @minLength `0`
|
82051
|
+
* @maxLength `50`
|
82052
|
+
*/
|
82053
|
+
Tags?: IoTFleetWiseStateTemplateTag[];
|
82054
|
+
};
|
82055
|
+
/**
|
82056
|
+
* Attribute type definition for `AWS::IoTFleetWise::StateTemplate`.
|
82057
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#aws-resource-iotfleetwise-statetemplate-return-values}
|
82058
|
+
*/
|
82059
|
+
export type IoTFleetWiseStateTemplateAttributes = {
|
82060
|
+
Arn: string;
|
82061
|
+
CreationTime: string;
|
82062
|
+
LastModificationTime: string;
|
82063
|
+
};
|
82064
|
+
/**
|
82065
|
+
* Type definition for `AWS::IoTFleetWise::StateTemplate.Tag`.
|
82066
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-statetemplate-tag.html}
|
82067
|
+
*/
|
82068
|
+
export type IoTFleetWiseStateTemplateTag = {
|
82069
|
+
/**
|
82070
|
+
* @minLength `1`
|
82071
|
+
* @maxLength `128`
|
82072
|
+
*/
|
82073
|
+
Key: string;
|
82074
|
+
/**
|
82075
|
+
* @minLength `0`
|
82076
|
+
* @maxLength `256`
|
82077
|
+
*/
|
82078
|
+
Value: string;
|
82079
|
+
};
|
80372
82080
|
/**
|
80373
82081
|
* Definition of AWS::IoTFleetWise::Vehicle Resource Type
|
80374
82082
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-vehicle.html}
|
@@ -81347,6 +83055,14 @@ export type IoTSiteWisePortalProps = {
|
|
81347
83055
|
* A friendly name for the portal.
|
81348
83056
|
*/
|
81349
83057
|
PortalName: string;
|
83058
|
+
/**
|
83059
|
+
* The type of portal
|
83060
|
+
*/
|
83061
|
+
PortalType?: "SITEWISE_PORTAL_V1" | "SITEWISE_PORTAL_V2";
|
83062
|
+
/**
|
83063
|
+
* Map to associate detail of configuration related with a PortalType.
|
83064
|
+
*/
|
83065
|
+
PortalTypeConfiguration?: IoTSiteWisePortalPortalTypeConfiguration;
|
81350
83066
|
/**
|
81351
83067
|
* The ARN of a service role that allows the portal's users to access your AWS IoT SiteWise resources on your behalf.
|
81352
83068
|
*/
|
@@ -81378,6 +83094,23 @@ export type IoTSiteWisePortalAttributes = {
|
|
81378
83094
|
*/
|
81379
83095
|
PortalStartUrl: string;
|
81380
83096
|
};
|
83097
|
+
/**
|
83098
|
+
* Type definition for `AWS::IoTSiteWise::Portal.PortalTypeConfiguration`.
|
83099
|
+
* Map to associate detail of configuration related with a PortalType.
|
83100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-portal-portaltypeconfiguration.html}
|
83101
|
+
*/
|
83102
|
+
export type IoTSiteWisePortalPortalTypeConfiguration = Record<string, IoTSiteWisePortalPortalTypeEntry>;
|
83103
|
+
/**
|
83104
|
+
* Type definition for `AWS::IoTSiteWise::Portal.PortalTypeEntry`.
|
83105
|
+
* Container associated a certain PortalType.
|
83106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-portal-portaltypeentry.html}
|
83107
|
+
*/
|
83108
|
+
export type IoTSiteWisePortalPortalTypeEntry = {
|
83109
|
+
/**
|
83110
|
+
* List of enabled Tools for a certain portal.
|
83111
|
+
*/
|
83112
|
+
PortalTools: string[];
|
83113
|
+
};
|
81381
83114
|
/**
|
81382
83115
|
* Type definition for `AWS::IoTSiteWise::Portal.Tag`.
|
81383
83116
|
* To add or update tag, provide both key and value. To delete tag, provide only tag key to be deleted.
|
@@ -83774,6 +85507,87 @@ export type IVSEncoderConfigurationTag = {
|
|
83774
85507
|
*/
|
83775
85508
|
Value: string;
|
83776
85509
|
};
|
85510
|
+
/**
|
85511
|
+
* Resource Type definition for AWS::IVS::IngestConfiguration
|
85512
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html}
|
85513
|
+
*/
|
85514
|
+
export type IVSIngestConfigurationProps = {
|
85515
|
+
/**
|
85516
|
+
* Ingest Protocol.
|
85517
|
+
*/
|
85518
|
+
IngestProtocol?: "RTMP" | "RTMPS";
|
85519
|
+
/**
|
85520
|
+
* Whether ingest configuration allows insecure ingest.
|
85521
|
+
*/
|
85522
|
+
InsecureIngest?: boolean;
|
85523
|
+
/**
|
85524
|
+
* IngestConfiguration
|
85525
|
+
* @minLength `0`
|
85526
|
+
* @maxLength `128`
|
85527
|
+
* @pattern `^[a-zA-Z0-9-_]*$`
|
85528
|
+
*/
|
85529
|
+
Name?: string;
|
85530
|
+
/**
|
85531
|
+
* Stage ARN. A value other than an empty string indicates that stage is linked to IngestConfiguration. Default: "" (recording is disabled).
|
85532
|
+
* @minLength `0`
|
85533
|
+
* @maxLength `128`
|
85534
|
+
* @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:stage/[a-zA-Z0-9-]+$`
|
85535
|
+
*/
|
85536
|
+
StageArn?: string;
|
85537
|
+
/**
|
85538
|
+
* A list of key-value pairs that contain metadata for the asset model.
|
85539
|
+
* @maxLength `50`
|
85540
|
+
*/
|
85541
|
+
Tags?: IVSIngestConfigurationTag[];
|
85542
|
+
/**
|
85543
|
+
* User defined indentifier for participant associated with IngestConfiguration.
|
85544
|
+
*/
|
85545
|
+
UserId?: string;
|
85546
|
+
};
|
85547
|
+
/**
|
85548
|
+
* Attribute type definition for `AWS::IVS::IngestConfiguration`.
|
85549
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#aws-resource-ivs-ingestconfiguration-return-values}
|
85550
|
+
*/
|
85551
|
+
export type IVSIngestConfigurationAttributes = {
|
85552
|
+
/**
|
85553
|
+
* IngestConfiguration ARN is automatically generated on creation and assigned as the unique identifier.
|
85554
|
+
* @minLength `1`
|
85555
|
+
* @maxLength `128`
|
85556
|
+
* @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:ingest-configuration/[a-zA-Z0-9-]+$`
|
85557
|
+
*/
|
85558
|
+
Arn: string;
|
85559
|
+
/**
|
85560
|
+
* Participant Id is automatically generated on creation and assigned.
|
85561
|
+
* @minLength `0`
|
85562
|
+
* @maxLength `64`
|
85563
|
+
* @pattern `^[a-zA-Z0-9-_]*$`
|
85564
|
+
*/
|
85565
|
+
ParticipantId: string;
|
85566
|
+
/**
|
85567
|
+
* State of IngestConfiguration which determines whether IngestConfiguration is in use or not.
|
85568
|
+
*/
|
85569
|
+
State: "ACTIVE" | "INACTIVE";
|
85570
|
+
/**
|
85571
|
+
* Stream-key value.
|
85572
|
+
*/
|
85573
|
+
StreamKey: string;
|
85574
|
+
};
|
85575
|
+
/**
|
85576
|
+
* Type definition for `AWS::IVS::IngestConfiguration.Tag`.
|
85577
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-ingestconfiguration-tag.html}
|
85578
|
+
*/
|
85579
|
+
export type IVSIngestConfigurationTag = {
|
85580
|
+
/**
|
85581
|
+
* @minLength `1`
|
85582
|
+
* @maxLength `128`
|
85583
|
+
*/
|
85584
|
+
Key: string;
|
85585
|
+
/**
|
85586
|
+
* @minLength `1`
|
85587
|
+
* @maxLength `256`
|
85588
|
+
*/
|
85589
|
+
Value: string;
|
85590
|
+
};
|
83777
85591
|
/**
|
83778
85592
|
* Resource Type definition for AWS::IVS::PlaybackKeyPair
|
83779
85593
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html}
|
@@ -90376,6 +92190,7 @@ export type LambdaEventSourceMappingProps = {
|
|
90376
92190
|
* @max `10`
|
90377
92191
|
*/
|
90378
92192
|
ParallelizationFactor?: number;
|
92193
|
+
ProvisionedPollerConfig?: LambdaEventSourceMappingProvisionedPollerConfig;
|
90379
92194
|
/**
|
90380
92195
|
* (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.
|
90381
92196
|
* @minLength `1`
|
@@ -90567,6 +92382,24 @@ export type LambdaEventSourceMappingOnFailure = {
|
|
90567
92382
|
*/
|
90568
92383
|
Destination?: string;
|
90569
92384
|
};
|
92385
|
+
/**
|
92386
|
+
* Type definition for `AWS::Lambda::EventSourceMapping.ProvisionedPollerConfig`.
|
92387
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-provisionedpollerconfig.html}
|
92388
|
+
*/
|
92389
|
+
export type LambdaEventSourceMappingProvisionedPollerConfig = {
|
92390
|
+
/**
|
92391
|
+
* The maximum number of event pollers this event source can scale up to.
|
92392
|
+
* @min `1`
|
92393
|
+
* @max `2000`
|
92394
|
+
*/
|
92395
|
+
MaximumPollers?: number;
|
92396
|
+
/**
|
92397
|
+
* The minimum number of event pollers this event source can scale down to.
|
92398
|
+
* @min `1`
|
92399
|
+
* @max `200`
|
92400
|
+
*/
|
92401
|
+
MinimumPollers?: number;
|
92402
|
+
};
|
90570
92403
|
/**
|
90571
92404
|
* Type definition for `AWS::Lambda::EventSourceMapping.ScalingConfig`.
|
90572
92405
|
* (Amazon SQS only) The scaling configuration for the event source. To remove the configuration, pass an empty value.
|
@@ -97101,6 +98934,42 @@ export type M2ApplicationEngineType = "microfocus" | "bluage";
|
|
97101
98934
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-m2-application-tagmap.html}
|
97102
98935
|
*/
|
97103
98936
|
export type M2ApplicationTagMap = Record<string, string>;
|
98937
|
+
/**
|
98938
|
+
* Resource type definition for `AWS::M2::Deployment`.
|
98939
|
+
* Represents a deployment resource of an AWS Mainframe Modernization (M2) application to a specified environment
|
98940
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html}
|
98941
|
+
*/
|
98942
|
+
export type M2DeploymentProps = {
|
98943
|
+
/**
|
98944
|
+
* The application ID.
|
98945
|
+
* @pattern `^\S{1,80}$`
|
98946
|
+
*/
|
98947
|
+
ApplicationId: string;
|
98948
|
+
/**
|
98949
|
+
* The version number of the application to deploy
|
98950
|
+
*/
|
98951
|
+
ApplicationVersion: number;
|
98952
|
+
/**
|
98953
|
+
* The environment ID.
|
98954
|
+
* @pattern `^\S{1,80}$`
|
98955
|
+
*/
|
98956
|
+
EnvironmentId: string;
|
98957
|
+
};
|
98958
|
+
/**
|
98959
|
+
* Attribute type definition for `AWS::M2::Deployment`.
|
98960
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html#aws-resource-m2-deployment-return-values}
|
98961
|
+
*/
|
98962
|
+
export type M2DeploymentAttributes = {
|
98963
|
+
/**
|
98964
|
+
* The deployment ID.
|
98965
|
+
* @pattern `^\S{1,80}$`
|
98966
|
+
*/
|
98967
|
+
DeploymentId: string;
|
98968
|
+
/**
|
98969
|
+
* The status of the deployment.
|
98970
|
+
*/
|
98971
|
+
Status: string;
|
98972
|
+
};
|
97104
98973
|
/**
|
97105
98974
|
* Resource type definition for `AWS::M2::Environment`.
|
97106
98975
|
* Represents a runtime environment that can run migrated mainframe applications.
|
@@ -109758,6 +111627,10 @@ export type OpenSearchServerlessSecurityConfigProps = {
|
|
109758
111627
|
* @maxLength `1000`
|
109759
111628
|
*/
|
109760
111629
|
Description?: string;
|
111630
|
+
/**
|
111631
|
+
* Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
|
111632
|
+
*/
|
111633
|
+
IamIdentityCenterOptions?: OpenSearchServerlessSecurityConfigIamIdentityCenterConfigOptions;
|
109761
111634
|
/**
|
109762
111635
|
* The friendly name of the security config
|
109763
111636
|
* @minLength `3`
|
@@ -109779,6 +111652,23 @@ export type OpenSearchServerlessSecurityConfigProps = {
|
|
109779
111652
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-securityconfig.html#aws-resource-opensearchserverless-securityconfig-return-values}
|
109780
111653
|
*/
|
109781
111654
|
export type OpenSearchServerlessSecurityConfigAttributes = {
|
111655
|
+
/**
|
111656
|
+
* Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
|
111657
|
+
*/
|
111658
|
+
IamIdentityCenterOptions: {
|
111659
|
+
/**
|
111660
|
+
* The ARN of the IAM Identity Center application used to integrate with OpenSearch Serverless
|
111661
|
+
*/
|
111662
|
+
ApplicationArn: string;
|
111663
|
+
/**
|
111664
|
+
* The description of the IAM Identity Center application used to integrate with OpenSearch Serverless
|
111665
|
+
*/
|
111666
|
+
ApplicationDescription: string;
|
111667
|
+
/**
|
111668
|
+
* The name of the IAM Identity Center application used to integrate with OpenSearch Serverless
|
111669
|
+
*/
|
111670
|
+
ApplicationName: string;
|
111671
|
+
};
|
109782
111672
|
/**
|
109783
111673
|
* The identifier of the security config
|
109784
111674
|
* @minLength `1`
|
@@ -109786,6 +111676,25 @@ export type OpenSearchServerlessSecurityConfigAttributes = {
|
|
109786
111676
|
*/
|
109787
111677
|
Id: string;
|
109788
111678
|
};
|
111679
|
+
/**
|
111680
|
+
* Type definition for `AWS::OpenSearchServerless::SecurityConfig.IamIdentityCenterConfigOptions`.
|
111681
|
+
* Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
|
111682
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-iamidentitycenterconfigoptions.html}
|
111683
|
+
*/
|
111684
|
+
export type OpenSearchServerlessSecurityConfigIamIdentityCenterConfigOptions = {
|
111685
|
+
/**
|
111686
|
+
* Group attribute for this IAM Identity Center integration
|
111687
|
+
*/
|
111688
|
+
GroupAttribute?: string;
|
111689
|
+
/**
|
111690
|
+
* The ARN of the IAM Identity Center instance used to integrate with OpenSearch Serverless
|
111691
|
+
*/
|
111692
|
+
InstanceArn: string;
|
111693
|
+
/**
|
111694
|
+
* User attribute for this IAM Identity Center integration
|
111695
|
+
*/
|
111696
|
+
UserAttribute?: string;
|
111697
|
+
};
|
109789
111698
|
/**
|
109790
111699
|
* Type definition for `AWS::OpenSearchServerless::SecurityConfig.SamlConfigOptions`.
|
109791
111700
|
* Describes saml options in form of key value map
|
@@ -109823,7 +111732,7 @@ export type OpenSearchServerlessSecurityConfigSamlConfigOptions = {
|
|
109823
111732
|
* Config type for security config
|
109824
111733
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-securityconfigtype.html}
|
109825
111734
|
*/
|
109826
|
-
export type OpenSearchServerlessSecurityConfigSecurityConfigType = "saml";
|
111735
|
+
export type OpenSearchServerlessSecurityConfigSecurityConfigType = "saml" | "iamidentitycenter";
|
109827
111736
|
/**
|
109828
111737
|
* Resource type definition for `AWS::OpenSearchServerless::SecurityPolicy`.
|
109829
111738
|
* Amazon OpenSearchServerless security policy resource
|
@@ -145346,6 +147255,7 @@ export type RDSGlobalClusterProps = {
|
|
145346
147255
|
* @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
|
145347
147256
|
*/
|
145348
147257
|
GlobalClusterIdentifier?: string;
|
147258
|
+
GlobalEndpoint?: RDSGlobalClusterGlobalEndpoint;
|
145349
147259
|
/**
|
145350
147260
|
* 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
147261
|
*/
|
@@ -145361,6 +147271,16 @@ export type RDSGlobalClusterProps = {
|
|
145361
147271
|
*/
|
145362
147272
|
Tags?: RDSGlobalClusterTag[];
|
145363
147273
|
};
|
147274
|
+
/**
|
147275
|
+
* Type definition for `AWS::RDS::GlobalCluster.GlobalEndpoint`.
|
147276
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-globalcluster-globalendpoint.html}
|
147277
|
+
*/
|
147278
|
+
export type RDSGlobalClusterGlobalEndpoint = {
|
147279
|
+
/**
|
147280
|
+
* The writer endpoint for the global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
|
147281
|
+
*/
|
147282
|
+
Address?: string;
|
147283
|
+
};
|
145364
147284
|
/**
|
145365
147285
|
* Type definition for `AWS::RDS::GlobalCluster.Tag`.
|
145366
147286
|
* A key-value pair to associate with a resource.
|
@@ -147911,6 +149831,72 @@ export type ResourceGroupsGroupTagFilter = {
|
|
147911
149831
|
Key?: string;
|
147912
149832
|
Values?: string[];
|
147913
149833
|
};
|
149834
|
+
/**
|
149835
|
+
* Resource type definition for `AWS::ResourceGroups::TagSyncTask`.
|
149836
|
+
* Schema for ResourceGroups::TagSyncTask
|
149837
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html}
|
149838
|
+
*/
|
149839
|
+
export type ResourceGroupsTagSyncTaskProps = {
|
149840
|
+
/**
|
149841
|
+
* The Amazon resource name (ARN) or name of the application group for which you want to create a tag-sync task
|
149842
|
+
* @minLength `12`
|
149843
|
+
* @maxLength `1600`
|
149844
|
+
* @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})`
|
149845
|
+
*/
|
149846
|
+
Group: string;
|
149847
|
+
/**
|
149848
|
+
* The Amazon resource name (ARN) of the role assumed by the service to tag and untag resources on your behalf.
|
149849
|
+
* @minLength `20`
|
149850
|
+
* @maxLength `2048`
|
149851
|
+
* @pattern `arn:(aws[a-zA-Z-]*)?:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
|
149852
|
+
*/
|
149853
|
+
RoleArn: string;
|
149854
|
+
/**
|
149855
|
+
* 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.
|
149856
|
+
* @minLength `1`
|
149857
|
+
* @maxLength `128`
|
149858
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
149859
|
+
*/
|
149860
|
+
TagKey: string;
|
149861
|
+
/**
|
149862
|
+
* 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.
|
149863
|
+
* @minLength `0`
|
149864
|
+
* @maxLength `256`
|
149865
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
149866
|
+
*/
|
149867
|
+
TagValue: string;
|
149868
|
+
};
|
149869
|
+
/**
|
149870
|
+
* Attribute type definition for `AWS::ResourceGroups::TagSyncTask`.
|
149871
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html#aws-resource-resourcegroups-tagsynctask-return-values}
|
149872
|
+
*/
|
149873
|
+
export type ResourceGroupsTagSyncTaskAttributes = {
|
149874
|
+
/**
|
149875
|
+
* The Amazon resource name (ARN) of the ApplicationGroup for which the TagSyncTask is created
|
149876
|
+
* @minLength `12`
|
149877
|
+
* @maxLength `1600`
|
149878
|
+
* @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}`
|
149879
|
+
*/
|
149880
|
+
GroupArn: string;
|
149881
|
+
/**
|
149882
|
+
* The Name of the application group for which the TagSyncTask is created
|
149883
|
+
* @minLength `1`
|
149884
|
+
* @maxLength `300`
|
149885
|
+
* @pattern `[a-zA-Z0-9_\.-]{1,150}/[a-z0-9]{26}`
|
149886
|
+
*/
|
149887
|
+
GroupName: string;
|
149888
|
+
/**
|
149889
|
+
* The status of the TagSyncTask
|
149890
|
+
*/
|
149891
|
+
Status: "ACTIVE" | "ERROR";
|
149892
|
+
/**
|
149893
|
+
* The ARN of the TagSyncTask resource
|
149894
|
+
* @minLength `12`
|
149895
|
+
* @maxLength `1600`
|
149896
|
+
* @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}`
|
149897
|
+
*/
|
149898
|
+
TaskArn: string;
|
149899
|
+
};
|
147914
149900
|
/**
|
147915
149901
|
* AWS::RoboMaker::Fleet resource creates an AWS RoboMaker fleet. Fleets contain robots and can receive deployments.
|
147916
149902
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html}
|
@@ -152946,6 +154932,10 @@ export type S3ExpressDirectoryBucketProps = {
|
|
152946
154932
|
* Specifies the number of Availability Zone that's used for redundancy for the bucket.
|
152947
154933
|
*/
|
152948
154934
|
DataRedundancy: "SingleAvailabilityZone";
|
154935
|
+
/**
|
154936
|
+
* Lifecycle rules that define how Amazon S3 Express manages objects during their lifetime.
|
154937
|
+
*/
|
154938
|
+
LifecycleConfiguration?: S3ExpressDirectoryBucketLifecycleConfiguration;
|
152949
154939
|
/**
|
152950
154940
|
* Specifies the AZ ID of the Availability Zone where the directory bucket will be created. An example AZ ID value is 'use1-az5'.
|
152951
154941
|
*/
|
@@ -152965,6 +154955,18 @@ export type S3ExpressDirectoryBucketAttributes = {
|
|
152965
154955
|
*/
|
152966
154956
|
AvailabilityZoneName: string;
|
152967
154957
|
};
|
154958
|
+
/**
|
154959
|
+
* Type definition for `AWS::S3Express::DirectoryBucket.AbortIncompleteMultipartUpload`.
|
154960
|
+
* Specifies the days since the initiation of an incomplete multipart upload that Amazon S3 will wait before permanently removing all parts of the upload.
|
154961
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-abortincompletemultipartupload.html}
|
154962
|
+
*/
|
154963
|
+
export type S3ExpressDirectoryBucketAbortIncompleteMultipartUpload = {
|
154964
|
+
/**
|
154965
|
+
* Specifies the number of days after which Amazon S3 aborts an incomplete multipart upload.
|
154966
|
+
* @min `0`
|
154967
|
+
*/
|
154968
|
+
DaysAfterInitiation: number;
|
154969
|
+
};
|
152968
154970
|
/**
|
152969
154971
|
* Type definition for `AWS::S3Express::DirectoryBucket.BucketEncryption`.
|
152970
154972
|
* 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 +154978,44 @@ export type S3ExpressDirectoryBucketBucketEncryption = {
|
|
152976
154978
|
*/
|
152977
154979
|
ServerSideEncryptionConfiguration: S3ExpressDirectoryBucketServerSideEncryptionRule[];
|
152978
154980
|
};
|
154981
|
+
/**
|
154982
|
+
* Type definition for `AWS::S3Express::DirectoryBucket.LifecycleConfiguration`.
|
154983
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-lifecycleconfiguration.html}
|
154984
|
+
*/
|
154985
|
+
export type S3ExpressDirectoryBucketLifecycleConfiguration = {
|
154986
|
+
/**
|
154987
|
+
* A lifecycle rule for individual objects in an Amazon S3 Express bucket.
|
154988
|
+
*/
|
154989
|
+
Rules: S3ExpressDirectoryBucketRule[];
|
154990
|
+
};
|
154991
|
+
/**
|
154992
|
+
* Type definition for `AWS::S3Express::DirectoryBucket.Rule`.
|
154993
|
+
* You must specify at least one of the following properties: AbortIncompleteMultipartUpload, or ExpirationInDays.
|
154994
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-rule.html}
|
154995
|
+
*/
|
154996
|
+
export type S3ExpressDirectoryBucketRule = {
|
154997
|
+
/**
|
154998
|
+
* Specifies the days since the initiation of an incomplete multipart upload that Amazon S3 will wait before permanently removing all parts of the upload.
|
154999
|
+
*/
|
155000
|
+
AbortIncompleteMultipartUpload?: S3ExpressDirectoryBucketAbortIncompleteMultipartUpload;
|
155001
|
+
ExpirationInDays?: number;
|
155002
|
+
/**
|
155003
|
+
* @maxLength `255`
|
155004
|
+
*/
|
155005
|
+
Id?: string;
|
155006
|
+
/**
|
155007
|
+
* @maxLength `20`
|
155008
|
+
* @pattern `[0-9]+`
|
155009
|
+
*/
|
155010
|
+
ObjectSizeGreaterThan?: string;
|
155011
|
+
/**
|
155012
|
+
* @maxLength `20`
|
155013
|
+
* @pattern `[0-9]+`
|
155014
|
+
*/
|
155015
|
+
ObjectSizeLessThan?: string;
|
155016
|
+
Prefix?: string;
|
155017
|
+
Status: "Enabled" | "Disabled";
|
155018
|
+
};
|
152979
155019
|
/**
|
152980
155020
|
* Type definition for `AWS::S3Express::DirectoryBucket.ServerSideEncryptionByDefault`.
|
152981
155021
|
* 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 +155908,7 @@ export type SageMakerClusterClusterEbsVolumeConfig = {
|
|
153868
155908
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html}
|
153869
155909
|
*/
|
153870
155910
|
export type SageMakerClusterClusterInstanceGroup = {
|
155911
|
+
CustomMetadata?: unknown;
|
153871
155912
|
/**
|
153872
155913
|
* The execution role for the instance group to assume.
|
153873
155914
|
* @minLength `20`
|
@@ -155077,7 +157118,7 @@ export type SageMakerDomainLifecycleManagement = "ENABLED" | "DISABLED";
|
|
155077
157118
|
* Type definition for `AWS::SageMaker::Domain.MlTools`.
|
155078
157119
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-mltools.html}
|
155079
157120
|
*/
|
155080
|
-
export type SageMakerDomainMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization";
|
157121
|
+
export type SageMakerDomainMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard";
|
155081
157122
|
/**
|
155082
157123
|
* Type definition for `AWS::SageMaker::Domain.ResourceSpec`.
|
155083
157124
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-resourcespec.html}
|
@@ -158548,7 +160589,7 @@ export type SageMakerModelPackageAttributes = {
|
|
158548
160589
|
* The Amazon Resource Name (ARN) of the model package group.
|
158549
160590
|
* @minLength `1`
|
158550
160591
|
* @maxLength `2048`
|
158551
|
-
* @pattern `^arn:aws(-cn|-us-gov)?:sagemaker:[a-z0-9\-]{9,16}:[0-9]{12}:model-package/[\S]{1,2048}$`
|
160592
|
+
* @pattern `^arn:aws(-cn|-us-gov|-iso-f)?:sagemaker:[a-z0-9\-]{9,16}:[0-9]{12}:model-package/[\S]{1,2048}$`
|
158552
160593
|
*/
|
158553
160594
|
ModelPackageArn: string;
|
158554
160595
|
/**
|
@@ -161393,7 +163434,7 @@ export type SageMakerUserProfileLifecycleManagement = "ENABLED" | "DISABLED";
|
|
161393
163434
|
* Type definition for `AWS::SageMaker::UserProfile.MlTools`.
|
161394
163435
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-mltools.html}
|
161395
163436
|
*/
|
161396
|
-
export type SageMakerUserProfileMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization";
|
163437
|
+
export type SageMakerUserProfileMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard";
|
161397
163438
|
/**
|
161398
163439
|
* Type definition for `AWS::SageMaker::UserProfile.ResourceSpec`.
|
161399
163440
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-resourcespec.html}
|
@@ -170498,6 +172539,10 @@ export type SyntheticsCanaryProps = {
|
|
170498
172539
|
* @pattern `^[0-9a-z_\-]{1,255}$`
|
170499
172540
|
*/
|
170500
172541
|
Name: string;
|
172542
|
+
/**
|
172543
|
+
* Setting to control if provisioned resources created by Synthetics are deleted alongside the canary. Default is AUTOMATIC.
|
172544
|
+
*/
|
172545
|
+
ProvisionedResourceCleanup?: "AUTOMATIC" | "OFF";
|
170501
172546
|
/**
|
170502
172547
|
* List of resources which canary tags should be replicated to.
|
170503
172548
|
*/
|
@@ -177566,6 +179611,696 @@ export type WisdomKnowledgeBaseTag = {
|
|
177566
179611
|
*/
|
177567
179612
|
Value: string;
|
177568
179613
|
};
|
179614
|
+
/**
|
179615
|
+
* Definition of AWS::Wisdom::MessageTemplate Resource Type
|
179616
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplate.html}
|
179617
|
+
*/
|
179618
|
+
export type WisdomMessageTemplateProps = {
|
179619
|
+
/**
|
179620
|
+
* The channel subtype this message template applies to.
|
179621
|
+
*/
|
179622
|
+
ChannelSubtype: WisdomMessageTemplateChannelSubtype;
|
179623
|
+
/**
|
179624
|
+
* The content of the message template.
|
179625
|
+
*/
|
179626
|
+
Content: WisdomMessageTemplateContent;
|
179627
|
+
/**
|
179628
|
+
* 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.
|
179629
|
+
*/
|
179630
|
+
DefaultAttributes?: WisdomMessageTemplateMessageTemplateAttributes;
|
179631
|
+
/**
|
179632
|
+
* The description of the message template.
|
179633
|
+
* @minLength `1`
|
179634
|
+
* @maxLength `255`
|
179635
|
+
* @pattern `^[a-zA-Z0-9\\s_.,-]+`
|
179636
|
+
*/
|
179637
|
+
Description?: string;
|
179638
|
+
/**
|
179639
|
+
* The configuration information of the user groups that the message template is accessible to.
|
179640
|
+
*/
|
179641
|
+
GroupingConfiguration?: WisdomMessageTemplateGroupingConfiguration;
|
179642
|
+
/**
|
179643
|
+
* The Amazon Resource Name (ARN) of the knowledge base to which the message template belongs.
|
179644
|
+
* @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})?$`
|
179645
|
+
*/
|
179646
|
+
KnowledgeBaseArn: string;
|
179647
|
+
/**
|
179648
|
+
* 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
|
179649
|
+
* @minLength `2`
|
179650
|
+
* @maxLength `5`
|
179651
|
+
*/
|
179652
|
+
Language?: string;
|
179653
|
+
/**
|
179654
|
+
* The name of the message template.
|
179655
|
+
* @minLength `1`
|
179656
|
+
* @maxLength `255`
|
179657
|
+
* @pattern `^[a-zA-Z0-9\\s_.,-]+`
|
179658
|
+
*/
|
179659
|
+
Name: string;
|
179660
|
+
/**
|
179661
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
179662
|
+
*/
|
179663
|
+
Tags?: WisdomMessageTemplateTag[];
|
179664
|
+
};
|
179665
|
+
/**
|
179666
|
+
* Attribute type definition for `AWS::Wisdom::MessageTemplate`.
|
179667
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplate.html#aws-resource-wisdom-messagetemplate-return-values}
|
179668
|
+
*/
|
179669
|
+
export type WisdomMessageTemplateAttributes = {
|
179670
|
+
/**
|
179671
|
+
* The Amazon Resource Name (ARN) of the message template.
|
179672
|
+
* @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})?$`
|
179673
|
+
*/
|
179674
|
+
MessageTemplateArn: string;
|
179675
|
+
/**
|
179676
|
+
* The content SHA256 of the message template.
|
179677
|
+
* @minLength `1`
|
179678
|
+
* @maxLength `64`
|
179679
|
+
*/
|
179680
|
+
MessageTemplateContentSha256: string;
|
179681
|
+
/**
|
179682
|
+
* The unique identifier of the message template.
|
179683
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
179684
|
+
*/
|
179685
|
+
MessageTemplateId: string;
|
179686
|
+
};
|
179687
|
+
/**
|
179688
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.AgentAttributes`.
|
179689
|
+
* The agent attributes that are used with the message template.
|
179690
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-agentattributes.html}
|
179691
|
+
*/
|
179692
|
+
export type WisdomMessageTemplateAgentAttributes = {
|
179693
|
+
/**
|
179694
|
+
* The agent’s first name as entered in their Amazon Connect user account.
|
179695
|
+
* @minLength `1`
|
179696
|
+
* @maxLength `32767`
|
179697
|
+
*/
|
179698
|
+
FirstName?: string;
|
179699
|
+
/**
|
179700
|
+
* The agent’s last name as entered in their Amazon Connect user account.
|
179701
|
+
* @minLength `1`
|
179702
|
+
* @maxLength `32767`
|
179703
|
+
*/
|
179704
|
+
LastName?: string;
|
179705
|
+
};
|
179706
|
+
/**
|
179707
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.ChannelSubtype`.
|
179708
|
+
* The channel subtype this message template applies to.
|
179709
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-channelsubtype.html}
|
179710
|
+
*/
|
179711
|
+
export type WisdomMessageTemplateChannelSubtype = "EMAIL" | "SMS";
|
179712
|
+
/**
|
179713
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.Content`.
|
179714
|
+
* The content of the message template.
|
179715
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-content.html}
|
179716
|
+
*/
|
179717
|
+
export type WisdomMessageTemplateContent = {
|
179718
|
+
/**
|
179719
|
+
* The content of message template that applies to email channel subtype.
|
179720
|
+
*/
|
179721
|
+
EmailMessageTemplateContent?: WisdomMessageTemplateEmailMessageTemplateContent;
|
179722
|
+
/**
|
179723
|
+
* The content of message template that applies to SMS channel subtype.
|
179724
|
+
*/
|
179725
|
+
SmsMessageTemplateContent?: WisdomMessageTemplateSmsMessageTemplateContent;
|
179726
|
+
};
|
179727
|
+
/**
|
179728
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.CustomAttributes`.
|
179729
|
+
* The custom attributes that are used with the message template.
|
179730
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-customattributes.html}
|
179731
|
+
*/
|
179732
|
+
export type WisdomMessageTemplateCustomAttributes = Record<string, string>;
|
179733
|
+
/**
|
179734
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.CustomerProfileAttributes`.
|
179735
|
+
* The customer profile attributes that are used with the message template.
|
179736
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-customerprofileattributes.html}
|
179737
|
+
*/
|
179738
|
+
export type WisdomMessageTemplateCustomerProfileAttributes = {
|
179739
|
+
/**
|
179740
|
+
* A unique account number that you have given to the customer.
|
179741
|
+
* @minLength `1`
|
179742
|
+
* @maxLength `32767`
|
179743
|
+
*/
|
179744
|
+
AccountNumber?: string;
|
179745
|
+
/**
|
179746
|
+
* Any additional information relevant to the customer's profile.
|
179747
|
+
* @minLength `1`
|
179748
|
+
* @maxLength `32767`
|
179749
|
+
*/
|
179750
|
+
AdditionalInformation?: string;
|
179751
|
+
/**
|
179752
|
+
* The first line of a customer address.
|
179753
|
+
* @minLength `1`
|
179754
|
+
* @maxLength `32767`
|
179755
|
+
*/
|
179756
|
+
Address1?: string;
|
179757
|
+
/**
|
179758
|
+
* The second line of a customer address.
|
179759
|
+
* @minLength `1`
|
179760
|
+
* @maxLength `32767`
|
179761
|
+
*/
|
179762
|
+
Address2?: string;
|
179763
|
+
/**
|
179764
|
+
* The third line of a customer address.
|
179765
|
+
* @minLength `1`
|
179766
|
+
* @maxLength `32767`
|
179767
|
+
*/
|
179768
|
+
Address3?: string;
|
179769
|
+
/**
|
179770
|
+
* The fourth line of a customer address.
|
179771
|
+
* @minLength `1`
|
179772
|
+
* @maxLength `32767`
|
179773
|
+
*/
|
179774
|
+
Address4?: string;
|
179775
|
+
/**
|
179776
|
+
* The first line of a customer’s billing address.
|
179777
|
+
* @minLength `1`
|
179778
|
+
* @maxLength `32767`
|
179779
|
+
*/
|
179780
|
+
BillingAddress1?: string;
|
179781
|
+
/**
|
179782
|
+
* The second line of a customer’s billing address.
|
179783
|
+
* @minLength `1`
|
179784
|
+
* @maxLength `32767`
|
179785
|
+
*/
|
179786
|
+
BillingAddress2?: string;
|
179787
|
+
/**
|
179788
|
+
* The third line of a customer’s billing address.
|
179789
|
+
* @minLength `1`
|
179790
|
+
* @maxLength `32767`
|
179791
|
+
*/
|
179792
|
+
BillingAddress3?: string;
|
179793
|
+
/**
|
179794
|
+
* The fourth line of a customer’s billing address.
|
179795
|
+
* @minLength `1`
|
179796
|
+
* @maxLength `32767`
|
179797
|
+
*/
|
179798
|
+
BillingAddress4?: string;
|
179799
|
+
/**
|
179800
|
+
* The city of a customer’s billing address.
|
179801
|
+
* @minLength `1`
|
179802
|
+
* @maxLength `32767`
|
179803
|
+
*/
|
179804
|
+
BillingCity?: string;
|
179805
|
+
/**
|
179806
|
+
* The country of a customer’s billing address.
|
179807
|
+
* @minLength `1`
|
179808
|
+
* @maxLength `32767`
|
179809
|
+
*/
|
179810
|
+
BillingCountry?: string;
|
179811
|
+
/**
|
179812
|
+
* The county of a customer’s billing address.
|
179813
|
+
* @minLength `1`
|
179814
|
+
* @maxLength `32767`
|
179815
|
+
*/
|
179816
|
+
BillingCounty?: string;
|
179817
|
+
/**
|
179818
|
+
* The postal code of a customer’s billing address.
|
179819
|
+
* @minLength `1`
|
179820
|
+
* @maxLength `32767`
|
179821
|
+
*/
|
179822
|
+
BillingPostalCode?: string;
|
179823
|
+
/**
|
179824
|
+
* The province of a customer’s billing address.
|
179825
|
+
* @minLength `1`
|
179826
|
+
* @maxLength `32767`
|
179827
|
+
*/
|
179828
|
+
BillingProvince?: string;
|
179829
|
+
/**
|
179830
|
+
* The state of a customer’s billing address.
|
179831
|
+
* @minLength `1`
|
179832
|
+
* @maxLength `32767`
|
179833
|
+
*/
|
179834
|
+
BillingState?: string;
|
179835
|
+
/**
|
179836
|
+
* The customer's birth date.
|
179837
|
+
* @minLength `1`
|
179838
|
+
* @maxLength `32767`
|
179839
|
+
*/
|
179840
|
+
BirthDate?: string;
|
179841
|
+
/**
|
179842
|
+
* The customer's business email address.
|
179843
|
+
* @minLength `1`
|
179844
|
+
* @maxLength `32767`
|
179845
|
+
*/
|
179846
|
+
BusinessEmailAddress?: string;
|
179847
|
+
/**
|
179848
|
+
* The name of the customer's business.
|
179849
|
+
* @minLength `1`
|
179850
|
+
* @maxLength `32767`
|
179851
|
+
*/
|
179852
|
+
BusinessName?: string;
|
179853
|
+
/**
|
179854
|
+
* The customer's business phone number.
|
179855
|
+
* @minLength `1`
|
179856
|
+
* @maxLength `32767`
|
179857
|
+
*/
|
179858
|
+
BusinessPhoneNumber?: string;
|
179859
|
+
/**
|
179860
|
+
* The city in which a customer lives.
|
179861
|
+
* @minLength `1`
|
179862
|
+
* @maxLength `32767`
|
179863
|
+
*/
|
179864
|
+
City?: string;
|
179865
|
+
/**
|
179866
|
+
* The country in which a customer lives.
|
179867
|
+
* @minLength `1`
|
179868
|
+
* @maxLength `32767`
|
179869
|
+
*/
|
179870
|
+
Country?: string;
|
179871
|
+
/**
|
179872
|
+
* The county in which a customer lives.
|
179873
|
+
* @minLength `1`
|
179874
|
+
* @maxLength `32767`
|
179875
|
+
*/
|
179876
|
+
County?: string;
|
179877
|
+
/**
|
179878
|
+
* The custom attributes that are used with the message template.
|
179879
|
+
*/
|
179880
|
+
Custom?: WisdomMessageTemplateCustomAttributes;
|
179881
|
+
/**
|
179882
|
+
* The customer's email address, which has not been specified as a personal or business address.
|
179883
|
+
* @minLength `1`
|
179884
|
+
* @maxLength `32767`
|
179885
|
+
*/
|
179886
|
+
EmailAddress?: string;
|
179887
|
+
/**
|
179888
|
+
* The customer's first name.
|
179889
|
+
* @minLength `1`
|
179890
|
+
* @maxLength `32767`
|
179891
|
+
*/
|
179892
|
+
FirstName?: string;
|
179893
|
+
/**
|
179894
|
+
* The customer's gender.
|
179895
|
+
* @minLength `1`
|
179896
|
+
* @maxLength `32767`
|
179897
|
+
*/
|
179898
|
+
Gender?: string;
|
179899
|
+
/**
|
179900
|
+
* The customer's home phone number.
|
179901
|
+
* @minLength `1`
|
179902
|
+
* @maxLength `32767`
|
179903
|
+
*/
|
179904
|
+
HomePhoneNumber?: string;
|
179905
|
+
/**
|
179906
|
+
* The customer's last name.
|
179907
|
+
* @minLength `1`
|
179908
|
+
* @maxLength `32767`
|
179909
|
+
*/
|
179910
|
+
LastName?: string;
|
179911
|
+
/**
|
179912
|
+
* The first line of a customer’s mailing address.
|
179913
|
+
* @minLength `1`
|
179914
|
+
* @maxLength `32767`
|
179915
|
+
*/
|
179916
|
+
MailingAddress1?: string;
|
179917
|
+
/**
|
179918
|
+
* The second line of a customer’s mailing address.
|
179919
|
+
* @minLength `1`
|
179920
|
+
* @maxLength `32767`
|
179921
|
+
*/
|
179922
|
+
MailingAddress2?: string;
|
179923
|
+
/**
|
179924
|
+
* The third line of a customer’s mailing address.
|
179925
|
+
* @minLength `1`
|
179926
|
+
* @maxLength `32767`
|
179927
|
+
*/
|
179928
|
+
MailingAddress3?: string;
|
179929
|
+
/**
|
179930
|
+
* The fourth line of a customer’s mailing address.
|
179931
|
+
* @minLength `1`
|
179932
|
+
* @maxLength `32767`
|
179933
|
+
*/
|
179934
|
+
MailingAddress4?: string;
|
179935
|
+
/**
|
179936
|
+
* The city of a customer’s mailing address.
|
179937
|
+
* @minLength `1`
|
179938
|
+
* @maxLength `32767`
|
179939
|
+
*/
|
179940
|
+
MailingCity?: string;
|
179941
|
+
/**
|
179942
|
+
* The country of a customer’s mailing address.
|
179943
|
+
* @minLength `1`
|
179944
|
+
* @maxLength `32767`
|
179945
|
+
*/
|
179946
|
+
MailingCountry?: string;
|
179947
|
+
/**
|
179948
|
+
* The county of a customer’s mailing address.
|
179949
|
+
* @minLength `1`
|
179950
|
+
* @maxLength `32767`
|
179951
|
+
*/
|
179952
|
+
MailingCounty?: string;
|
179953
|
+
/**
|
179954
|
+
* The postal code of a customer’s mailing address
|
179955
|
+
* @minLength `1`
|
179956
|
+
* @maxLength `32767`
|
179957
|
+
*/
|
179958
|
+
MailingPostalCode?: string;
|
179959
|
+
/**
|
179960
|
+
* The province of a customer’s mailing address.
|
179961
|
+
* @minLength `1`
|
179962
|
+
* @maxLength `32767`
|
179963
|
+
*/
|
179964
|
+
MailingProvince?: string;
|
179965
|
+
/**
|
179966
|
+
* The state of a customer’s mailing address.
|
179967
|
+
* @minLength `1`
|
179968
|
+
* @maxLength `32767`
|
179969
|
+
*/
|
179970
|
+
MailingState?: string;
|
179971
|
+
/**
|
179972
|
+
* The customer's middle name.
|
179973
|
+
* @minLength `1`
|
179974
|
+
* @maxLength `32767`
|
179975
|
+
*/
|
179976
|
+
MiddleName?: string;
|
179977
|
+
/**
|
179978
|
+
* The customer's mobile phone number.
|
179979
|
+
* @minLength `1`
|
179980
|
+
* @maxLength `32767`
|
179981
|
+
*/
|
179982
|
+
MobilePhoneNumber?: string;
|
179983
|
+
/**
|
179984
|
+
* The customer's party type.
|
179985
|
+
* @minLength `1`
|
179986
|
+
* @maxLength `32767`
|
179987
|
+
*/
|
179988
|
+
PartyType?: string;
|
179989
|
+
/**
|
179990
|
+
* The customer's phone number, which has not been specified as a mobile, home, or business number.
|
179991
|
+
* @minLength `1`
|
179992
|
+
* @maxLength `32767`
|
179993
|
+
*/
|
179994
|
+
PhoneNumber?: string;
|
179995
|
+
/**
|
179996
|
+
* The postal code of a customer address.
|
179997
|
+
* @minLength `1`
|
179998
|
+
* @maxLength `32767`
|
179999
|
+
*/
|
180000
|
+
PostalCode?: string;
|
180001
|
+
/**
|
180002
|
+
* The ARN of a customer profile.
|
180003
|
+
* @minLength `1`
|
180004
|
+
* @maxLength `32767`
|
180005
|
+
*/
|
180006
|
+
ProfileARN?: string;
|
180007
|
+
/**
|
180008
|
+
* The unique identifier of a customer profile.
|
180009
|
+
* @minLength `1`
|
180010
|
+
* @maxLength `32767`
|
180011
|
+
*/
|
180012
|
+
ProfileId?: string;
|
180013
|
+
/**
|
180014
|
+
* The province in which a customer lives.
|
180015
|
+
* @minLength `1`
|
180016
|
+
* @maxLength `32767`
|
180017
|
+
*/
|
180018
|
+
Province?: string;
|
180019
|
+
/**
|
180020
|
+
* The first line of a customer’s shipping address.
|
180021
|
+
* @minLength `1`
|
180022
|
+
* @maxLength `32767`
|
180023
|
+
*/
|
180024
|
+
ShippingAddress1?: string;
|
180025
|
+
/**
|
180026
|
+
* The second line of a customer’s shipping address.
|
180027
|
+
* @minLength `1`
|
180028
|
+
* @maxLength `32767`
|
180029
|
+
*/
|
180030
|
+
ShippingAddress2?: string;
|
180031
|
+
/**
|
180032
|
+
* The third line of a customer’s shipping address.
|
180033
|
+
* @minLength `1`
|
180034
|
+
* @maxLength `32767`
|
180035
|
+
*/
|
180036
|
+
ShippingAddress3?: string;
|
180037
|
+
/**
|
180038
|
+
* The fourth line of a customer’s shipping address
|
180039
|
+
* @minLength `1`
|
180040
|
+
* @maxLength `32767`
|
180041
|
+
*/
|
180042
|
+
ShippingAddress4?: string;
|
180043
|
+
/**
|
180044
|
+
* The city of a customer’s shipping address.
|
180045
|
+
* @minLength `1`
|
180046
|
+
* @maxLength `32767`
|
180047
|
+
*/
|
180048
|
+
ShippingCity?: string;
|
180049
|
+
/**
|
180050
|
+
* The country of a customer’s shipping address.
|
180051
|
+
* @minLength `1`
|
180052
|
+
* @maxLength `32767`
|
180053
|
+
*/
|
180054
|
+
ShippingCountry?: string;
|
180055
|
+
/**
|
180056
|
+
* The county of a customer’s shipping address.
|
180057
|
+
* @minLength `1`
|
180058
|
+
* @maxLength `32767`
|
180059
|
+
*/
|
180060
|
+
ShippingCounty?: string;
|
180061
|
+
/**
|
180062
|
+
* The postal code of a customer’s shipping address.
|
180063
|
+
* @minLength `1`
|
180064
|
+
* @maxLength `32767`
|
180065
|
+
*/
|
180066
|
+
ShippingPostalCode?: string;
|
180067
|
+
/**
|
180068
|
+
* The province of a customer’s shipping address.
|
180069
|
+
* @minLength `1`
|
180070
|
+
* @maxLength `32767`
|
180071
|
+
*/
|
180072
|
+
ShippingProvince?: string;
|
180073
|
+
/**
|
180074
|
+
* The state of a customer’s shipping address.
|
180075
|
+
* @minLength `1`
|
180076
|
+
* @maxLength `32767`
|
180077
|
+
*/
|
180078
|
+
ShippingState?: string;
|
180079
|
+
/**
|
180080
|
+
* The state in which a customer lives.
|
180081
|
+
* @minLength `1`
|
180082
|
+
* @maxLength `32767`
|
180083
|
+
*/
|
180084
|
+
State?: string;
|
180085
|
+
};
|
180086
|
+
/**
|
180087
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.EmailMessageTemplateContent`.
|
180088
|
+
* The content of message template that applies to email channel subtype.
|
180089
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-emailmessagetemplatecontent.html}
|
180090
|
+
*/
|
180091
|
+
export type WisdomMessageTemplateEmailMessageTemplateContent = {
|
180092
|
+
/**
|
180093
|
+
* The body to use in email messages.
|
180094
|
+
*/
|
180095
|
+
Body: WisdomMessageTemplateEmailMessageTemplateContentBody;
|
180096
|
+
/**
|
180097
|
+
* The email headers to include in email messages.
|
180098
|
+
* @minLength `0`
|
180099
|
+
* @maxLength `15`
|
180100
|
+
*/
|
180101
|
+
Headers: WisdomMessageTemplateEmailMessageTemplateHeader[];
|
180102
|
+
/**
|
180103
|
+
* The subject line, or title, to use in email messages.
|
180104
|
+
* @minLength `1`
|
180105
|
+
*/
|
180106
|
+
Subject: string;
|
180107
|
+
};
|
180108
|
+
/**
|
180109
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.EmailMessageTemplateContentBody`.
|
180110
|
+
* The body to use in email messages.
|
180111
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-emailmessagetemplatecontentbody.html}
|
180112
|
+
*/
|
180113
|
+
export type WisdomMessageTemplateEmailMessageTemplateContentBody = {
|
180114
|
+
/**
|
180115
|
+
* 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.
|
180116
|
+
*/
|
180117
|
+
Html?: WisdomMessageTemplateMessageTemplateBodyContentProvider;
|
180118
|
+
/**
|
180119
|
+
* 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.
|
180120
|
+
*/
|
180121
|
+
PlainText?: WisdomMessageTemplateMessageTemplateBodyContentProvider;
|
180122
|
+
};
|
180123
|
+
/**
|
180124
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.EmailMessageTemplateHeader`.
|
180125
|
+
* The email header to include in email messages.
|
180126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-emailmessagetemplateheader.html}
|
180127
|
+
*/
|
180128
|
+
export type WisdomMessageTemplateEmailMessageTemplateHeader = {
|
180129
|
+
/**
|
180130
|
+
* The name of the email header.
|
180131
|
+
* @minLength `1`
|
180132
|
+
* @maxLength `126`
|
180133
|
+
* @pattern `^[!-9;-@A-~]+$`
|
180134
|
+
*/
|
180135
|
+
Name?: string;
|
180136
|
+
/**
|
180137
|
+
* The value of the email header.
|
180138
|
+
* @minLength `1`
|
180139
|
+
* @maxLength `870`
|
180140
|
+
* @pattern `[ -~]*`
|
180141
|
+
*/
|
180142
|
+
Value?: string;
|
180143
|
+
};
|
180144
|
+
/**
|
180145
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.GroupingConfiguration`.
|
180146
|
+
* The configuration information of the user groups that the message template is accessible to.
|
180147
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-groupingconfiguration.html}
|
180148
|
+
*/
|
180149
|
+
export type WisdomMessageTemplateGroupingConfiguration = {
|
180150
|
+
/**
|
180151
|
+
* The criteria used for grouping Amazon Q in Connect users.
|
180152
|
+
* @minLength `1`
|
180153
|
+
* @maxLength `100`
|
180154
|
+
*/
|
180155
|
+
Criteria: string;
|
180156
|
+
/**
|
180157
|
+
* The list of values that define different groups of Amazon Q in Connect users.
|
180158
|
+
*/
|
180159
|
+
Values: string[];
|
180160
|
+
};
|
180161
|
+
/**
|
180162
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.MessageTemplateAttributes`.
|
180163
|
+
* 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.
|
180164
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-messagetemplateattributes.html}
|
180165
|
+
*/
|
180166
|
+
export type WisdomMessageTemplateMessageTemplateAttributes = {
|
180167
|
+
/**
|
180168
|
+
* The agent attributes that are used with the message template.
|
180169
|
+
*/
|
180170
|
+
AgentAttributes?: WisdomMessageTemplateAgentAttributes;
|
180171
|
+
/**
|
180172
|
+
* The custom attributes that are used with the message template.
|
180173
|
+
*/
|
180174
|
+
CustomAttributes?: WisdomMessageTemplateCustomAttributes;
|
180175
|
+
/**
|
180176
|
+
* The customer profile attributes that are used with the message template.
|
180177
|
+
*/
|
180178
|
+
CustomerProfileAttributes?: WisdomMessageTemplateCustomerProfileAttributes;
|
180179
|
+
/**
|
180180
|
+
* The system attributes that are used with the message template.
|
180181
|
+
*/
|
180182
|
+
SystemAttributes?: WisdomMessageTemplateSystemAttributes;
|
180183
|
+
};
|
180184
|
+
/**
|
180185
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.MessageTemplateBodyContentProvider`.
|
180186
|
+
* The container of message template body.
|
180187
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-messagetemplatebodycontentprovider.html}
|
180188
|
+
*/
|
180189
|
+
export type WisdomMessageTemplateMessageTemplateBodyContentProvider = {
|
180190
|
+
/**
|
180191
|
+
* @minLength `1`
|
180192
|
+
*/
|
180193
|
+
Content?: string;
|
180194
|
+
};
|
180195
|
+
/**
|
180196
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.SmsMessageTemplateContent`.
|
180197
|
+
* The content of message template that applies to SMS channel subtype.
|
180198
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-smsmessagetemplatecontent.html}
|
180199
|
+
*/
|
180200
|
+
export type WisdomMessageTemplateSmsMessageTemplateContent = {
|
180201
|
+
/**
|
180202
|
+
* The body to use in SMS messages.
|
180203
|
+
*/
|
180204
|
+
Body: WisdomMessageTemplateSmsMessageTemplateContentBody;
|
180205
|
+
};
|
180206
|
+
/**
|
180207
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.SmsMessageTemplateContentBody`.
|
180208
|
+
* The body to use in SMS messages.
|
180209
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-smsmessagetemplatecontentbody.html}
|
180210
|
+
*/
|
180211
|
+
export type WisdomMessageTemplateSmsMessageTemplateContentBody = {
|
180212
|
+
/**
|
180213
|
+
* The container of message template body.
|
180214
|
+
*/
|
180215
|
+
PlainText?: WisdomMessageTemplateMessageTemplateBodyContentProvider;
|
180216
|
+
};
|
180217
|
+
/**
|
180218
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.SystemAttributes`.
|
180219
|
+
* The system attributes that are used with the message template.
|
180220
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-systemattributes.html}
|
180221
|
+
*/
|
180222
|
+
export type WisdomMessageTemplateSystemAttributes = {
|
180223
|
+
/**
|
180224
|
+
* The CustomerEndpoint attribute.
|
180225
|
+
*/
|
180226
|
+
CustomerEndpoint?: WisdomMessageTemplateSystemEndpointAttributes;
|
180227
|
+
/**
|
180228
|
+
* The name of the task.
|
180229
|
+
* @minLength `1`
|
180230
|
+
* @maxLength `32767`
|
180231
|
+
*/
|
180232
|
+
Name?: string;
|
180233
|
+
/**
|
180234
|
+
* The SystemEndpoint attribute.
|
180235
|
+
*/
|
180236
|
+
SystemEndpoint?: WisdomMessageTemplateSystemEndpointAttributes;
|
180237
|
+
};
|
180238
|
+
/**
|
180239
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.SystemEndpointAttributes`.
|
180240
|
+
* The system endpoint attributes that are used with the message template.
|
180241
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-systemendpointattributes.html}
|
180242
|
+
*/
|
180243
|
+
export type WisdomMessageTemplateSystemEndpointAttributes = {
|
180244
|
+
/**
|
180245
|
+
* The customer's phone number if used with customerEndpoint, or the number the customer dialed to call your contact center if used with systemEndpoint.
|
180246
|
+
* @minLength `1`
|
180247
|
+
* @maxLength `32767`
|
180248
|
+
*/
|
180249
|
+
Address?: string;
|
180250
|
+
};
|
180251
|
+
/**
|
180252
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.Tag`.
|
180253
|
+
* A key-value pair to associate with a resource.
|
180254
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-tag.html}
|
180255
|
+
*/
|
180256
|
+
export type WisdomMessageTemplateTag = {
|
180257
|
+
/**
|
180258
|
+
* 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 -
|
180259
|
+
* @minLength `1`
|
180260
|
+
* @maxLength `128`
|
180261
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
180262
|
+
*/
|
180263
|
+
Key: string;
|
180264
|
+
/**
|
180265
|
+
* 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 -
|
180266
|
+
* @minLength `1`
|
180267
|
+
* @maxLength `256`
|
180268
|
+
*/
|
180269
|
+
Value: string;
|
180270
|
+
};
|
180271
|
+
/**
|
180272
|
+
* Resource type definition for `AWS::Wisdom::MessageTemplateVersion`.
|
180273
|
+
* A version for the specified customer-managed message template within the specified knowledge base.
|
180274
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplateversion.html}
|
180275
|
+
*/
|
180276
|
+
export type WisdomMessageTemplateVersionProps = {
|
180277
|
+
/**
|
180278
|
+
* The unqualified Amazon Resource Name (ARN) of the message template.
|
180279
|
+
* @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})?$`
|
180280
|
+
*/
|
180281
|
+
MessageTemplateArn: string;
|
180282
|
+
/**
|
180283
|
+
* The content SHA256 of the message template.
|
180284
|
+
* @minLength `1`
|
180285
|
+
* @maxLength `64`
|
180286
|
+
*/
|
180287
|
+
MessageTemplateContentSha256?: string;
|
180288
|
+
};
|
180289
|
+
/**
|
180290
|
+
* Attribute type definition for `AWS::Wisdom::MessageTemplateVersion`.
|
180291
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplateversion.html#aws-resource-wisdom-messagetemplateversion-return-values}
|
180292
|
+
*/
|
180293
|
+
export type WisdomMessageTemplateVersionAttributes = {
|
180294
|
+
/**
|
180295
|
+
* The unqualified Amazon Resource Name (ARN) of the message template version.
|
180296
|
+
* @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]+?$`
|
180297
|
+
*/
|
180298
|
+
MessageTemplateVersionArn: string;
|
180299
|
+
/**
|
180300
|
+
* Current version number of the message template.
|
180301
|
+
*/
|
180302
|
+
MessageTemplateVersionNumber: number;
|
180303
|
+
};
|
177569
180304
|
/**
|
177570
180305
|
* Resource Type definition for AWS::WorkSpaces::ConnectionAlias
|
177571
180306
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-connectionalias.html}
|
@@ -178019,6 +180754,177 @@ export type WorkSpacesWebBrowserSettingsTag = {
|
|
178019
180754
|
*/
|
178020
180755
|
Value: string;
|
178021
180756
|
};
|
180757
|
+
/**
|
180758
|
+
* Definition of AWS::WorkSpacesWeb::DataProtectionSettings Resource Type
|
180759
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html}
|
180760
|
+
*/
|
180761
|
+
export type WorkSpacesWebDataProtectionSettingsProps = {
|
180762
|
+
AdditionalEncryptionContext?: WorkSpacesWebDataProtectionSettingsEncryptionContextMap;
|
180763
|
+
/**
|
180764
|
+
* @minLength `20`
|
180765
|
+
* @maxLength `2048`
|
180766
|
+
* @pattern `^arn:[\w+=\/,.@-]+:kms:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:key\/[a-zA-Z0-9-]+$`
|
180767
|
+
*/
|
180768
|
+
CustomerManagedKey?: string;
|
180769
|
+
/**
|
180770
|
+
* @minLength `1`
|
180771
|
+
* @maxLength `256`
|
180772
|
+
* @pattern `^[ _\-\d\w]+$`
|
180773
|
+
*/
|
180774
|
+
Description?: string;
|
180775
|
+
/**
|
180776
|
+
* @minLength `1`
|
180777
|
+
* @maxLength `64`
|
180778
|
+
* @pattern `^[ _\-\d\w]+$`
|
180779
|
+
*/
|
180780
|
+
DisplayName?: string;
|
180781
|
+
InlineRedactionConfiguration?: WorkSpacesWebDataProtectionSettingsInlineRedactionConfiguration;
|
180782
|
+
/**
|
180783
|
+
* @minLength `0`
|
180784
|
+
* @maxLength `200`
|
180785
|
+
*/
|
180786
|
+
Tags?: WorkSpacesWebDataProtectionSettingsTag[];
|
180787
|
+
};
|
180788
|
+
/**
|
180789
|
+
* Attribute type definition for `AWS::WorkSpacesWeb::DataProtectionSettings`.
|
180790
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-dataprotectionsettings.html#aws-resource-workspacesweb-dataprotectionsettings-return-values}
|
180791
|
+
*/
|
180792
|
+
export type WorkSpacesWebDataProtectionSettingsAttributes = {
|
180793
|
+
AssociatedPortalArns: string[];
|
180794
|
+
CreationDate: string;
|
180795
|
+
/**
|
180796
|
+
* @minLength `20`
|
180797
|
+
* @maxLength `2048`
|
180798
|
+
* @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})+$`
|
180799
|
+
*/
|
180800
|
+
DataProtectionSettingsArn: string;
|
180801
|
+
};
|
180802
|
+
/**
|
180803
|
+
* Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.CustomPattern`.
|
180804
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-custompattern.html}
|
180805
|
+
*/
|
180806
|
+
export type WorkSpacesWebDataProtectionSettingsCustomPattern = {
|
180807
|
+
/**
|
180808
|
+
* @minLength `0`
|
180809
|
+
* @maxLength `300`
|
180810
|
+
* @pattern `^\/((?:[^\n])+)\/([gimsuyvd]{0,8})$`
|
180811
|
+
*/
|
180812
|
+
KeywordRegex?: string;
|
180813
|
+
/**
|
180814
|
+
* @minLength `1`
|
180815
|
+
* @maxLength `256`
|
180816
|
+
* @pattern `^[ _\-\d\w]+$`
|
180817
|
+
*/
|
180818
|
+
PatternDescription?: string;
|
180819
|
+
/**
|
180820
|
+
* @minLength `1`
|
180821
|
+
* @maxLength `20`
|
180822
|
+
* @pattern `^[_\-\d\w]+$`
|
180823
|
+
*/
|
180824
|
+
PatternName: string;
|
180825
|
+
/**
|
180826
|
+
* @minLength `0`
|
180827
|
+
* @maxLength `300`
|
180828
|
+
* @pattern `^\/((?:[^\n])+)\/([gimsuyvd]{0,8})$`
|
180829
|
+
*/
|
180830
|
+
PatternRegex: string;
|
180831
|
+
};
|
180832
|
+
/**
|
180833
|
+
* Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.EncryptionContextMap`.
|
180834
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-encryptioncontextmap.html}
|
180835
|
+
*/
|
180836
|
+
export type WorkSpacesWebDataProtectionSettingsEncryptionContextMap = Record<string, string>;
|
180837
|
+
/**
|
180838
|
+
* Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.InlineRedactionConfiguration`.
|
180839
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionconfiguration.html}
|
180840
|
+
*/
|
180841
|
+
export type WorkSpacesWebDataProtectionSettingsInlineRedactionConfiguration = {
|
180842
|
+
/**
|
180843
|
+
* @min `1`
|
180844
|
+
* @max `3`
|
180845
|
+
*/
|
180846
|
+
GlobalConfidenceLevel?: number;
|
180847
|
+
/**
|
180848
|
+
* @minLength `1`
|
180849
|
+
* @maxLength `100`
|
180850
|
+
*/
|
180851
|
+
GlobalEnforcedUrls?: string[];
|
180852
|
+
/**
|
180853
|
+
* @minLength `1`
|
180854
|
+
* @maxLength `100`
|
180855
|
+
*/
|
180856
|
+
GlobalExemptUrls?: string[];
|
180857
|
+
/**
|
180858
|
+
* @minLength `0`
|
180859
|
+
* @maxLength `150`
|
180860
|
+
*/
|
180861
|
+
InlineRedactionPatterns: WorkSpacesWebDataProtectionSettingsInlineRedactionPattern[];
|
180862
|
+
};
|
180863
|
+
/**
|
180864
|
+
* Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.InlineRedactionPattern`.
|
180865
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-inlineredactionpattern.html}
|
180866
|
+
*/
|
180867
|
+
export type WorkSpacesWebDataProtectionSettingsInlineRedactionPattern = {
|
180868
|
+
/**
|
180869
|
+
* @minLength `1`
|
180870
|
+
* @maxLength `50`
|
180871
|
+
* @pattern `^[_\-\d\w]+$`
|
180872
|
+
*/
|
180873
|
+
BuiltInPatternId?: string;
|
180874
|
+
/**
|
180875
|
+
* @min `1`
|
180876
|
+
* @max `3`
|
180877
|
+
*/
|
180878
|
+
ConfidenceLevel?: number;
|
180879
|
+
CustomPattern?: WorkSpacesWebDataProtectionSettingsCustomPattern;
|
180880
|
+
/**
|
180881
|
+
* @minLength `1`
|
180882
|
+
* @maxLength `20`
|
180883
|
+
*/
|
180884
|
+
EnforcedUrls?: string[];
|
180885
|
+
/**
|
180886
|
+
* @minLength `1`
|
180887
|
+
* @maxLength `20`
|
180888
|
+
*/
|
180889
|
+
ExemptUrls?: string[];
|
180890
|
+
RedactionPlaceHolder: WorkSpacesWebDataProtectionSettingsRedactionPlaceHolder;
|
180891
|
+
};
|
180892
|
+
/**
|
180893
|
+
* Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.RedactionPlaceHolder`.
|
180894
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-redactionplaceholder.html}
|
180895
|
+
*/
|
180896
|
+
export type WorkSpacesWebDataProtectionSettingsRedactionPlaceHolder = {
|
180897
|
+
/**
|
180898
|
+
* @minLength `1`
|
180899
|
+
* @maxLength `20`
|
180900
|
+
* @pattern `^[*_\-\d\w]+$`
|
180901
|
+
*/
|
180902
|
+
RedactionPlaceHolderText?: string;
|
180903
|
+
RedactionPlaceHolderType: WorkSpacesWebDataProtectionSettingsRedactionPlaceHolderType;
|
180904
|
+
};
|
180905
|
+
/**
|
180906
|
+
* Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.RedactionPlaceHolderType`.
|
180907
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-redactionplaceholdertype.html}
|
180908
|
+
*/
|
180909
|
+
export type WorkSpacesWebDataProtectionSettingsRedactionPlaceHolderType = "CustomText";
|
180910
|
+
/**
|
180911
|
+
* Type definition for `AWS::WorkSpacesWeb::DataProtectionSettings.Tag`.
|
180912
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-dataprotectionsettings-tag.html}
|
180913
|
+
*/
|
180914
|
+
export type WorkSpacesWebDataProtectionSettingsTag = {
|
180915
|
+
/**
|
180916
|
+
* @minLength `1`
|
180917
|
+
* @maxLength `128`
|
180918
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
180919
|
+
*/
|
180920
|
+
Key: string;
|
180921
|
+
/**
|
180922
|
+
* @minLength `0`
|
180923
|
+
* @maxLength `256`
|
180924
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
180925
|
+
*/
|
180926
|
+
Value: string;
|
180927
|
+
};
|
178022
180928
|
/**
|
178023
180929
|
* Definition of AWS::WorkSpacesWeb::IdentityProvider Resource Type
|
178024
180930
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-identityprovider.html}
|
@@ -178250,6 +181156,12 @@ export type WorkSpacesWebPortalProps = {
|
|
178250
181156
|
* @pattern `^arn:[\w+=\/,.@-]+:kms:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:key\/[a-zA-Z0-9-]+$`
|
178251
181157
|
*/
|
178252
181158
|
CustomerManagedKey?: string;
|
181159
|
+
/**
|
181160
|
+
* @minLength `20`
|
181161
|
+
* @maxLength `2048`
|
181162
|
+
* @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})+$`
|
181163
|
+
*/
|
181164
|
+
DataProtectionSettingsArn?: string;
|
178253
181165
|
/**
|
178254
181166
|
* @minLength `1`
|
178255
181167
|
* @maxLength `64`
|
@@ -178891,11 +181803,14 @@ export interface ResourceTypes {
|
|
178891
181803
|
"AWS::ApiGateway::ApiKey": ApiGatewayApiKeyProps;
|
178892
181804
|
"AWS::ApiGateway::Authorizer": ApiGatewayAuthorizerProps;
|
178893
181805
|
"AWS::ApiGateway::BasePathMapping": ApiGatewayBasePathMappingProps;
|
181806
|
+
"AWS::ApiGateway::BasePathMappingV2": ApiGatewayBasePathMappingV2Props;
|
178894
181807
|
"AWS::ApiGateway::ClientCertificate": ApiGatewayClientCertificateProps;
|
178895
181808
|
"AWS::ApiGateway::Deployment": ApiGatewayDeploymentProps;
|
178896
181809
|
"AWS::ApiGateway::DocumentationPart": ApiGatewayDocumentationPartProps;
|
178897
181810
|
"AWS::ApiGateway::DocumentationVersion": ApiGatewayDocumentationVersionProps;
|
178898
181811
|
"AWS::ApiGateway::DomainName": ApiGatewayDomainNameProps;
|
181812
|
+
"AWS::ApiGateway::DomainNameAccessAssociation": ApiGatewayDomainNameAccessAssociationProps;
|
181813
|
+
"AWS::ApiGateway::DomainNameV2": ApiGatewayDomainNameV2Props;
|
178899
181814
|
"AWS::ApiGateway::GatewayResponse": ApiGatewayGatewayResponseProps;
|
178900
181815
|
"AWS::ApiGateway::Method": ApiGatewayMethodProps;
|
178901
181816
|
"AWS::ApiGateway::Model": ApiGatewayModelProps;
|
@@ -179081,6 +181996,7 @@ export interface ResourceTypes {
|
|
179081
181996
|
"AWS::CloudFront::ResponseHeadersPolicy": CloudFrontResponseHeadersPolicyProps;
|
179082
181997
|
"AWS::CloudFront::StreamingDistribution": CloudFrontStreamingDistributionProps;
|
179083
181998
|
"AWS::CloudTrail::Channel": CloudTrailChannelProps;
|
181999
|
+
"AWS::CloudTrail::Dashboard": CloudTrailDashboardProps;
|
179084
182000
|
"AWS::CloudTrail::EventDataStore": CloudTrailEventDataStoreProps;
|
179085
182001
|
"AWS::CloudTrail::ResourcePolicy": CloudTrailResourcePolicyProps;
|
179086
182002
|
"AWS::CloudTrail::Trail": CloudTrailTrailProps;
|
@@ -179142,6 +182058,7 @@ export interface ResourceTypes {
|
|
179142
182058
|
"AWS::Connect::ApprovedOrigin": ConnectApprovedOriginProps;
|
179143
182059
|
"AWS::Connect::ContactFlow": ConnectContactFlowProps;
|
179144
182060
|
"AWS::Connect::ContactFlowModule": ConnectContactFlowModuleProps;
|
182061
|
+
"AWS::Connect::EmailAddress": ConnectEmailAddressProps;
|
179145
182062
|
"AWS::Connect::EvaluationForm": ConnectEvaluationFormProps;
|
179146
182063
|
"AWS::Connect::HoursOfOperation": ConnectHoursOfOperationProps;
|
179147
182064
|
"AWS::Connect::Instance": ConnectInstanceProps;
|
@@ -179174,6 +182091,7 @@ export interface ResourceTypes {
|
|
179174
182091
|
"AWS::CustomerProfiles::EventStream": CustomerProfilesEventStreamProps;
|
179175
182092
|
"AWS::CustomerProfiles::Integration": CustomerProfilesIntegrationProps;
|
179176
182093
|
"AWS::CustomerProfiles::ObjectType": CustomerProfilesObjectTypeProps;
|
182094
|
+
"AWS::CustomerProfiles::SegmentDefinition": CustomerProfilesSegmentDefinitionProps;
|
179177
182095
|
"AWS::DataBrew::Dataset": DataBrewDatasetProps;
|
179178
182096
|
"AWS::DataBrew::Job": DataBrewJobProps;
|
179179
182097
|
"AWS::DataBrew::Project": DataBrewProjectProps;
|
@@ -179582,6 +182500,7 @@ export interface ResourceTypes {
|
|
179582
182500
|
"AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetProps;
|
179583
182501
|
"AWS::IoTFleetWise::ModelManifest": IoTFleetWiseModelManifestProps;
|
179584
182502
|
"AWS::IoTFleetWise::SignalCatalog": IoTFleetWiseSignalCatalogProps;
|
182503
|
+
"AWS::IoTFleetWise::StateTemplate": IoTFleetWiseStateTemplateProps;
|
179585
182504
|
"AWS::IoTFleetWise::Vehicle": IoTFleetWiseVehicleProps;
|
179586
182505
|
"AWS::IoTSiteWise::AccessPolicy": IoTSiteWiseAccessPolicyProps;
|
179587
182506
|
"AWS::IoTSiteWise::Asset": IoTSiteWiseAssetProps;
|
@@ -179609,6 +182528,7 @@ export interface ResourceTypes {
|
|
179609
182528
|
"AWS::IoTWireless::WirelessGateway": IoTWirelessWirelessGatewayProps;
|
179610
182529
|
"AWS::IVS::Channel": IVSChannelProps;
|
179611
182530
|
"AWS::IVS::EncoderConfiguration": IVSEncoderConfigurationProps;
|
182531
|
+
"AWS::IVS::IngestConfiguration": IVSIngestConfigurationProps;
|
179612
182532
|
"AWS::IVS::PlaybackKeyPair": IVSPlaybackKeyPairProps;
|
179613
182533
|
"AWS::IVS::PlaybackRestrictionPolicy": IVSPlaybackRestrictionPolicyProps;
|
179614
182534
|
"AWS::IVS::PublicKey": IVSPublicKeyProps;
|
@@ -179700,6 +182620,7 @@ export interface ResourceTypes {
|
|
179700
182620
|
"AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorProps;
|
179701
182621
|
"AWS::LookoutVision::Project": LookoutVisionProjectProps;
|
179702
182622
|
"AWS::M2::Application": M2ApplicationProps;
|
182623
|
+
"AWS::M2::Deployment": M2DeploymentProps;
|
179703
182624
|
"AWS::M2::Environment": M2EnvironmentProps;
|
179704
182625
|
"AWS::Macie::AllowList": MacieAllowListProps;
|
179705
182626
|
"AWS::Macie::CustomDataIdentifier": MacieCustomDataIdentifierProps;
|
@@ -179930,6 +182851,7 @@ export interface ResourceTypes {
|
|
179930
182851
|
"AWS::ResourceExplorer2::Index": ResourceExplorer2IndexProps;
|
179931
182852
|
"AWS::ResourceExplorer2::View": ResourceExplorer2ViewProps;
|
179932
182853
|
"AWS::ResourceGroups::Group": ResourceGroupsGroupProps;
|
182854
|
+
"AWS::ResourceGroups::TagSyncTask": ResourceGroupsTagSyncTaskProps;
|
179933
182855
|
"AWS::RoboMaker::Fleet": RoboMakerFleetProps;
|
179934
182856
|
"AWS::RoboMaker::Robot": RoboMakerRobotProps;
|
179935
182857
|
"AWS::RoboMaker::RobotApplication": RoboMakerRobotApplicationProps;
|
@@ -180186,11 +183108,14 @@ export interface ResourceTypes {
|
|
180186
183108
|
"AWS::Wisdom::Assistant": WisdomAssistantProps;
|
180187
183109
|
"AWS::Wisdom::AssistantAssociation": WisdomAssistantAssociationProps;
|
180188
183110
|
"AWS::Wisdom::KnowledgeBase": WisdomKnowledgeBaseProps;
|
183111
|
+
"AWS::Wisdom::MessageTemplate": WisdomMessageTemplateProps;
|
183112
|
+
"AWS::Wisdom::MessageTemplateVersion": WisdomMessageTemplateVersionProps;
|
180189
183113
|
"AWS::WorkSpaces::ConnectionAlias": WorkSpacesConnectionAliasProps;
|
180190
183114
|
"AWS::WorkSpaces::Workspace": WorkSpacesWorkspaceProps;
|
180191
183115
|
"AWS::WorkSpaces::WorkspacesPool": WorkSpacesWorkspacesPoolProps;
|
180192
183116
|
"AWS::WorkSpacesThinClient::Environment": WorkSpacesThinClientEnvironmentProps;
|
180193
183117
|
"AWS::WorkSpacesWeb::BrowserSettings": WorkSpacesWebBrowserSettingsProps;
|
183118
|
+
"AWS::WorkSpacesWeb::DataProtectionSettings": WorkSpacesWebDataProtectionSettingsProps;
|
180194
183119
|
"AWS::WorkSpacesWeb::IdentityProvider": WorkSpacesWebIdentityProviderProps;
|
180195
183120
|
"AWS::WorkSpacesWeb::IpAccessSettings": WorkSpacesWebIpAccessSettingsProps;
|
180196
183121
|
"AWS::WorkSpacesWeb::NetworkSettings": WorkSpacesWebNetworkSettingsProps;
|
@@ -180220,10 +183145,13 @@ export interface AttributeTypes {
|
|
180220
183145
|
"AWS::ApiGateway::Account": ApiGatewayAccountAttributes;
|
180221
183146
|
"AWS::ApiGateway::ApiKey": ApiGatewayApiKeyAttributes;
|
180222
183147
|
"AWS::ApiGateway::Authorizer": ApiGatewayAuthorizerAttributes;
|
183148
|
+
"AWS::ApiGateway::BasePathMappingV2": ApiGatewayBasePathMappingV2Attributes;
|
180223
183149
|
"AWS::ApiGateway::ClientCertificate": ApiGatewayClientCertificateAttributes;
|
180224
183150
|
"AWS::ApiGateway::Deployment": ApiGatewayDeploymentAttributes;
|
180225
183151
|
"AWS::ApiGateway::DocumentationPart": ApiGatewayDocumentationPartAttributes;
|
180226
183152
|
"AWS::ApiGateway::DomainName": ApiGatewayDomainNameAttributes;
|
183153
|
+
"AWS::ApiGateway::DomainNameAccessAssociation": ApiGatewayDomainNameAccessAssociationAttributes;
|
183154
|
+
"AWS::ApiGateway::DomainNameV2": ApiGatewayDomainNameV2Attributes;
|
180227
183155
|
"AWS::ApiGateway::GatewayResponse": ApiGatewayGatewayResponseAttributes;
|
180228
183156
|
"AWS::ApiGateway::RequestValidator": ApiGatewayRequestValidatorAttributes;
|
180229
183157
|
"AWS::ApiGateway::Resource": ApiGatewayResourceAttributes;
|
@@ -180391,6 +183319,7 @@ export interface AttributeTypes {
|
|
180391
183319
|
"AWS::CloudFront::ResponseHeadersPolicy": CloudFrontResponseHeadersPolicyAttributes;
|
180392
183320
|
"AWS::CloudFront::StreamingDistribution": CloudFrontStreamingDistributionAttributes;
|
180393
183321
|
"AWS::CloudTrail::Channel": CloudTrailChannelAttributes;
|
183322
|
+
"AWS::CloudTrail::Dashboard": CloudTrailDashboardAttributes;
|
180394
183323
|
"AWS::CloudTrail::EventDataStore": CloudTrailEventDataStoreAttributes;
|
180395
183324
|
"AWS::CloudTrail::Trail": CloudTrailTrailAttributes;
|
180396
183325
|
"AWS::CloudWatch::Alarm": CloudWatchAlarmAttributes;
|
@@ -180437,6 +183366,7 @@ export interface AttributeTypes {
|
|
180437
183366
|
"AWS::Connect::AgentStatus": ConnectAgentStatusAttributes;
|
180438
183367
|
"AWS::Connect::ContactFlow": ConnectContactFlowAttributes;
|
180439
183368
|
"AWS::Connect::ContactFlowModule": ConnectContactFlowModuleAttributes;
|
183369
|
+
"AWS::Connect::EmailAddress": ConnectEmailAddressAttributes;
|
180440
183370
|
"AWS::Connect::EvaluationForm": ConnectEvaluationFormAttributes;
|
180441
183371
|
"AWS::Connect::HoursOfOperation": ConnectHoursOfOperationAttributes;
|
180442
183372
|
"AWS::Connect::Instance": ConnectInstanceAttribs;
|
@@ -180467,6 +183397,7 @@ export interface AttributeTypes {
|
|
180467
183397
|
"AWS::CustomerProfiles::EventStream": CustomerProfilesEventStreamAttributes;
|
180468
183398
|
"AWS::CustomerProfiles::Integration": CustomerProfilesIntegrationAttributes;
|
180469
183399
|
"AWS::CustomerProfiles::ObjectType": CustomerProfilesObjectTypeAttributes;
|
183400
|
+
"AWS::CustomerProfiles::SegmentDefinition": CustomerProfilesSegmentDefinitionAttributes;
|
180470
183401
|
"AWS::DataPipeline::Pipeline": DataPipelinePipelineAttributes;
|
180471
183402
|
"AWS::DataSync::Agent": DataSyncAgentAttributes;
|
180472
183403
|
"AWS::DataSync::LocationAzureBlob": DataSyncLocationAzureBlobAttributes;
|
@@ -180830,6 +183761,7 @@ export interface AttributeTypes {
|
|
180830
183761
|
"AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetAttributes;
|
180831
183762
|
"AWS::IoTFleetWise::ModelManifest": IoTFleetWiseModelManifestAttributes;
|
180832
183763
|
"AWS::IoTFleetWise::SignalCatalog": IoTFleetWiseSignalCatalogAttributes;
|
183764
|
+
"AWS::IoTFleetWise::StateTemplate": IoTFleetWiseStateTemplateAttributes;
|
180833
183765
|
"AWS::IoTFleetWise::Vehicle": IoTFleetWiseVehicleAttributes;
|
180834
183766
|
"AWS::IoTSiteWise::AccessPolicy": IoTSiteWiseAccessPolicyAttributes;
|
180835
183767
|
"AWS::IoTSiteWise::Asset": IoTSiteWiseAssetAttributes;
|
@@ -180857,6 +183789,7 @@ export interface AttributeTypes {
|
|
180857
183789
|
"AWS::IoTWireless::WirelessGateway": IoTWirelessWirelessGatewayAttributes;
|
180858
183790
|
"AWS::IVS::Channel": IVSChannelAttributes;
|
180859
183791
|
"AWS::IVS::EncoderConfiguration": IVSEncoderConfigurationAttributes;
|
183792
|
+
"AWS::IVS::IngestConfiguration": IVSIngestConfigurationAttributes;
|
180860
183793
|
"AWS::IVS::PlaybackKeyPair": IVSPlaybackKeyPairAttributes;
|
180861
183794
|
"AWS::IVS::PlaybackRestrictionPolicy": IVSPlaybackRestrictionPolicyAttributes;
|
180862
183795
|
"AWS::IVS::PublicKey": IVSPublicKeyAttributes;
|
@@ -180937,6 +183870,7 @@ export interface AttributeTypes {
|
|
180937
183870
|
"AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorAttributes;
|
180938
183871
|
"AWS::LookoutVision::Project": LookoutVisionProjectAttributes;
|
180939
183872
|
"AWS::M2::Application": M2ApplicationAttributes;
|
183873
|
+
"AWS::M2::Deployment": M2DeploymentAttributes;
|
180940
183874
|
"AWS::M2::Environment": M2EnvironmentAttributes;
|
180941
183875
|
"AWS::Macie::AllowList": MacieAllowListAttributes;
|
180942
183876
|
"AWS::Macie::CustomDataIdentifier": MacieCustomDataIdentifierAttributes;
|
@@ -181144,6 +184078,7 @@ export interface AttributeTypes {
|
|
181144
184078
|
"AWS::ResourceExplorer2::Index": ResourceExplorer2IndexAttributes;
|
181145
184079
|
"AWS::ResourceExplorer2::View": ResourceExplorer2ViewAttributes;
|
181146
184080
|
"AWS::ResourceGroups::Group": ResourceGroupsGroupAttributes;
|
184081
|
+
"AWS::ResourceGroups::TagSyncTask": ResourceGroupsTagSyncTaskAttributes;
|
181147
184082
|
"AWS::RoboMaker::Fleet": RoboMakerFleetAttributes;
|
181148
184083
|
"AWS::RoboMaker::Robot": RoboMakerRobotAttributes;
|
181149
184084
|
"AWS::RoboMaker::RobotApplication": RoboMakerRobotApplicationAttributes;
|
@@ -181372,11 +184307,14 @@ export interface AttributeTypes {
|
|
181372
184307
|
"AWS::Wisdom::Assistant": WisdomAssistantAttributes;
|
181373
184308
|
"AWS::Wisdom::AssistantAssociation": WisdomAssistantAssociationAttributes;
|
181374
184309
|
"AWS::Wisdom::KnowledgeBase": WisdomKnowledgeBaseAttributes;
|
184310
|
+
"AWS::Wisdom::MessageTemplate": WisdomMessageTemplateAttributes;
|
184311
|
+
"AWS::Wisdom::MessageTemplateVersion": WisdomMessageTemplateVersionAttributes;
|
181375
184312
|
"AWS::WorkSpaces::ConnectionAlias": WorkSpacesConnectionAliasAttributes;
|
181376
184313
|
"AWS::WorkSpaces::Workspace": WorkSpacesWorkspaceAttributes;
|
181377
184314
|
"AWS::WorkSpaces::WorkspacesPool": WorkSpacesWorkspacesPoolAttributes;
|
181378
184315
|
"AWS::WorkSpacesThinClient::Environment": WorkSpacesThinClientEnvironmentAttributes;
|
181379
184316
|
"AWS::WorkSpacesWeb::BrowserSettings": WorkSpacesWebBrowserSettingsAttributes;
|
184317
|
+
"AWS::WorkSpacesWeb::DataProtectionSettings": WorkSpacesWebDataProtectionSettingsAttributes;
|
181380
184318
|
"AWS::WorkSpacesWeb::IdentityProvider": WorkSpacesWebIdentityProviderAttributes;
|
181381
184319
|
"AWS::WorkSpacesWeb::IpAccessSettings": WorkSpacesWebIpAccessSettingsAttributes;
|
181382
184320
|
"AWS::WorkSpacesWeb::NetworkSettings": WorkSpacesWebNetworkSettingsAttributes;
|
@@ -181407,11 +184345,14 @@ export declare const ResourceType: {
|
|
181407
184345
|
readonly ApiGatewayApiKey: "AWS::ApiGateway::ApiKey";
|
181408
184346
|
readonly ApiGatewayAuthorizer: "AWS::ApiGateway::Authorizer";
|
181409
184347
|
readonly ApiGatewayBasePathMapping: "AWS::ApiGateway::BasePathMapping";
|
184348
|
+
readonly ApiGatewayBasePathMappingV2: "AWS::ApiGateway::BasePathMappingV2";
|
181410
184349
|
readonly ApiGatewayClientCertificate: "AWS::ApiGateway::ClientCertificate";
|
181411
184350
|
readonly ApiGatewayDeployment: "AWS::ApiGateway::Deployment";
|
181412
184351
|
readonly ApiGatewayDocumentationPart: "AWS::ApiGateway::DocumentationPart";
|
181413
184352
|
readonly ApiGatewayDocumentationVersion: "AWS::ApiGateway::DocumentationVersion";
|
181414
184353
|
readonly ApiGatewayDomainName: "AWS::ApiGateway::DomainName";
|
184354
|
+
readonly ApiGatewayDomainNameAccessAssociation: "AWS::ApiGateway::DomainNameAccessAssociation";
|
184355
|
+
readonly ApiGatewayDomainNameV2: "AWS::ApiGateway::DomainNameV2";
|
181415
184356
|
readonly ApiGatewayGatewayResponse: "AWS::ApiGateway::GatewayResponse";
|
181416
184357
|
readonly ApiGatewayMethod: "AWS::ApiGateway::Method";
|
181417
184358
|
readonly ApiGatewayModel: "AWS::ApiGateway::Model";
|
@@ -181597,6 +184538,7 @@ export declare const ResourceType: {
|
|
181597
184538
|
readonly CloudFrontResponseHeadersPolicy: "AWS::CloudFront::ResponseHeadersPolicy";
|
181598
184539
|
readonly CloudFrontStreamingDistribution: "AWS::CloudFront::StreamingDistribution";
|
181599
184540
|
readonly CloudTrailChannel: "AWS::CloudTrail::Channel";
|
184541
|
+
readonly CloudTrailDashboard: "AWS::CloudTrail::Dashboard";
|
181600
184542
|
readonly CloudTrailEventDataStore: "AWS::CloudTrail::EventDataStore";
|
181601
184543
|
readonly CloudTrailResourcePolicy: "AWS::CloudTrail::ResourcePolicy";
|
181602
184544
|
readonly CloudTrailTrail: "AWS::CloudTrail::Trail";
|
@@ -181658,6 +184600,7 @@ export declare const ResourceType: {
|
|
181658
184600
|
readonly ConnectApprovedOrigin: "AWS::Connect::ApprovedOrigin";
|
181659
184601
|
readonly ConnectContactFlow: "AWS::Connect::ContactFlow";
|
181660
184602
|
readonly ConnectContactFlowModule: "AWS::Connect::ContactFlowModule";
|
184603
|
+
readonly ConnectEmailAddress: "AWS::Connect::EmailAddress";
|
181661
184604
|
readonly ConnectEvaluationForm: "AWS::Connect::EvaluationForm";
|
181662
184605
|
readonly ConnectHoursOfOperation: "AWS::Connect::HoursOfOperation";
|
181663
184606
|
readonly ConnectInstance: "AWS::Connect::Instance";
|
@@ -181690,6 +184633,7 @@ export declare const ResourceType: {
|
|
181690
184633
|
readonly CustomerProfilesEventStream: "AWS::CustomerProfiles::EventStream";
|
181691
184634
|
readonly CustomerProfilesIntegration: "AWS::CustomerProfiles::Integration";
|
181692
184635
|
readonly CustomerProfilesObjectType: "AWS::CustomerProfiles::ObjectType";
|
184636
|
+
readonly CustomerProfilesSegmentDefinition: "AWS::CustomerProfiles::SegmentDefinition";
|
181693
184637
|
readonly DataBrewDataset: "AWS::DataBrew::Dataset";
|
181694
184638
|
readonly DataBrewJob: "AWS::DataBrew::Job";
|
181695
184639
|
readonly DataBrewProject: "AWS::DataBrew::Project";
|
@@ -182098,6 +185042,7 @@ export declare const ResourceType: {
|
|
182098
185042
|
readonly IoTFleetWiseFleet: "AWS::IoTFleetWise::Fleet";
|
182099
185043
|
readonly IoTFleetWiseModelManifest: "AWS::IoTFleetWise::ModelManifest";
|
182100
185044
|
readonly IoTFleetWiseSignalCatalog: "AWS::IoTFleetWise::SignalCatalog";
|
185045
|
+
readonly IoTFleetWiseStateTemplate: "AWS::IoTFleetWise::StateTemplate";
|
182101
185046
|
readonly IoTFleetWiseVehicle: "AWS::IoTFleetWise::Vehicle";
|
182102
185047
|
readonly IoTSiteWiseAccessPolicy: "AWS::IoTSiteWise::AccessPolicy";
|
182103
185048
|
readonly IoTSiteWiseAsset: "AWS::IoTSiteWise::Asset";
|
@@ -182125,6 +185070,7 @@ export declare const ResourceType: {
|
|
182125
185070
|
readonly IoTWirelessWirelessGateway: "AWS::IoTWireless::WirelessGateway";
|
182126
185071
|
readonly IVSChannel: "AWS::IVS::Channel";
|
182127
185072
|
readonly IVSEncoderConfiguration: "AWS::IVS::EncoderConfiguration";
|
185073
|
+
readonly IVSIngestConfiguration: "AWS::IVS::IngestConfiguration";
|
182128
185074
|
readonly IVSPlaybackKeyPair: "AWS::IVS::PlaybackKeyPair";
|
182129
185075
|
readonly IVSPlaybackRestrictionPolicy: "AWS::IVS::PlaybackRestrictionPolicy";
|
182130
185076
|
readonly IVSPublicKey: "AWS::IVS::PublicKey";
|
@@ -182216,6 +185162,7 @@ export declare const ResourceType: {
|
|
182216
185162
|
readonly LookoutMetricsAnomalyDetector: "AWS::LookoutMetrics::AnomalyDetector";
|
182217
185163
|
readonly LookoutVisionProject: "AWS::LookoutVision::Project";
|
182218
185164
|
readonly M2Application: "AWS::M2::Application";
|
185165
|
+
readonly M2Deployment: "AWS::M2::Deployment";
|
182219
185166
|
readonly M2Environment: "AWS::M2::Environment";
|
182220
185167
|
readonly MacieAllowList: "AWS::Macie::AllowList";
|
182221
185168
|
readonly MacieCustomDataIdentifier: "AWS::Macie::CustomDataIdentifier";
|
@@ -182446,6 +185393,7 @@ export declare const ResourceType: {
|
|
182446
185393
|
readonly ResourceExplorer2Index: "AWS::ResourceExplorer2::Index";
|
182447
185394
|
readonly ResourceExplorer2View: "AWS::ResourceExplorer2::View";
|
182448
185395
|
readonly ResourceGroupsGroup: "AWS::ResourceGroups::Group";
|
185396
|
+
readonly ResourceGroupsTagSyncTask: "AWS::ResourceGroups::TagSyncTask";
|
182449
185397
|
readonly RoboMakerFleet: "AWS::RoboMaker::Fleet";
|
182450
185398
|
readonly RoboMakerRobot: "AWS::RoboMaker::Robot";
|
182451
185399
|
readonly RoboMakerRobotApplication: "AWS::RoboMaker::RobotApplication";
|
@@ -182702,11 +185650,14 @@ export declare const ResourceType: {
|
|
182702
185650
|
readonly WisdomAssistant: "AWS::Wisdom::Assistant";
|
182703
185651
|
readonly WisdomAssistantAssociation: "AWS::Wisdom::AssistantAssociation";
|
182704
185652
|
readonly WisdomKnowledgeBase: "AWS::Wisdom::KnowledgeBase";
|
185653
|
+
readonly WisdomMessageTemplate: "AWS::Wisdom::MessageTemplate";
|
185654
|
+
readonly WisdomMessageTemplateVersion: "AWS::Wisdom::MessageTemplateVersion";
|
182705
185655
|
readonly WorkSpacesConnectionAlias: "AWS::WorkSpaces::ConnectionAlias";
|
182706
185656
|
readonly WorkSpacesWorkspace: "AWS::WorkSpaces::Workspace";
|
182707
185657
|
readonly WorkSpacesWorkspacesPool: "AWS::WorkSpaces::WorkspacesPool";
|
182708
185658
|
readonly WorkSpacesThinClientEnvironment: "AWS::WorkSpacesThinClient::Environment";
|
182709
185659
|
readonly WorkSpacesWebBrowserSettings: "AWS::WorkSpacesWeb::BrowserSettings";
|
185660
|
+
readonly WorkSpacesWebDataProtectionSettings: "AWS::WorkSpacesWeb::DataProtectionSettings";
|
182710
185661
|
readonly WorkSpacesWebIdentityProvider: "AWS::WorkSpacesWeb::IdentityProvider";
|
182711
185662
|
readonly WorkSpacesWebIpAccessSettings: "AWS::WorkSpacesWeb::IpAccessSettings";
|
182712
185663
|
readonly WorkSpacesWebNetworkSettings: "AWS::WorkSpacesWeb::NetworkSettings";
|