@awboost/cfn-resource-types 0.1.143 → 0.1.145
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.
|
@@ -38,7 +38,7 @@ export type DMSInstanceProfileProperties = {
|
|
|
38
38
|
/**
|
|
39
39
|
* The property describes a network type for the instance profile.
|
|
40
40
|
*/
|
|
41
|
-
NetworkType?: "IPV4" | "
|
|
41
|
+
NetworkType?: "IPV4" | "DUAL";
|
|
42
42
|
/**
|
|
43
43
|
* The property describes the publicly accessible of the instance profile
|
|
44
44
|
*/
|
|
@@ -0,0 +1,90 @@
|
|
|
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
|
+
* Definition of AWS::DataZone::EnvironmentActions Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DataZoneEnvironmentActionsProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The description of the Amazon DataZone environment action.
|
|
10
|
+
* @maxLength `2048`
|
|
11
|
+
*/
|
|
12
|
+
Description?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The identifier of the Amazon DataZone domain in which the environment would be created.
|
|
15
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
16
|
+
*/
|
|
17
|
+
DomainIdentifier?: string;
|
|
18
|
+
/**
|
|
19
|
+
* The identifier of the Amazon DataZone environment in which the action is taking place
|
|
20
|
+
* @minLength `1`
|
|
21
|
+
* @maxLength `36`
|
|
22
|
+
* @pattern `[a-zA-Z0-9_-]{1,36}$`
|
|
23
|
+
*/
|
|
24
|
+
EnvironmentIdentifier?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The ID of the Amazon DataZone environment action.
|
|
27
|
+
* @minLength `1`
|
|
28
|
+
* @maxLength `36`
|
|
29
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
30
|
+
*/
|
|
31
|
+
Identifier?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The name of the environment action.
|
|
34
|
+
* @minLength `1`
|
|
35
|
+
* @maxLength `64`
|
|
36
|
+
* @pattern `^[\w -]+$`
|
|
37
|
+
*/
|
|
38
|
+
Name: string;
|
|
39
|
+
/**
|
|
40
|
+
* The parameters of the environment action.
|
|
41
|
+
*/
|
|
42
|
+
Parameters?: AwsConsoleLinkParameters;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Attribute type definition for `AWS::DataZone::EnvironmentActions`.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html#aws-resource-datazone-environmentactions-return-values}
|
|
47
|
+
*/
|
|
48
|
+
export type DataZoneEnvironmentActionsAttributes = {
|
|
49
|
+
/**
|
|
50
|
+
* The identifier of the Amazon DataZone domain in which the environment is created.
|
|
51
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
52
|
+
*/
|
|
53
|
+
DomainId: string;
|
|
54
|
+
/**
|
|
55
|
+
* The identifier of the Amazon DataZone environment in which the action is taking place
|
|
56
|
+
* @minLength `1`
|
|
57
|
+
* @maxLength `36`
|
|
58
|
+
* @pattern `[a-zA-Z0-9_-]{1,36}$`
|
|
59
|
+
*/
|
|
60
|
+
EnvironmentId: string;
|
|
61
|
+
/**
|
|
62
|
+
* The ID of the Amazon DataZone environment action.
|
|
63
|
+
* @minLength `1`
|
|
64
|
+
* @maxLength `36`
|
|
65
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
66
|
+
*/
|
|
67
|
+
Id: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::DataZone::EnvironmentActions.AwsConsoleLinkParameters`.
|
|
71
|
+
* The parameters of the console link specified as part of the environment action
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentactions-awsconsolelinkparameters.html}
|
|
73
|
+
*/
|
|
74
|
+
export type AwsConsoleLinkParameters = {
|
|
75
|
+
/**
|
|
76
|
+
* The URI of the console link specified as part of the environment action.
|
|
77
|
+
* @minLength `1`
|
|
78
|
+
* @maxLength `2048`
|
|
79
|
+
*/
|
|
80
|
+
Uri?: string;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Definition of AWS::DataZone::EnvironmentActions Resource Type
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html}
|
|
85
|
+
*/
|
|
86
|
+
export declare class DataZoneEnvironmentActions extends $Resource<"AWS::DataZone::EnvironmentActions", DataZoneEnvironmentActionsProperties, DataZoneEnvironmentActionsAttributes> {
|
|
87
|
+
static readonly Type = "AWS::DataZone::EnvironmentActions";
|
|
88
|
+
constructor(logicalId: string, properties: DataZoneEnvironmentActionsProperties, options?: $ResourceOptions);
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=AWS-DataZone-EnvironmentActions.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::DataZone::EnvironmentActions Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentactions.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DataZoneEnvironmentActions extends $Resource {
|
|
7
|
+
static Type = "AWS::DataZone::EnvironmentActions";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DataZoneEnvironmentActions.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-DataZone-EnvironmentActions.js.map
|
package/lib/AWS-EC2-Subnet.d.ts
CHANGED
|
@@ -97,9 +97,6 @@ export type EC2SubnetProperties = {
|
|
|
97
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnet.html#aws-resource-ec2-subnet-return-values}
|
|
98
98
|
*/
|
|
99
99
|
export type EC2SubnetAttributes = {
|
|
100
|
-
/**
|
|
101
|
-
* The IPv6 network ranges for the subnet, in CIDR notation.
|
|
102
|
-
*/
|
|
103
100
|
Ipv6CidrBlocks: string[];
|
|
104
101
|
NetworkAclAssociationId: string;
|
|
105
102
|
SubnetId: string;
|
|
@@ -79,11 +79,12 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
79
79
|
*/
|
|
80
80
|
FunctionName: string;
|
|
81
81
|
/**
|
|
82
|
-
* (Streams and SQS) A list of current response type enums applied to the event source mapping.
|
|
82
|
+
* (Kinesis, DynamoDB Streams, and SQS) A list of current response type enums applied to the event source mapping.
|
|
83
83
|
Valid Values: ``ReportBatchItemFailures``
|
|
84
84
|
*/
|
|
85
85
|
FunctionResponseTypes?: "ReportBatchItemFailures"[];
|
|
86
86
|
/**
|
|
87
|
+
* The ARN of the KMSlong (KMS) customer managed key that Lambda uses to encrypt your function's [filter criteria](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-basics).
|
|
87
88
|
* @minLength `12`
|
|
88
89
|
* @maxLength `2048`
|
|
89
90
|
* @pattern `(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()`
|
|
@@ -155,6 +156,7 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
155
156
|
* With ``StartingPosition`` set to ``AT_TIMESTAMP``, the time from which to start reading, in Unix time seconds. ``StartingPositionTimestamp`` cannot be in the future.
|
|
156
157
|
*/
|
|
157
158
|
StartingPositionTimestamp?: number;
|
|
159
|
+
Tags?: Tag[];
|
|
158
160
|
/**
|
|
159
161
|
* The name of the Kafka topic.
|
|
160
162
|
* @minLength `1`
|
|
@@ -173,6 +175,12 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
173
175
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html#aws-resource-lambda-eventsourcemapping-return-values}
|
|
174
176
|
*/
|
|
175
177
|
export type LambdaEventSourceMappingAttributes = {
|
|
178
|
+
/**
|
|
179
|
+
* @minLength `85`
|
|
180
|
+
* @maxLength `120`
|
|
181
|
+
* @pattern `arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:\d{12}:event-source-mapping:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}`
|
|
182
|
+
*/
|
|
183
|
+
EventSourceMappingArn: string;
|
|
176
184
|
/**
|
|
177
185
|
* @minLength `36`
|
|
178
186
|
* @maxLength `36`
|
|
@@ -350,6 +358,24 @@ export type SourceAccessConfiguration = {
|
|
|
350
358
|
*/
|
|
351
359
|
URI?: string;
|
|
352
360
|
};
|
|
361
|
+
/**
|
|
362
|
+
* Type definition for `AWS::Lambda::EventSourceMapping.Tag`.
|
|
363
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-tag.html}
|
|
364
|
+
*/
|
|
365
|
+
export type Tag = {
|
|
366
|
+
/**
|
|
367
|
+
* 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 -.
|
|
368
|
+
* @minLength `1`
|
|
369
|
+
* @maxLength `128`
|
|
370
|
+
*/
|
|
371
|
+
Key: string;
|
|
372
|
+
/**
|
|
373
|
+
* 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 -.
|
|
374
|
+
* @minLength `0`
|
|
375
|
+
* @maxLength `256`
|
|
376
|
+
*/
|
|
377
|
+
Value?: string;
|
|
378
|
+
};
|
|
353
379
|
/**
|
|
354
380
|
* The ``AWS::Lambda::EventSourceMapping`` resource creates a mapping between an event source and an LAMlong function. LAM reads items from the event source and triggers the function.
|
|
355
381
|
For details about each event source type, see the following topics. In particular, each of the topics describes the required and optional parameters for the specific event source.
|