@awboost/cfn-resource-types 0.1.212 → 0.1.214
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.
- package/lib/AWS-ApplicationAutoScaling-ScalingPolicy.d.ts +98 -12
- package/lib/AWS-CleanRooms-ConfiguredTable.d.ts +84 -0
- package/lib/AWS-CleanRooms-ConfiguredTableAssociation.d.ts +1 -1
- package/lib/AWS-Connect-Queue.d.ts +16 -0
- package/lib/AWS-Connect-TaskTemplate.d.ts +5 -0
- package/lib/AWS-DynamoDB-Table.d.ts +2 -2
- package/lib/AWS-EC2-LaunchTemplate.d.ts +15 -24
- package/lib/AWS-ECS-TaskDefinition.d.ts +4 -4
- package/lib/AWS-EMRServerless-Application.d.ts +19 -0
- package/lib/AWS-IoT-Command.d.ts +160 -0
- package/lib/AWS-IoT-Command.js +13 -0
- package/lib/AWS-Logs-LogGroup.d.ts +1 -0
- package/lib/AWS-Logs-MetricFilter.d.ts +1 -0
- package/lib/AWS-Logs-QueryDefinition.d.ts +4 -0
- package/lib/AWS-Logs-SubscriptionFilter.d.ts +1 -0
- package/lib/AWS-Logs-Transformer.d.ts +375 -0
- package/lib/AWS-Logs-Transformer.js +13 -0
- package/lib/AWS-NetworkManager-DirectConnectGatewayAttachment.d.ts +144 -0
- package/lib/AWS-NetworkManager-DirectConnectGatewayAttachment.js +12 -0
- package/lib/AWS-RDS-CustomDBEngineVersion.d.ts +38 -28
- package/lib/AWS-RDS-CustomDBEngineVersion.js +2 -1
- package/lib/AWS-RedshiftServerless-Workgroup.d.ts +36 -0
- package/lib/AWS-S3Tables-TableBucket.d.ts +60 -0
- package/lib/AWS-S3Tables-TableBucket.js +13 -0
- package/lib/AWS-S3Tables-TableBucketPolicy.d.ts +33 -0
- package/lib/AWS-S3Tables-TableBucketPolicy.js +13 -0
- package/package.json +1 -1
|
@@ -0,0 +1,160 @@
|
|
|
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::IoT::Command`.
|
|
5
|
+
* Represents the resource definition of AWS IoT Command.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-command.html}
|
|
7
|
+
*/
|
|
8
|
+
export type IoTCommandProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The unique identifier for the command.
|
|
11
|
+
* @minLength `1`
|
|
12
|
+
* @maxLength `64`
|
|
13
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
|
14
|
+
*/
|
|
15
|
+
CommandId: string;
|
|
16
|
+
/**
|
|
17
|
+
* The date and time when the command was created.
|
|
18
|
+
*/
|
|
19
|
+
CreatedAt?: string;
|
|
20
|
+
/**
|
|
21
|
+
* A flag indicating whether the command is deprecated.
|
|
22
|
+
*/
|
|
23
|
+
Deprecated?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* The description of the command.
|
|
26
|
+
* @maxLength `2028`
|
|
27
|
+
*/
|
|
28
|
+
Description?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The display name for the command.
|
|
31
|
+
*/
|
|
32
|
+
DisplayName?: string;
|
|
33
|
+
/**
|
|
34
|
+
* The date and time when the command was last updated.
|
|
35
|
+
*/
|
|
36
|
+
LastUpdatedAt?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The list of mandatory parameters for the command.
|
|
39
|
+
* @minLength `1`
|
|
40
|
+
*/
|
|
41
|
+
MandatoryParameters?: CommandParameter[];
|
|
42
|
+
/**
|
|
43
|
+
* The namespace to which the command belongs.
|
|
44
|
+
*/
|
|
45
|
+
Namespace?: "AWS-IoT" | "AWS-IoT-FleetWise";
|
|
46
|
+
/**
|
|
47
|
+
* The payload associated with the command.
|
|
48
|
+
*/
|
|
49
|
+
Payload?: CommandPayload;
|
|
50
|
+
/**
|
|
51
|
+
* A flag indicating whether the command is pending deletion.
|
|
52
|
+
*/
|
|
53
|
+
PendingDeletion?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* The customer role associated with the command.
|
|
56
|
+
* @minLength `20`
|
|
57
|
+
* @maxLength `2028`
|
|
58
|
+
*/
|
|
59
|
+
RoleArn?: string;
|
|
60
|
+
/**
|
|
61
|
+
* The tags to be associated with the command.
|
|
62
|
+
*/
|
|
63
|
+
Tags?: Tag[];
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Attribute type definition for `AWS::IoT::Command`.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-command.html#aws-resource-iot-command-return-values}
|
|
68
|
+
*/
|
|
69
|
+
export type IoTCommandAttributes = {
|
|
70
|
+
/**
|
|
71
|
+
* The Amazon Resource Name (ARN) of the command.
|
|
72
|
+
*/
|
|
73
|
+
CommandArn: string;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Type definition for `AWS::IoT::Command.CommandParameter`.
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparameter.html}
|
|
78
|
+
*/
|
|
79
|
+
export type CommandParameter = {
|
|
80
|
+
DefaultValue?: CommandParameterValue;
|
|
81
|
+
/**
|
|
82
|
+
* @maxLength `2028`
|
|
83
|
+
*/
|
|
84
|
+
Description?: string;
|
|
85
|
+
/**
|
|
86
|
+
* @minLength `1`
|
|
87
|
+
* @maxLength `192`
|
|
88
|
+
* @pattern `^[.$a-zA-Z0-9_-]+$`
|
|
89
|
+
*/
|
|
90
|
+
Name: string;
|
|
91
|
+
Value?: CommandParameterValue;
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* Type definition for `AWS::IoT::Command.CommandParameterValue`.
|
|
95
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervalue.html}
|
|
96
|
+
*/
|
|
97
|
+
export type CommandParameterValue = {
|
|
98
|
+
B?: boolean;
|
|
99
|
+
/**
|
|
100
|
+
* @minLength `1`
|
|
101
|
+
*/
|
|
102
|
+
BIN?: string;
|
|
103
|
+
D?: number;
|
|
104
|
+
I?: number;
|
|
105
|
+
/**
|
|
106
|
+
* @maxLength `19`
|
|
107
|
+
* @pattern `^-?\d+$`
|
|
108
|
+
*/
|
|
109
|
+
L?: string;
|
|
110
|
+
/**
|
|
111
|
+
* @minLength `1`
|
|
112
|
+
*/
|
|
113
|
+
S?: string;
|
|
114
|
+
/**
|
|
115
|
+
* @minLength `1`
|
|
116
|
+
* @maxLength `20`
|
|
117
|
+
* @pattern `^[0-9]*$`
|
|
118
|
+
*/
|
|
119
|
+
UL?: string;
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* Type definition for `AWS::IoT::Command.CommandPayload`.
|
|
123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandpayload.html}
|
|
124
|
+
*/
|
|
125
|
+
export type CommandPayload = {
|
|
126
|
+
Content?: string;
|
|
127
|
+
/**
|
|
128
|
+
* @minLength `1`
|
|
129
|
+
*/
|
|
130
|
+
ContentType?: string;
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* Type definition for `AWS::IoT::Command.Tag`.
|
|
134
|
+
* A key-value pair to associate with a resource.
|
|
135
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-tag.html}
|
|
136
|
+
*/
|
|
137
|
+
export type Tag = {
|
|
138
|
+
/**
|
|
139
|
+
* The tag's key.
|
|
140
|
+
* @minLength `1`
|
|
141
|
+
* @maxLength `128`
|
|
142
|
+
*/
|
|
143
|
+
Key: string;
|
|
144
|
+
/**
|
|
145
|
+
* The tag's value.
|
|
146
|
+
* @minLength `1`
|
|
147
|
+
* @maxLength `256`
|
|
148
|
+
*/
|
|
149
|
+
Value: string;
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* Resource type definition for `AWS::IoT::Command`.
|
|
153
|
+
* Represents the resource definition of AWS IoT Command.
|
|
154
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-command.html}
|
|
155
|
+
*/
|
|
156
|
+
export declare class IoTCommand extends $Resource<"AWS::IoT::Command", IoTCommandProperties, IoTCommandAttributes> {
|
|
157
|
+
static readonly Type = "AWS::IoT::Command";
|
|
158
|
+
constructor(logicalId: string, properties: IoTCommandProperties, options?: $ResourceOptions);
|
|
159
|
+
}
|
|
160
|
+
//# sourceMappingURL=AWS-IoT-Command.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::IoT::Command`.
|
|
4
|
+
* Represents the resource definition of AWS IoT Command.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-command.html}
|
|
6
|
+
*/
|
|
7
|
+
export class IoTCommand extends $Resource {
|
|
8
|
+
static Type = "AWS::IoT::Command";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, IoTCommand.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-IoT-Command.js.map
|
|
@@ -14,6 +14,7 @@ export type LogsLogGroupProperties = {
|
|
|
14
14
|
For more information, including a list of types of data that can be audited and masked, see [Protect sensitive log data with masking](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/mask-sensitive-log-data.html).
|
|
15
15
|
*/
|
|
16
16
|
DataProtectionPolicy?: Record<string, any>;
|
|
17
|
+
FieldIndexPolicies?: Record<string, any>[];
|
|
17
18
|
/**
|
|
18
19
|
* The Amazon Resource Name (ARN) of the KMS key to use when encrypting log data.
|
|
19
20
|
To associate an KMS key with the log group, specify the ARN of that KMS key here. If you do so, ingested data is encrypted using this key. This association is stored as long as the data encrypted with the KMS key is still within CWL. This enables CWL to decrypt this data whenever it is requested.
|
|
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html}
|
|
7
7
|
*/
|
|
8
8
|
export type LogsMetricFilterProperties = {
|
|
9
|
+
ApplyOnTransformedLogs?: boolean;
|
|
9
10
|
/**
|
|
10
11
|
* The name of the metric filter.
|
|
11
12
|
* @minLength `1`
|
|
@@ -16,6 +16,10 @@ export type LogsQueryDefinitionProperties = {
|
|
|
16
16
|
* @maxLength `255`
|
|
17
17
|
*/
|
|
18
18
|
Name: string;
|
|
19
|
+
/**
|
|
20
|
+
* Query language of the query string. Possible values are CWLI, SQL, PPL, with CWLI being the default.
|
|
21
|
+
*/
|
|
22
|
+
QueryLanguage?: "CWLI" | "SQL" | "PPL";
|
|
19
23
|
/**
|
|
20
24
|
* The query string to use for this definition
|
|
21
25
|
* @minLength `1`
|
|
@@ -11,6 +11,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
11
11
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html}
|
|
12
12
|
*/
|
|
13
13
|
export type LogsSubscriptionFilterProperties = {
|
|
14
|
+
ApplyOnTransformedLogs?: boolean;
|
|
14
15
|
/**
|
|
15
16
|
* The Amazon Resource Name (ARN) of the destination.
|
|
16
17
|
*/
|
|
@@ -0,0 +1,375 @@
|
|
|
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::Logs::Transformer`.
|
|
5
|
+
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-transformer.html}
|
|
7
|
+
*/
|
|
8
|
+
export type LogsTransformerProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Existing log group that you want to associate with this transformer.
|
|
11
|
+
* @minLength `1`
|
|
12
|
+
* @maxLength `2048`
|
|
13
|
+
* @pattern `[\w#+=/:,.@-]*`
|
|
14
|
+
*/
|
|
15
|
+
LogGroupIdentifier: string;
|
|
16
|
+
/**
|
|
17
|
+
* List of processors in a transformer
|
|
18
|
+
* @minLength `1`
|
|
19
|
+
* @maxLength `20`
|
|
20
|
+
*/
|
|
21
|
+
TransformerConfig: Processor[];
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Type definition for `AWS::Logs::Transformer.AddKeyEntry`.
|
|
25
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-addkeyentry.html}
|
|
26
|
+
*/
|
|
27
|
+
export type AddKeyEntry = {
|
|
28
|
+
/**
|
|
29
|
+
* @maxLength `128`
|
|
30
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
31
|
+
*/
|
|
32
|
+
Key: string;
|
|
33
|
+
OverwriteIfExists?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* @minLength `1`
|
|
36
|
+
* @maxLength `256`
|
|
37
|
+
*/
|
|
38
|
+
Value: string;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Type definition for `AWS::Logs::Transformer.CopyValueEntry`.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-copyvalueentry.html}
|
|
43
|
+
*/
|
|
44
|
+
export type CopyValueEntry = {
|
|
45
|
+
OverwriteIfExists?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
48
|
+
*/
|
|
49
|
+
Source: string;
|
|
50
|
+
/**
|
|
51
|
+
* @maxLength `128`
|
|
52
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
53
|
+
*/
|
|
54
|
+
Target: string;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Type definition for `AWS::Logs::Transformer.MoveKeyEntry`.
|
|
58
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-movekeyentry.html}
|
|
59
|
+
*/
|
|
60
|
+
export type MoveKeyEntry = {
|
|
61
|
+
OverwriteIfExists?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
64
|
+
*/
|
|
65
|
+
Source: string;
|
|
66
|
+
/**
|
|
67
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
68
|
+
*/
|
|
69
|
+
Target: string;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::Logs::Transformer.ParseCloudfront`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsecloudfront.html}
|
|
74
|
+
*/
|
|
75
|
+
export type ParseCloudfront = {
|
|
76
|
+
/**
|
|
77
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
78
|
+
*/
|
|
79
|
+
Source?: string;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Type definition for `AWS::Logs::Transformer.ParsePostgres`.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsepostgres.html}
|
|
84
|
+
*/
|
|
85
|
+
export type ParsePostgres = {
|
|
86
|
+
/**
|
|
87
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
88
|
+
*/
|
|
89
|
+
Source?: string;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Type definition for `AWS::Logs::Transformer.ParseRoute53`.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parseroute53.html}
|
|
94
|
+
*/
|
|
95
|
+
export type ParseRoute53 = {
|
|
96
|
+
/**
|
|
97
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
98
|
+
*/
|
|
99
|
+
Source?: string;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Type definition for `AWS::Logs::Transformer.ParseVPC`.
|
|
103
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsevpc.html}
|
|
104
|
+
*/
|
|
105
|
+
export type ParseVPC = {
|
|
106
|
+
/**
|
|
107
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
108
|
+
*/
|
|
109
|
+
Source?: string;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* Type definition for `AWS::Logs::Transformer.ParseWAF`.
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsewaf.html}
|
|
114
|
+
*/
|
|
115
|
+
export type ParseWAF = {
|
|
116
|
+
/**
|
|
117
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
118
|
+
*/
|
|
119
|
+
Source?: string;
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* Type definition for `AWS::Logs::Transformer.Processor`.
|
|
123
|
+
* Individual processor configuration
|
|
124
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-processor.html}
|
|
125
|
+
*/
|
|
126
|
+
export type Processor = {
|
|
127
|
+
AddKeys?: {
|
|
128
|
+
/**
|
|
129
|
+
* @minLength `1`
|
|
130
|
+
* @maxLength `5`
|
|
131
|
+
*/
|
|
132
|
+
Entries: AddKeyEntry[];
|
|
133
|
+
};
|
|
134
|
+
CopyValue?: {
|
|
135
|
+
/**
|
|
136
|
+
* @minLength `1`
|
|
137
|
+
* @maxLength `5`
|
|
138
|
+
*/
|
|
139
|
+
Entries: CopyValueEntry[];
|
|
140
|
+
};
|
|
141
|
+
Csv?: {
|
|
142
|
+
/**
|
|
143
|
+
* @minLength `1`
|
|
144
|
+
* @maxLength `100`
|
|
145
|
+
*/
|
|
146
|
+
Columns?: string[];
|
|
147
|
+
/**
|
|
148
|
+
* @maxLength `1`
|
|
149
|
+
*/
|
|
150
|
+
Delimiter?: string;
|
|
151
|
+
/**
|
|
152
|
+
* @maxLength `1`
|
|
153
|
+
*/
|
|
154
|
+
QuoteCharacter?: string;
|
|
155
|
+
Source?: string;
|
|
156
|
+
};
|
|
157
|
+
DateTimeConverter?: {
|
|
158
|
+
Locale?: string;
|
|
159
|
+
/**
|
|
160
|
+
* @minLength `1`
|
|
161
|
+
* @maxLength `5`
|
|
162
|
+
*/
|
|
163
|
+
MatchPatterns: string[];
|
|
164
|
+
/**
|
|
165
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
166
|
+
*/
|
|
167
|
+
Source: string;
|
|
168
|
+
SourceTimezone?: string;
|
|
169
|
+
/**
|
|
170
|
+
* @maxLength `128`
|
|
171
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
172
|
+
*/
|
|
173
|
+
Target: string;
|
|
174
|
+
TargetFormat?: string;
|
|
175
|
+
TargetTimezone?: string;
|
|
176
|
+
};
|
|
177
|
+
DeleteKeys?: {
|
|
178
|
+
/**
|
|
179
|
+
* @minLength `1`
|
|
180
|
+
* @maxLength `5`
|
|
181
|
+
*/
|
|
182
|
+
WithKeys: string[];
|
|
183
|
+
};
|
|
184
|
+
Grok?: {
|
|
185
|
+
/**
|
|
186
|
+
* @maxLength `128`
|
|
187
|
+
*/
|
|
188
|
+
Match: string;
|
|
189
|
+
/**
|
|
190
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
191
|
+
*/
|
|
192
|
+
Source?: string;
|
|
193
|
+
};
|
|
194
|
+
ListToMap?: {
|
|
195
|
+
Flatten?: boolean;
|
|
196
|
+
FlattenedElement?: "first" | "last";
|
|
197
|
+
/**
|
|
198
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
199
|
+
*/
|
|
200
|
+
Key: string;
|
|
201
|
+
/**
|
|
202
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
203
|
+
*/
|
|
204
|
+
Source: string;
|
|
205
|
+
/**
|
|
206
|
+
* @maxLength `128`
|
|
207
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
208
|
+
*/
|
|
209
|
+
Target?: string;
|
|
210
|
+
/**
|
|
211
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
212
|
+
*/
|
|
213
|
+
ValueKey?: string;
|
|
214
|
+
};
|
|
215
|
+
LowerCaseString?: {
|
|
216
|
+
/**
|
|
217
|
+
* @minLength `1`
|
|
218
|
+
* @maxLength `10`
|
|
219
|
+
*/
|
|
220
|
+
WithKeys: string[];
|
|
221
|
+
};
|
|
222
|
+
MoveKeys?: {
|
|
223
|
+
/**
|
|
224
|
+
* @minLength `1`
|
|
225
|
+
* @maxLength `5`
|
|
226
|
+
*/
|
|
227
|
+
Entries: MoveKeyEntry[];
|
|
228
|
+
};
|
|
229
|
+
ParseCloudfront?: ParseCloudfront;
|
|
230
|
+
ParseJSON?: {
|
|
231
|
+
/**
|
|
232
|
+
* @maxLength `128`
|
|
233
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
234
|
+
*/
|
|
235
|
+
Destination?: string;
|
|
236
|
+
Source?: string;
|
|
237
|
+
};
|
|
238
|
+
ParseKeyValue?: {
|
|
239
|
+
/**
|
|
240
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
241
|
+
*/
|
|
242
|
+
Destination?: string;
|
|
243
|
+
FieldDelimiter?: string;
|
|
244
|
+
/**
|
|
245
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
246
|
+
*/
|
|
247
|
+
KeyPrefix?: string;
|
|
248
|
+
KeyValueDelimiter?: string;
|
|
249
|
+
/**
|
|
250
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
251
|
+
*/
|
|
252
|
+
NonMatchValue?: string;
|
|
253
|
+
OverwriteIfExists?: boolean;
|
|
254
|
+
/**
|
|
255
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
256
|
+
*/
|
|
257
|
+
Source?: string;
|
|
258
|
+
};
|
|
259
|
+
ParsePostgres?: ParsePostgres;
|
|
260
|
+
ParseRoute53?: ParseRoute53;
|
|
261
|
+
ParseVPC?: ParseVPC;
|
|
262
|
+
ParseWAF?: ParseWAF;
|
|
263
|
+
RenameKeys?: {
|
|
264
|
+
/**
|
|
265
|
+
* @minLength `1`
|
|
266
|
+
* @maxLength `5`
|
|
267
|
+
*/
|
|
268
|
+
Entries: RenameKeyEntry[];
|
|
269
|
+
};
|
|
270
|
+
SplitString?: {
|
|
271
|
+
/**
|
|
272
|
+
* @minLength `1`
|
|
273
|
+
* @maxLength `10`
|
|
274
|
+
*/
|
|
275
|
+
Entries: SplitStringEntry[];
|
|
276
|
+
};
|
|
277
|
+
SubstituteString?: {
|
|
278
|
+
/**
|
|
279
|
+
* @minLength `1`
|
|
280
|
+
* @maxLength `10`
|
|
281
|
+
*/
|
|
282
|
+
Entries: SubstituteStringEntry[];
|
|
283
|
+
};
|
|
284
|
+
TrimString?: {
|
|
285
|
+
/**
|
|
286
|
+
* @minLength `1`
|
|
287
|
+
* @maxLength `10`
|
|
288
|
+
*/
|
|
289
|
+
WithKeys: string[];
|
|
290
|
+
};
|
|
291
|
+
TypeConverter?: {
|
|
292
|
+
/**
|
|
293
|
+
* @minLength `1`
|
|
294
|
+
* @maxLength `5`
|
|
295
|
+
*/
|
|
296
|
+
Entries: TypeConverterEntry[];
|
|
297
|
+
};
|
|
298
|
+
UpperCaseString?: {
|
|
299
|
+
/**
|
|
300
|
+
* @minLength `1`
|
|
301
|
+
* @maxLength `10`
|
|
302
|
+
*/
|
|
303
|
+
WithKeys: string[];
|
|
304
|
+
};
|
|
305
|
+
};
|
|
306
|
+
/**
|
|
307
|
+
* Type definition for `AWS::Logs::Transformer.RenameKeyEntry`.
|
|
308
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-renamekeyentry.html}
|
|
309
|
+
*/
|
|
310
|
+
export type RenameKeyEntry = {
|
|
311
|
+
/**
|
|
312
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
313
|
+
*/
|
|
314
|
+
Key: string;
|
|
315
|
+
OverwriteIfExists?: boolean;
|
|
316
|
+
/**
|
|
317
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
318
|
+
*/
|
|
319
|
+
RenameTo: string;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* Type definition for `AWS::Logs::Transformer.SplitStringEntry`.
|
|
323
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-splitstringentry.html}
|
|
324
|
+
*/
|
|
325
|
+
export type SplitStringEntry = {
|
|
326
|
+
/**
|
|
327
|
+
* @maxLength `1`
|
|
328
|
+
*/
|
|
329
|
+
Delimiter: string;
|
|
330
|
+
/**
|
|
331
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
332
|
+
*/
|
|
333
|
+
Source: string;
|
|
334
|
+
};
|
|
335
|
+
/**
|
|
336
|
+
* Type definition for `AWS::Logs::Transformer.SubstituteStringEntry`.
|
|
337
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-substitutestringentry.html}
|
|
338
|
+
*/
|
|
339
|
+
export type SubstituteStringEntry = {
|
|
340
|
+
/**
|
|
341
|
+
* @maxLength `128`
|
|
342
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
343
|
+
*/
|
|
344
|
+
From: string;
|
|
345
|
+
/**
|
|
346
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
347
|
+
*/
|
|
348
|
+
Source: string;
|
|
349
|
+
/**
|
|
350
|
+
* @maxLength `128`
|
|
351
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
352
|
+
*/
|
|
353
|
+
To: string;
|
|
354
|
+
};
|
|
355
|
+
/**
|
|
356
|
+
* Type definition for `AWS::Logs::Transformer.TypeConverterEntry`.
|
|
357
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-typeconverterentry.html}
|
|
358
|
+
*/
|
|
359
|
+
export type TypeConverterEntry = {
|
|
360
|
+
/**
|
|
361
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
|
362
|
+
*/
|
|
363
|
+
Key: string;
|
|
364
|
+
Type: "boolean" | "integer" | "double" | "string";
|
|
365
|
+
};
|
|
366
|
+
/**
|
|
367
|
+
* Resource type definition for `AWS::Logs::Transformer`.
|
|
368
|
+
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
|
|
369
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-transformer.html}
|
|
370
|
+
*/
|
|
371
|
+
export declare class LogsTransformer extends $Resource<"AWS::Logs::Transformer", LogsTransformerProperties, Record<string, never>> {
|
|
372
|
+
static readonly Type = "AWS::Logs::Transformer";
|
|
373
|
+
constructor(logicalId: string, properties: LogsTransformerProperties, options?: $ResourceOptions);
|
|
374
|
+
}
|
|
375
|
+
//# sourceMappingURL=AWS-Logs-Transformer.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::Logs::Transformer`.
|
|
4
|
+
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-transformer.html}
|
|
6
|
+
*/
|
|
7
|
+
export class LogsTransformer extends $Resource {
|
|
8
|
+
static Type = "AWS::Logs::Transformer";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, LogsTransformer.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Logs-Transformer.js.map
|