@awboost/cfn-resource-types 0.1.169 → 0.1.170
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.
|
@@ -22,7 +22,7 @@ export type LambdaFunctionProperties = {
|
|
|
22
22
|
Code: Code;
|
|
23
23
|
/**
|
|
24
24
|
* To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes a set of signing profiles, which define the trusted publishers for this function.
|
|
25
|
-
* @pattern `arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}((-gov)|(-iso(
|
|
25
|
+
* @pattern `arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:code-signing-config:csc-[a-z0-9]{17}`
|
|
26
26
|
*/
|
|
27
27
|
CodeSigningConfigArn?: string;
|
|
28
28
|
/**
|
|
@@ -237,7 +237,7 @@ export type FileSystemConfig = {
|
|
|
237
237
|
/**
|
|
238
238
|
* The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
|
|
239
239
|
* @maxLength `200`
|
|
240
|
-
* @pattern `^arn:aws[a-zA-Z-]*:elasticfilesystem:[a-z]{2}((-gov)|(-iso(
|
|
240
|
+
* @pattern `^arn:aws[a-zA-Z-]*:elasticfilesystem:[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:access-point/fsap-[a-f0-9]{17}$`
|
|
241
241
|
*/
|
|
242
242
|
Arn: string;
|
|
243
243
|
/**
|
|
@@ -22,10 +22,6 @@ export type LambdaVersionProperties = {
|
|
|
22
22
|
* @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
|
|
23
23
|
*/
|
|
24
24
|
FunctionName: string;
|
|
25
|
-
/**
|
|
26
|
-
* The resource policy of your function
|
|
27
|
-
*/
|
|
28
|
-
Policy?: Record<string, any>;
|
|
29
25
|
/**
|
|
30
26
|
* Specifies a provisioned concurrency configuration for a function's version. Updates are not supported for this property.
|
|
31
27
|
*/
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::Redshift::Integration`.
|
|
5
|
+
* Integration from a source AWS service to a Redshift cluster
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html}
|
|
7
|
+
*/
|
|
8
|
+
export type RedshiftIntegrationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* An optional set of non-secret key–value pairs that contains additional contextual information about the data.
|
|
11
|
+
*/
|
|
12
|
+
AdditionalEncryptionContext?: EncryptionContextMap;
|
|
13
|
+
/**
|
|
14
|
+
* The name of the integration.
|
|
15
|
+
* @minLength `1`
|
|
16
|
+
* @maxLength `64`
|
|
17
|
+
*/
|
|
18
|
+
IntegrationName?: string;
|
|
19
|
+
/**
|
|
20
|
+
* An KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, the default AWS owned KMS key is used.
|
|
21
|
+
*/
|
|
22
|
+
KMSKeyId?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The Amazon Resource Name (ARN) of the database to use as the source for replication, for example, arn:aws:dynamodb:us-east-2:123412341234:table/dynamotable
|
|
25
|
+
*/
|
|
26
|
+
SourceArn: string;
|
|
27
|
+
/**
|
|
28
|
+
* An array of key-value pairs to apply to this resource.
|
|
29
|
+
* @maxLength `50`
|
|
30
|
+
*/
|
|
31
|
+
Tags?: Tag[];
|
|
32
|
+
/**
|
|
33
|
+
* The Amazon Resource Name (ARN) of the Redshift data warehouse to use as the target for replication, for example, arn:aws:redshift:us-east-2:123412341234:namespace:e43aab3e-10a3-4ec4-83d4-f227ff9bfbcf
|
|
34
|
+
*/
|
|
35
|
+
TargetArn: string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Attribute type definition for `AWS::Redshift::Integration`.
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#aws-resource-redshift-integration-return-values}
|
|
40
|
+
*/
|
|
41
|
+
export type RedshiftIntegrationAttributes = {
|
|
42
|
+
/**
|
|
43
|
+
* The time (UTC) when the integration was created.
|
|
44
|
+
*/
|
|
45
|
+
CreateTime: string;
|
|
46
|
+
/**
|
|
47
|
+
* The Amazon Resource Name (ARN) of the integration.
|
|
48
|
+
*/
|
|
49
|
+
IntegrationArn: string;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* Type definition for `AWS::Redshift::Integration.EncryptionContextMap`.
|
|
53
|
+
* An optional set of non-secret key–value pairs that contains additional contextual information about the data.
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-integration-encryptioncontextmap.html}
|
|
55
|
+
*/
|
|
56
|
+
export type EncryptionContextMap = Record<string, string>;
|
|
57
|
+
/**
|
|
58
|
+
* Type definition for `AWS::Redshift::Integration.Tag`.
|
|
59
|
+
* A key-value pair to associate with a resource.
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-integration-tag.html}
|
|
61
|
+
*/
|
|
62
|
+
export type Tag = {
|
|
63
|
+
/**
|
|
64
|
+
* 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 -.
|
|
65
|
+
* @minLength `1`
|
|
66
|
+
* @maxLength `128`
|
|
67
|
+
*/
|
|
68
|
+
Key: string;
|
|
69
|
+
/**
|
|
70
|
+
* 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 -.
|
|
71
|
+
* @minLength `0`
|
|
72
|
+
* @maxLength `256`
|
|
73
|
+
*/
|
|
74
|
+
Value?: string;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Resource type definition for `AWS::Redshift::Integration`.
|
|
78
|
+
* Integration from a source AWS service to a Redshift cluster
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html}
|
|
80
|
+
*/
|
|
81
|
+
export declare class RedshiftIntegration extends $Resource<"AWS::Redshift::Integration", RedshiftIntegrationProperties, RedshiftIntegrationAttributes> {
|
|
82
|
+
static readonly Type = "AWS::Redshift::Integration";
|
|
83
|
+
constructor(logicalId: string, properties: RedshiftIntegrationProperties, options?: $ResourceOptions);
|
|
84
|
+
}
|
|
85
|
+
//# sourceMappingURL=AWS-Redshift-Integration.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::Redshift::Integration`.
|
|
4
|
+
* Integration from a source AWS service to a Redshift cluster
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html}
|
|
6
|
+
*/
|
|
7
|
+
export class RedshiftIntegration extends $Resource {
|
|
8
|
+
static Type = "AWS::Redshift::Integration";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, RedshiftIntegration.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Redshift-Integration.js.map
|