@awboost/cfn-resource-types 0.1.130 → 0.1.131
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.
|
@@ -12,6 +12,10 @@ export type CognitoIdentityPoolProperties = {
|
|
|
12
12
|
CognitoStreams?: CognitoStreams;
|
|
13
13
|
DeveloperProviderName?: string;
|
|
14
14
|
IdentityPoolName?: string;
|
|
15
|
+
/**
|
|
16
|
+
* An array of key-value pairs to apply to this resource.
|
|
17
|
+
*/
|
|
18
|
+
IdentityPoolTags?: Tag[];
|
|
15
19
|
OpenIdConnectProviderARNs?: string[];
|
|
16
20
|
PushSync?: PushSync;
|
|
17
21
|
SamlProviderARNs?: string[];
|
|
@@ -51,6 +55,25 @@ export type PushSync = {
|
|
|
51
55
|
ApplicationArns?: string[];
|
|
52
56
|
RoleArn?: string;
|
|
53
57
|
};
|
|
58
|
+
/**
|
|
59
|
+
* Type definition for `AWS::Cognito::IdentityPool.Tag`.
|
|
60
|
+
* A key-value pair to associate with a resource.
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-tag.html}
|
|
62
|
+
*/
|
|
63
|
+
export type Tag = {
|
|
64
|
+
/**
|
|
65
|
+
* 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 -.
|
|
66
|
+
* @minLength `1`
|
|
67
|
+
* @maxLength `128`
|
|
68
|
+
*/
|
|
69
|
+
Key: string;
|
|
70
|
+
/**
|
|
71
|
+
* 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 -.
|
|
72
|
+
* @minLength `0`
|
|
73
|
+
* @maxLength `256`
|
|
74
|
+
*/
|
|
75
|
+
Value: string;
|
|
76
|
+
};
|
|
54
77
|
/**
|
|
55
78
|
* Resource Type definition for AWS::Cognito::IdentityPool
|
|
56
79
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html}
|
|
@@ -639,7 +639,7 @@ export type LaunchTemplateData = {
|
|
|
639
639
|
/**
|
|
640
640
|
* The ID of the AMI. Alternatively, you can specify a Systems Manager parameter, which will resolve to an AMI ID on launch.
|
|
641
641
|
Valid formats:
|
|
642
|
-
+ ``ami-
|
|
642
|
+
+ ``ami-0ac394d6a3example``
|
|
643
643
|
+ ``resolve:ssm:parameter-name``
|
|
644
644
|
+ ``resolve:ssm:parameter-name:version-number``
|
|
645
645
|
+ ``resolve:ssm:parameter-name:label``
|
|
@@ -8,7 +8,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
8
8
|
export type VpcLatticeAuthPolicyProperties = {
|
|
9
9
|
Policy: Record<string, any>;
|
|
10
10
|
/**
|
|
11
|
-
* @minLength `
|
|
11
|
+
* @minLength `17`
|
|
12
12
|
* @maxLength `200`
|
|
13
13
|
* @pattern `^((((sn)|(svc))-[0-9a-z]{17})|(arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc))-[0-9a-z]{17}))$`
|
|
14
14
|
*/
|