@awboost/cfn-resource-types 0.1.521 → 0.1.523
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.
|
@@ -18,6 +18,7 @@ export type CloudFrontKeyValueStoreProperties = {
|
|
|
18
18
|
* The name of the key value store.
|
|
19
19
|
*/
|
|
20
20
|
Name: string;
|
|
21
|
+
Tags?: Tag[];
|
|
21
22
|
};
|
|
22
23
|
/**
|
|
23
24
|
* Attribute type definition for `AWS::CloudFront::KeyValueStore`.
|
|
@@ -43,6 +44,24 @@ export type ImportSource = {
|
|
|
43
44
|
*/
|
|
44
45
|
SourceType: string;
|
|
45
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::CloudFront::KeyValueStore.Tag`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-keyvaluestore-tag.html}
|
|
50
|
+
*/
|
|
51
|
+
export type Tag = {
|
|
52
|
+
/**
|
|
53
|
+
* @minLength `1`
|
|
54
|
+
* @maxLength `128`
|
|
55
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
56
|
+
*/
|
|
57
|
+
Key: string;
|
|
58
|
+
/**
|
|
59
|
+
* @minLength `0`
|
|
60
|
+
* @maxLength `256`
|
|
61
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
62
|
+
*/
|
|
63
|
+
Value: string;
|
|
64
|
+
};
|
|
46
65
|
/**
|
|
47
66
|
* Resource type definition for `AWS::CloudFront::KeyValueStore`.
|
|
48
67
|
* 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.
|
|
@@ -100,7 +100,7 @@ export type ManagedInstancesMonitoringOptions = "BASIC" | "DETAILED";
|
|
|
100
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedinstancesnetworkconfiguration.html}
|
|
101
101
|
*/
|
|
102
102
|
export type ManagedInstancesNetworkConfiguration = {
|
|
103
|
-
SecurityGroups
|
|
103
|
+
SecurityGroups: string[];
|
|
104
104
|
Subnets: string[];
|
|
105
105
|
};
|
|
106
106
|
/**
|
|
@@ -30,6 +30,10 @@ export type RTBFabricInboundExternalLinkAttributes = {
|
|
|
30
30
|
*/
|
|
31
31
|
Arn: string;
|
|
32
32
|
CreatedTimestamp: string;
|
|
33
|
+
/**
|
|
34
|
+
* @pattern `^(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?)(?:\.(?:[A-Za-z0-9](?:[A-Za-z0-9-]{0,61}[A-Za-z0-9])?))+$`
|
|
35
|
+
*/
|
|
36
|
+
DomainName: string;
|
|
33
37
|
/**
|
|
34
38
|
* @pattern `^link-[a-z0-9-]{1,25}$`
|
|
35
39
|
*/
|