@awboost/cfn-resource-types 0.1.522 → 0.1.524
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.
|
@@ -23,7 +23,6 @@ export type AppConfigConfigurationProfileProperties = {
|
|
|
23
23
|
Description?: string;
|
|
24
24
|
/**
|
|
25
25
|
* The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
|
|
26
|
-
* @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
|
|
27
26
|
*/
|
|
28
27
|
KmsKeyIdentifier?: string;
|
|
29
28
|
/**
|
|
@@ -32,7 +32,6 @@ export type AppConfigDeploymentProperties = {
|
|
|
32
32
|
EnvironmentId: string;
|
|
33
33
|
/**
|
|
34
34
|
* The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
|
|
35
|
-
* @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov|-iso(b?))?-[a-z]+-\d{1}:\d{12}:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
|
|
36
35
|
*/
|
|
37
36
|
KmsKeyIdentifier?: string;
|
|
38
37
|
/**
|
|
@@ -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.
|
|
@@ -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
|
*/
|