@awboost/cfn-resource-types 0.1.197 → 0.1.198
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-ApiGateway-BasePathMappingV2.d.ts +43 -0
- package/lib/AWS-ApiGateway-BasePathMappingV2.js +12 -0
- package/lib/AWS-ApiGateway-DomainNameAccessAssociation.d.ts +51 -0
- package/lib/AWS-ApiGateway-DomainNameAccessAssociation.js +12 -0
- package/lib/AWS-ApiGateway-DomainNameV2.d.ts +50 -0
- package/lib/AWS-ApiGateway-DomainNameV2.js +12 -0
- package/lib/AWS-ApplicationAutoScaling-ScalingPolicy.d.ts +146 -0
- package/lib/AWS-AutoScaling-AutoScalingGroup.d.ts +17 -0
- package/lib/AWS-CloudFront-CachePolicy.d.ts +105 -12
- package/lib/AWS-CloudFront-CachePolicy.js +7 -1
- package/lib/AWS-CloudFront-CloudFrontOriginAccessIdentity.d.ts +11 -2
- package/lib/AWS-CloudFront-CloudFrontOriginAccessIdentity.js +2 -1
- package/lib/AWS-CloudFront-ContinuousDeploymentPolicy.d.ts +52 -2
- package/lib/AWS-CloudFront-ContinuousDeploymentPolicy.js +4 -1
- package/lib/AWS-CloudFront-Distribution.d.ts +53 -11
- package/lib/AWS-CloudFront-Function.d.ts +42 -2
- package/lib/AWS-CloudFront-Function.js +5 -1
- package/lib/AWS-CloudFront-KeyGroup.d.ts +20 -2
- package/lib/AWS-CloudFront-KeyGroup.js +3 -1
- package/lib/AWS-CloudFront-KeyValueStore.d.ts +20 -2
- package/lib/AWS-CloudFront-KeyValueStore.js +2 -1
- package/lib/AWS-CloudFront-MonitoringSubscription.d.ts +18 -2
- package/lib/AWS-CloudFront-MonitoringSubscription.js +2 -1
- package/lib/AWS-CloudFront-OriginAccessControl.d.ts +29 -4
- package/lib/AWS-CloudFront-OriginAccessControl.js +4 -1
- package/lib/AWS-CloudFront-OriginRequestPolicy.d.ts +75 -8
- package/lib/AWS-CloudFront-OriginRequestPolicy.js +8 -1
- package/lib/AWS-CloudFront-PublicKey.d.ts +20 -2
- package/lib/AWS-CloudFront-PublicKey.js +2 -1
- package/lib/AWS-CloudFront-RealtimeLogConfig.d.ts +28 -4
- package/lib/AWS-CloudFront-RealtimeLogConfig.js +2 -1
- package/lib/AWS-CloudFront-ResponseHeadersPolicy.d.ts +213 -6
- package/lib/AWS-CloudFront-ResponseHeadersPolicy.js +5 -1
- package/lib/AWS-CloudTrail-Dashboard.d.ts +129 -0
- package/lib/AWS-CloudTrail-Dashboard.js +13 -0
- package/lib/AWS-Connect-EmailAddress.d.ts +79 -0
- package/lib/AWS-Connect-EmailAddress.js +12 -0
- package/lib/AWS-Connect-HoursOfOperation.d.ts +82 -0
- package/lib/AWS-CustomerProfiles-SegmentDefinition.d.ts +424 -0
- package/lib/AWS-CustomerProfiles-SegmentDefinition.js +13 -0
- package/lib/AWS-DynamoDB-Table.d.ts +9 -0
- package/lib/AWS-EC2-LaunchTemplate.d.ts +28 -0
- package/lib/AWS-IVS-IngestConfiguration.d.ts +92 -0
- package/lib/AWS-IVS-IngestConfiguration.js +12 -0
- package/lib/AWS-IoTFleetWise-DecoderManifest.d.ts +63 -2
- package/lib/AWS-IoTFleetWise-StateTemplate.d.ts +75 -0
- package/lib/AWS-IoTFleetWise-StateTemplate.js +12 -0
- package/lib/AWS-IoTSiteWise-Portal.d.ts +25 -0
- package/lib/AWS-Lambda-EventSourceMapping.d.ts +19 -0
- package/lib/AWS-M2-Deployment.d.ts +48 -0
- package/lib/AWS-M2-Deployment.js +13 -0
- package/lib/AWS-OpenSearchServerless-SecurityConfig.d.ts +41 -1
- package/lib/AWS-RDS-GlobalCluster.d.ts +11 -0
- package/lib/AWS-ResourceGroups-TagSyncTask.d.ts +78 -0
- package/lib/AWS-ResourceGroups-TagSyncTask.js +13 -0
- package/lib/AWS-S3Express-DirectoryBucket.d.ts +54 -0
- package/lib/AWS-SageMaker-Cluster.d.ts +1 -0
- package/lib/AWS-SageMaker-Domain.d.ts +1 -1
- package/lib/AWS-SageMaker-ModelPackage.d.ts +1 -1
- package/lib/AWS-SageMaker-UserProfile.d.ts +1 -1
- package/lib/AWS-Synthetics-Canary.d.ts +4 -0
- package/lib/AWS-Wisdom-MessageTemplate.d.ts +668 -0
- package/lib/AWS-Wisdom-MessageTemplate.js +12 -0
- package/lib/AWS-Wisdom-MessageTemplateVersion.d.ts +45 -0
- package/lib/AWS-Wisdom-MessageTemplateVersion.js +13 -0
- package/lib/AWS-WorkSpacesWeb-DataProtectionSettings.d.ts +182 -0
- package/lib/AWS-WorkSpacesWeb-DataProtectionSettings.js +12 -0
- package/lib/AWS-WorkSpacesWeb-Portal.d.ts +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,92 @@
|
|
|
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::IVS::IngestConfiguration
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html}
|
|
6
|
+
*/
|
|
7
|
+
export type IVSIngestConfigurationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Ingest Protocol.
|
|
10
|
+
*/
|
|
11
|
+
IngestProtocol?: "RTMP" | "RTMPS";
|
|
12
|
+
/**
|
|
13
|
+
* Whether ingest configuration allows insecure ingest.
|
|
14
|
+
*/
|
|
15
|
+
InsecureIngest?: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* IngestConfiguration
|
|
18
|
+
* @minLength `0`
|
|
19
|
+
* @maxLength `128`
|
|
20
|
+
* @pattern `^[a-zA-Z0-9-_]*$`
|
|
21
|
+
*/
|
|
22
|
+
Name?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Stage ARN. A value other than an empty string indicates that stage is linked to IngestConfiguration. Default: "" (recording is disabled).
|
|
25
|
+
* @minLength `0`
|
|
26
|
+
* @maxLength `128`
|
|
27
|
+
* @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:stage/[a-zA-Z0-9-]+$`
|
|
28
|
+
*/
|
|
29
|
+
StageArn?: string;
|
|
30
|
+
/**
|
|
31
|
+
* A list of key-value pairs that contain metadata for the asset model.
|
|
32
|
+
* @maxLength `50`
|
|
33
|
+
*/
|
|
34
|
+
Tags?: Tag[];
|
|
35
|
+
/**
|
|
36
|
+
* User defined indentifier for participant associated with IngestConfiguration.
|
|
37
|
+
*/
|
|
38
|
+
UserId?: string;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Attribute type definition for `AWS::IVS::IngestConfiguration`.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#aws-resource-ivs-ingestconfiguration-return-values}
|
|
43
|
+
*/
|
|
44
|
+
export type IVSIngestConfigurationAttributes = {
|
|
45
|
+
/**
|
|
46
|
+
* IngestConfiguration ARN is automatically generated on creation and assigned as the unique identifier.
|
|
47
|
+
* @minLength `1`
|
|
48
|
+
* @maxLength `128`
|
|
49
|
+
* @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:ingest-configuration/[a-zA-Z0-9-]+$`
|
|
50
|
+
*/
|
|
51
|
+
Arn: string;
|
|
52
|
+
/**
|
|
53
|
+
* Participant Id is automatically generated on creation and assigned.
|
|
54
|
+
* @minLength `0`
|
|
55
|
+
* @maxLength `64`
|
|
56
|
+
* @pattern `^[a-zA-Z0-9-_]*$`
|
|
57
|
+
*/
|
|
58
|
+
ParticipantId: string;
|
|
59
|
+
/**
|
|
60
|
+
* State of IngestConfiguration which determines whether IngestConfiguration is in use or not.
|
|
61
|
+
*/
|
|
62
|
+
State: "ACTIVE" | "INACTIVE";
|
|
63
|
+
/**
|
|
64
|
+
* Stream-key value.
|
|
65
|
+
*/
|
|
66
|
+
StreamKey: string;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Type definition for `AWS::IVS::IngestConfiguration.Tag`.
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-ingestconfiguration-tag.html}
|
|
71
|
+
*/
|
|
72
|
+
export type Tag = {
|
|
73
|
+
/**
|
|
74
|
+
* @minLength `1`
|
|
75
|
+
* @maxLength `128`
|
|
76
|
+
*/
|
|
77
|
+
Key: string;
|
|
78
|
+
/**
|
|
79
|
+
* @minLength `1`
|
|
80
|
+
* @maxLength `256`
|
|
81
|
+
*/
|
|
82
|
+
Value: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Resource Type definition for AWS::IVS::IngestConfiguration
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html}
|
|
87
|
+
*/
|
|
88
|
+
export declare class IVSIngestConfiguration extends $Resource<"AWS::IVS::IngestConfiguration", IVSIngestConfigurationProperties, IVSIngestConfigurationAttributes> {
|
|
89
|
+
static readonly Type = "AWS::IVS::IngestConfiguration";
|
|
90
|
+
constructor(logicalId: string, properties: IVSIngestConfigurationProperties, options?: $ResourceOptions);
|
|
91
|
+
}
|
|
92
|
+
//# sourceMappingURL=AWS-IVS-IngestConfiguration.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::IVS::IngestConfiguration
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html}
|
|
5
|
+
*/
|
|
6
|
+
export class IVSIngestConfiguration extends $Resource {
|
|
7
|
+
static Type = "AWS::IVS::IngestConfiguration";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, IVSIngestConfiguration.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-IVS-IngestConfiguration.js.map
|
|
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-decodermanifest.html}
|
|
6
6
|
*/
|
|
7
7
|
export type IoTFleetWiseDecoderManifestProperties = {
|
|
8
|
+
DefaultForUnmappedSignals?: DefaultForUnmappedSignalsType;
|
|
8
9
|
/**
|
|
9
10
|
* @minLength `1`
|
|
10
11
|
* @maxLength `2048`
|
|
@@ -22,12 +23,12 @@ export type IoTFleetWiseDecoderManifestProperties = {
|
|
|
22
23
|
* @minLength `1`
|
|
23
24
|
* @maxLength `5000`
|
|
24
25
|
*/
|
|
25
|
-
NetworkInterfaces?: (CanNetworkInterface | ObdNetworkInterface)[];
|
|
26
|
+
NetworkInterfaces?: (CanNetworkInterface | ObdNetworkInterface | CustomDecodingNetworkInterface)[];
|
|
26
27
|
/**
|
|
27
28
|
* @minLength `1`
|
|
28
29
|
* @maxLength `5000`
|
|
29
30
|
*/
|
|
30
|
-
SignalDecoders?: (CanSignalDecoder | ObdSignalDecoder)[];
|
|
31
|
+
SignalDecoders?: (CanSignalDecoder | ObdSignalDecoder | CustomDecodingSignalDecoder)[];
|
|
31
32
|
Status?: ManifestStatus;
|
|
32
33
|
/**
|
|
33
34
|
* @minLength `0`
|
|
@@ -114,6 +115,66 @@ export type CanSignalDecoder = {
|
|
|
114
115
|
InterfaceId: string;
|
|
115
116
|
Type: "CAN_SIGNAL";
|
|
116
117
|
};
|
|
118
|
+
/**
|
|
119
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingInterface`.
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodinginterface.html}
|
|
121
|
+
*/
|
|
122
|
+
export type CustomDecodingInterface = {
|
|
123
|
+
/**
|
|
124
|
+
* @minLength `1`
|
|
125
|
+
* @maxLength `100`
|
|
126
|
+
* @pattern `^[a-zA-Z\d\-_:]+$`
|
|
127
|
+
*/
|
|
128
|
+
Name: string;
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingNetworkInterface`.
|
|
132
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodingnetworkinterface.html}
|
|
133
|
+
*/
|
|
134
|
+
export type CustomDecodingNetworkInterface = {
|
|
135
|
+
CustomDecodingInterface: CustomDecodingInterface;
|
|
136
|
+
/**
|
|
137
|
+
* @minLength `1`
|
|
138
|
+
* @maxLength `50`
|
|
139
|
+
*/
|
|
140
|
+
InterfaceId: string;
|
|
141
|
+
Type: "CUSTOM_DECODING_INTERFACE";
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingSignal`.
|
|
145
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodingsignal.html}
|
|
146
|
+
*/
|
|
147
|
+
export type CustomDecodingSignal = {
|
|
148
|
+
/**
|
|
149
|
+
* @minLength `1`
|
|
150
|
+
* @maxLength `150`
|
|
151
|
+
* @pattern `^(?!.*\.\.)[a-zA-Z0-9_\-#:.]+$`
|
|
152
|
+
*/
|
|
153
|
+
Id: string;
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.CustomDecodingSignalDecoder`.
|
|
157
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-customdecodingsignaldecoder.html}
|
|
158
|
+
*/
|
|
159
|
+
export type CustomDecodingSignalDecoder = {
|
|
160
|
+
CustomDecodingSignal: CustomDecodingSignal;
|
|
161
|
+
/**
|
|
162
|
+
* @minLength `1`
|
|
163
|
+
* @maxLength `150`
|
|
164
|
+
*/
|
|
165
|
+
FullyQualifiedName: string;
|
|
166
|
+
/**
|
|
167
|
+
* @minLength `1`
|
|
168
|
+
* @maxLength `50`
|
|
169
|
+
*/
|
|
170
|
+
InterfaceId: string;
|
|
171
|
+
Type: "CUSTOM_DECODING_SIGNAL";
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.DefaultForUnmappedSignalsType`.
|
|
175
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-defaultforunmappedsignalstype.html}
|
|
176
|
+
*/
|
|
177
|
+
export type DefaultForUnmappedSignalsType = "CUSTOM_DECODING";
|
|
117
178
|
/**
|
|
118
179
|
* Type definition for `AWS::IoTFleetWise::DecoderManifest.ManifestStatus`.
|
|
119
180
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-manifeststatus.html}
|
|
@@ -0,0 +1,75 @@
|
|
|
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::IoTFleetWise::StateTemplate Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html}
|
|
6
|
+
*/
|
|
7
|
+
export type IoTFleetWiseStateTemplateProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `0`
|
|
10
|
+
* @maxLength `5`
|
|
11
|
+
*/
|
|
12
|
+
DataExtraDimensions?: string[];
|
|
13
|
+
/**
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `2048`
|
|
16
|
+
* @pattern `^[^\u0000-\u001F\u007F]+$`
|
|
17
|
+
*/
|
|
18
|
+
Description?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @minLength `0`
|
|
21
|
+
* @maxLength `5`
|
|
22
|
+
*/
|
|
23
|
+
MetadataExtraDimensions?: string[];
|
|
24
|
+
/**
|
|
25
|
+
* @minLength `1`
|
|
26
|
+
* @maxLength `100`
|
|
27
|
+
* @pattern `^[a-zA-Z\d\-_:]+$`
|
|
28
|
+
*/
|
|
29
|
+
Name: string;
|
|
30
|
+
SignalCatalogArn: string;
|
|
31
|
+
/**
|
|
32
|
+
* @minLength `1`
|
|
33
|
+
* @maxLength `500`
|
|
34
|
+
*/
|
|
35
|
+
StateTemplateProperties: string[];
|
|
36
|
+
/**
|
|
37
|
+
* @minLength `0`
|
|
38
|
+
* @maxLength `50`
|
|
39
|
+
*/
|
|
40
|
+
Tags?: Tag[];
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Attribute type definition for `AWS::IoTFleetWise::StateTemplate`.
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html#aws-resource-iotfleetwise-statetemplate-return-values}
|
|
45
|
+
*/
|
|
46
|
+
export type IoTFleetWiseStateTemplateAttributes = {
|
|
47
|
+
Arn: string;
|
|
48
|
+
CreationTime: string;
|
|
49
|
+
LastModificationTime: string;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* Type definition for `AWS::IoTFleetWise::StateTemplate.Tag`.
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-statetemplate-tag.html}
|
|
54
|
+
*/
|
|
55
|
+
export type Tag = {
|
|
56
|
+
/**
|
|
57
|
+
* @minLength `1`
|
|
58
|
+
* @maxLength `128`
|
|
59
|
+
*/
|
|
60
|
+
Key: string;
|
|
61
|
+
/**
|
|
62
|
+
* @minLength `0`
|
|
63
|
+
* @maxLength `256`
|
|
64
|
+
*/
|
|
65
|
+
Value: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Definition of AWS::IoTFleetWise::StateTemplate Resource Type
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html}
|
|
70
|
+
*/
|
|
71
|
+
export declare class IoTFleetWiseStateTemplate extends $Resource<"AWS::IoTFleetWise::StateTemplate", IoTFleetWiseStateTemplateProperties, IoTFleetWiseStateTemplateAttributes> {
|
|
72
|
+
static readonly Type = "AWS::IoTFleetWise::StateTemplate";
|
|
73
|
+
constructor(logicalId: string, properties: IoTFleetWiseStateTemplateProperties, options?: $ResourceOptions);
|
|
74
|
+
}
|
|
75
|
+
//# sourceMappingURL=AWS-IoTFleetWise-StateTemplate.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::IoTFleetWise::StateTemplate Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-statetemplate.html}
|
|
5
|
+
*/
|
|
6
|
+
export class IoTFleetWiseStateTemplate extends $Resource {
|
|
7
|
+
static Type = "AWS::IoTFleetWise::StateTemplate";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, IoTFleetWiseStateTemplate.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-IoTFleetWise-StateTemplate.js.map
|
|
@@ -38,6 +38,14 @@ export type IoTSiteWisePortalProperties = {
|
|
|
38
38
|
* A friendly name for the portal.
|
|
39
39
|
*/
|
|
40
40
|
PortalName: string;
|
|
41
|
+
/**
|
|
42
|
+
* The type of portal
|
|
43
|
+
*/
|
|
44
|
+
PortalType?: "SITEWISE_PORTAL_V1" | "SITEWISE_PORTAL_V2";
|
|
45
|
+
/**
|
|
46
|
+
* Map to associate detail of configuration related with a PortalType.
|
|
47
|
+
*/
|
|
48
|
+
PortalTypeConfiguration?: PortalTypeConfiguration;
|
|
41
49
|
/**
|
|
42
50
|
* The ARN of a service role that allows the portal's users to access your AWS IoT SiteWise resources on your behalf.
|
|
43
51
|
*/
|
|
@@ -69,6 +77,23 @@ export type IoTSiteWisePortalAttributes = {
|
|
|
69
77
|
*/
|
|
70
78
|
PortalStartUrl: string;
|
|
71
79
|
};
|
|
80
|
+
/**
|
|
81
|
+
* Type definition for `AWS::IoTSiteWise::Portal.PortalTypeConfiguration`.
|
|
82
|
+
* Map to associate detail of configuration related with a PortalType.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-portal-portaltypeconfiguration.html}
|
|
84
|
+
*/
|
|
85
|
+
export type PortalTypeConfiguration = Record<string, PortalTypeEntry>;
|
|
86
|
+
/**
|
|
87
|
+
* Type definition for `AWS::IoTSiteWise::Portal.PortalTypeEntry`.
|
|
88
|
+
* Container associated a certain PortalType.
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-portal-portaltypeentry.html}
|
|
90
|
+
*/
|
|
91
|
+
export type PortalTypeEntry = {
|
|
92
|
+
/**
|
|
93
|
+
* List of enabled Tools for a certain portal.
|
|
94
|
+
*/
|
|
95
|
+
PortalTools: string[];
|
|
96
|
+
};
|
|
72
97
|
/**
|
|
73
98
|
* Type definition for `AWS::IoTSiteWise::Portal.Tag`.
|
|
74
99
|
* To add or update tag, provide both key and value. To delete tag, provide only tag key to be deleted.
|
|
@@ -119,6 +119,7 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
119
119
|
* @max `10`
|
|
120
120
|
*/
|
|
121
121
|
ParallelizationFactor?: number;
|
|
122
|
+
ProvisionedPollerConfig?: ProvisionedPollerConfig;
|
|
122
123
|
/**
|
|
123
124
|
* (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.
|
|
124
125
|
* @minLength `1`
|
|
@@ -310,6 +311,24 @@ export type OnFailure = {
|
|
|
310
311
|
*/
|
|
311
312
|
Destination?: string;
|
|
312
313
|
};
|
|
314
|
+
/**
|
|
315
|
+
* Type definition for `AWS::Lambda::EventSourceMapping.ProvisionedPollerConfig`.
|
|
316
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-provisionedpollerconfig.html}
|
|
317
|
+
*/
|
|
318
|
+
export type ProvisionedPollerConfig = {
|
|
319
|
+
/**
|
|
320
|
+
* The maximum number of event pollers this event source can scale up to.
|
|
321
|
+
* @min `1`
|
|
322
|
+
* @max `2000`
|
|
323
|
+
*/
|
|
324
|
+
MaximumPollers?: number;
|
|
325
|
+
/**
|
|
326
|
+
* The minimum number of event pollers this event source can scale down to.
|
|
327
|
+
* @min `1`
|
|
328
|
+
* @max `200`
|
|
329
|
+
*/
|
|
330
|
+
MinimumPollers?: number;
|
|
331
|
+
};
|
|
313
332
|
/**
|
|
314
333
|
* Type definition for `AWS::Lambda::EventSourceMapping.ScalingConfig`.
|
|
315
334
|
* (Amazon SQS only) The scaling configuration for the event source. To remove the configuration, pass an empty value.
|
|
@@ -0,0 +1,48 @@
|
|
|
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::M2::Deployment`.
|
|
5
|
+
* Represents a deployment resource of an AWS Mainframe Modernization (M2) application to a specified environment
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html}
|
|
7
|
+
*/
|
|
8
|
+
export type M2DeploymentProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The application ID.
|
|
11
|
+
* @pattern `^\S{1,80}$`
|
|
12
|
+
*/
|
|
13
|
+
ApplicationId: string;
|
|
14
|
+
/**
|
|
15
|
+
* The version number of the application to deploy
|
|
16
|
+
*/
|
|
17
|
+
ApplicationVersion: number;
|
|
18
|
+
/**
|
|
19
|
+
* The environment ID.
|
|
20
|
+
* @pattern `^\S{1,80}$`
|
|
21
|
+
*/
|
|
22
|
+
EnvironmentId: string;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Attribute type definition for `AWS::M2::Deployment`.
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html#aws-resource-m2-deployment-return-values}
|
|
27
|
+
*/
|
|
28
|
+
export type M2DeploymentAttributes = {
|
|
29
|
+
/**
|
|
30
|
+
* The deployment ID.
|
|
31
|
+
* @pattern `^\S{1,80}$`
|
|
32
|
+
*/
|
|
33
|
+
DeploymentId: string;
|
|
34
|
+
/**
|
|
35
|
+
* The status of the deployment.
|
|
36
|
+
*/
|
|
37
|
+
Status: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Resource type definition for `AWS::M2::Deployment`.
|
|
41
|
+
* Represents a deployment resource of an AWS Mainframe Modernization (M2) application to a specified environment
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html}
|
|
43
|
+
*/
|
|
44
|
+
export declare class M2Deployment extends $Resource<"AWS::M2::Deployment", M2DeploymentProperties, M2DeploymentAttributes> {
|
|
45
|
+
static readonly Type = "AWS::M2::Deployment";
|
|
46
|
+
constructor(logicalId: string, properties: M2DeploymentProperties, options?: $ResourceOptions);
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=AWS-M2-Deployment.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::M2::Deployment`.
|
|
4
|
+
* Represents a deployment resource of an AWS Mainframe Modernization (M2) application to a specified environment
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html}
|
|
6
|
+
*/
|
|
7
|
+
export class M2Deployment extends $Resource {
|
|
8
|
+
static Type = "AWS::M2::Deployment";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, M2Deployment.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-M2-Deployment.js.map
|
|
@@ -12,6 +12,10 @@ export type OpenSearchServerlessSecurityConfigProperties = {
|
|
|
12
12
|
* @maxLength `1000`
|
|
13
13
|
*/
|
|
14
14
|
Description?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
|
|
17
|
+
*/
|
|
18
|
+
IamIdentityCenterOptions?: IamIdentityCenterConfigOptions;
|
|
15
19
|
/**
|
|
16
20
|
* The friendly name of the security config
|
|
17
21
|
* @minLength `3`
|
|
@@ -33,6 +37,23 @@ export type OpenSearchServerlessSecurityConfigProperties = {
|
|
|
33
37
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-securityconfig.html#aws-resource-opensearchserverless-securityconfig-return-values}
|
|
34
38
|
*/
|
|
35
39
|
export type OpenSearchServerlessSecurityConfigAttributes = {
|
|
40
|
+
/**
|
|
41
|
+
* Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
|
|
42
|
+
*/
|
|
43
|
+
IamIdentityCenterOptions: {
|
|
44
|
+
/**
|
|
45
|
+
* The ARN of the IAM Identity Center application used to integrate with OpenSearch Serverless
|
|
46
|
+
*/
|
|
47
|
+
ApplicationArn: string;
|
|
48
|
+
/**
|
|
49
|
+
* The description of the IAM Identity Center application used to integrate with OpenSearch Serverless
|
|
50
|
+
*/
|
|
51
|
+
ApplicationDescription: string;
|
|
52
|
+
/**
|
|
53
|
+
* The name of the IAM Identity Center application used to integrate with OpenSearch Serverless
|
|
54
|
+
*/
|
|
55
|
+
ApplicationName: string;
|
|
56
|
+
};
|
|
36
57
|
/**
|
|
37
58
|
* The identifier of the security config
|
|
38
59
|
* @minLength `1`
|
|
@@ -40,6 +61,25 @@ export type OpenSearchServerlessSecurityConfigAttributes = {
|
|
|
40
61
|
*/
|
|
41
62
|
Id: string;
|
|
42
63
|
};
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::OpenSearchServerless::SecurityConfig.IamIdentityCenterConfigOptions`.
|
|
66
|
+
* Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-iamidentitycenterconfigoptions.html}
|
|
68
|
+
*/
|
|
69
|
+
export type IamIdentityCenterConfigOptions = {
|
|
70
|
+
/**
|
|
71
|
+
* Group attribute for this IAM Identity Center integration
|
|
72
|
+
*/
|
|
73
|
+
GroupAttribute?: string;
|
|
74
|
+
/**
|
|
75
|
+
* The ARN of the IAM Identity Center instance used to integrate with OpenSearch Serverless
|
|
76
|
+
*/
|
|
77
|
+
InstanceArn: string;
|
|
78
|
+
/**
|
|
79
|
+
* User attribute for this IAM Identity Center integration
|
|
80
|
+
*/
|
|
81
|
+
UserAttribute?: string;
|
|
82
|
+
};
|
|
43
83
|
/**
|
|
44
84
|
* Type definition for `AWS::OpenSearchServerless::SecurityConfig.SamlConfigOptions`.
|
|
45
85
|
* Describes saml options in form of key value map
|
|
@@ -77,7 +117,7 @@ export type SamlConfigOptions = {
|
|
|
77
117
|
* Config type for security config
|
|
78
118
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-securityconfigtype.html}
|
|
79
119
|
*/
|
|
80
|
-
export type SecurityConfigType = "saml";
|
|
120
|
+
export type SecurityConfigType = "saml" | "iamidentitycenter";
|
|
81
121
|
/**
|
|
82
122
|
* Resource type definition for `AWS::OpenSearchServerless::SecurityConfig`.
|
|
83
123
|
* Amazon OpenSearchServerless security config resource
|
|
@@ -29,6 +29,7 @@ export type RDSGlobalClusterProperties = {
|
|
|
29
29
|
* @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
|
|
30
30
|
*/
|
|
31
31
|
GlobalClusterIdentifier?: string;
|
|
32
|
+
GlobalEndpoint?: GlobalEndpoint;
|
|
32
33
|
/**
|
|
33
34
|
* The Amazon Resource Name (ARN) to use as the primary cluster of the global database. This parameter is optional. This parameter is stored as a lowercase string.
|
|
34
35
|
*/
|
|
@@ -44,6 +45,16 @@ export type RDSGlobalClusterProperties = {
|
|
|
44
45
|
*/
|
|
45
46
|
Tags?: Tag[];
|
|
46
47
|
};
|
|
48
|
+
/**
|
|
49
|
+
* Type definition for `AWS::RDS::GlobalCluster.GlobalEndpoint`.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-globalcluster-globalendpoint.html}
|
|
51
|
+
*/
|
|
52
|
+
export type GlobalEndpoint = {
|
|
53
|
+
/**
|
|
54
|
+
* The writer endpoint for the global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
|
|
55
|
+
*/
|
|
56
|
+
Address?: string;
|
|
57
|
+
};
|
|
47
58
|
/**
|
|
48
59
|
* Type definition for `AWS::RDS::GlobalCluster.Tag`.
|
|
49
60
|
* A key-value pair to associate with a resource.
|
|
@@ -0,0 +1,78 @@
|
|
|
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::ResourceGroups::TagSyncTask`.
|
|
5
|
+
* Schema for ResourceGroups::TagSyncTask
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html}
|
|
7
|
+
*/
|
|
8
|
+
export type ResourceGroupsTagSyncTaskProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The Amazon resource name (ARN) or name of the application group for which you want to create a tag-sync task
|
|
11
|
+
* @minLength `12`
|
|
12
|
+
* @maxLength `1600`
|
|
13
|
+
* @pattern `([a-zA-Z0-9_\\.-]{1,150}/[a-z0-9]{26})|(arn:aws(-[a-z]+)*:resource-groups(-(test|beta|gamma))?:[a-z]{2}(-[a-z]+)+-\d{1}:[0-9]{12}:group/[a-zA-Z0-9_\\.-]{1,150}/[a-z0-9]{26})`
|
|
14
|
+
*/
|
|
15
|
+
Group: string;
|
|
16
|
+
/**
|
|
17
|
+
* The Amazon resource name (ARN) of the role assumed by the service to tag and untag resources on your behalf.
|
|
18
|
+
* @minLength `20`
|
|
19
|
+
* @maxLength `2048`
|
|
20
|
+
* @pattern `arn:(aws[a-zA-Z-]*)?:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
|
|
21
|
+
*/
|
|
22
|
+
RoleArn: string;
|
|
23
|
+
/**
|
|
24
|
+
* The tag key. Resources tagged with this tag key-value pair will be added to the application. If a resource with this tag is later untagged, the tag-sync task removes the resource from the application.
|
|
25
|
+
* @minLength `1`
|
|
26
|
+
* @maxLength `128`
|
|
27
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
28
|
+
*/
|
|
29
|
+
TagKey: string;
|
|
30
|
+
/**
|
|
31
|
+
* The tag value. Resources tagged with this tag key-value pair will be added to the application. If a resource with this tag is later untagged, the tag-sync task removes the resource from the application.
|
|
32
|
+
* @minLength `0`
|
|
33
|
+
* @maxLength `256`
|
|
34
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
35
|
+
*/
|
|
36
|
+
TagValue: string;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Attribute type definition for `AWS::ResourceGroups::TagSyncTask`.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html#aws-resource-resourcegroups-tagsynctask-return-values}
|
|
41
|
+
*/
|
|
42
|
+
export type ResourceGroupsTagSyncTaskAttributes = {
|
|
43
|
+
/**
|
|
44
|
+
* The Amazon resource name (ARN) of the ApplicationGroup for which the TagSyncTask is created
|
|
45
|
+
* @minLength `12`
|
|
46
|
+
* @maxLength `1600`
|
|
47
|
+
* @pattern `arn:aws(-[a-z]+)*:resource-groups(-(test|beta|gamma))?:[a-z]{2}(-[a-z]+)+-\d{1}:[0-9]{12}:group/[a-zA-Z0-9_\.-]{1,150}/[a-z0-9]{26}`
|
|
48
|
+
*/
|
|
49
|
+
GroupArn: string;
|
|
50
|
+
/**
|
|
51
|
+
* The Name of the application group for which the TagSyncTask is created
|
|
52
|
+
* @minLength `1`
|
|
53
|
+
* @maxLength `300`
|
|
54
|
+
* @pattern `[a-zA-Z0-9_\.-]{1,150}/[a-z0-9]{26}`
|
|
55
|
+
*/
|
|
56
|
+
GroupName: string;
|
|
57
|
+
/**
|
|
58
|
+
* The status of the TagSyncTask
|
|
59
|
+
*/
|
|
60
|
+
Status: "ACTIVE" | "ERROR";
|
|
61
|
+
/**
|
|
62
|
+
* The ARN of the TagSyncTask resource
|
|
63
|
+
* @minLength `12`
|
|
64
|
+
* @maxLength `1600`
|
|
65
|
+
* @pattern `arn:aws(-[a-z]+)*:resource-groups(-(test|beta|gamma))?:[a-z]{2}(-[a-z]+)+-\d{1}:[0-9]{12}:group/[a-zA-Z0-9_\.-]{1,150}/[a-z0-9]{26}/tag-sync-task/[a-z0-9]{26}`
|
|
66
|
+
*/
|
|
67
|
+
TaskArn: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Resource type definition for `AWS::ResourceGroups::TagSyncTask`.
|
|
71
|
+
* Schema for ResourceGroups::TagSyncTask
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html}
|
|
73
|
+
*/
|
|
74
|
+
export declare class ResourceGroupsTagSyncTask extends $Resource<"AWS::ResourceGroups::TagSyncTask", ResourceGroupsTagSyncTaskProperties, ResourceGroupsTagSyncTaskAttributes> {
|
|
75
|
+
static readonly Type = "AWS::ResourceGroups::TagSyncTask";
|
|
76
|
+
constructor(logicalId: string, properties: ResourceGroupsTagSyncTaskProperties, options?: $ResourceOptions);
|
|
77
|
+
}
|
|
78
|
+
//# sourceMappingURL=AWS-ResourceGroups-TagSyncTask.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::ResourceGroups::TagSyncTask`.
|
|
4
|
+
* Schema for ResourceGroups::TagSyncTask
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resourcegroups-tagsynctask.html}
|
|
6
|
+
*/
|
|
7
|
+
export class ResourceGroupsTagSyncTask extends $Resource {
|
|
8
|
+
static Type = "AWS::ResourceGroups::TagSyncTask";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, ResourceGroupsTagSyncTask.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-ResourceGroups-TagSyncTask.js.map
|