@awboost/cfn-resource-types 0.1.41 → 0.1.43
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-AppIntegrations-Application.d.ts +107 -0
- package/lib/AWS-AppIntegrations-Application.js +13 -0
- package/lib/AWS-AutoScaling-AutoScalingGroup.d.ts +533 -6
- package/lib/AWS-AutoScaling-AutoScalingGroup.js +3 -1
- package/lib/AWS-CloudFront-Distribution.d.ts +56 -24
- package/lib/AWS-CodeArtifact-PackageGroup.d.ts +122 -0
- package/lib/AWS-CodeArtifact-PackageGroup.js +13 -0
- package/lib/AWS-Connect-SecurityProfile.d.ts +44 -0
- package/lib/AWS-DynamoDB-GlobalTable.d.ts +16 -0
- package/lib/AWS-DynamoDB-Table.d.ts +9 -0
- package/lib/AWS-EC2-Instance.d.ts +289 -43
- package/lib/AWS-EC2-InternetGateway.d.ts +7 -5
- package/lib/AWS-EC2-InternetGateway.js +2 -1
- package/lib/AWS-EFS-FileSystem.d.ts +1 -1
- package/lib/AWS-ElasticLoadBalancingV2-ListenerRule.d.ts +264 -2
- package/lib/AWS-ElasticLoadBalancingV2-ListenerRule.js +3 -1
- package/lib/AWS-GameLift-GameServerGroup.d.ts +8 -8
- package/lib/AWS-Glue-Crawler.d.ts +9 -0
- package/lib/AWS-IoTSiteWise-Gateway.d.ts +15 -0
- package/lib/AWS-KafkaConnect-Connector.d.ts +19 -0
- package/lib/AWS-Kendra-Faq.d.ts +7 -0
- package/lib/AWS-ResilienceHub-ResiliencyPolicy.d.ts +18 -1
- package/lib/AWS-SSM-Parameter.d.ts +2 -3
- package/lib/AWS-SecurityHub-DelegatedAdmin.d.ts +37 -0
- package/lib/AWS-SecurityHub-DelegatedAdmin.js +12 -0
- package/lib/AWS-SecurityHub-Insight.d.ts +671 -0
- package/lib/AWS-SecurityHub-Insight.js +12 -0
- package/lib/AWS-SecurityHub-ProductSubscription.d.ts +33 -0
- package/lib/AWS-SecurityHub-ProductSubscription.js +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,107 @@
|
|
|
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::AppIntegrations::Application`.
|
|
5
|
+
* Resource Type definition for AWS:AppIntegrations::Application
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-application.html}
|
|
7
|
+
*/
|
|
8
|
+
export type AppIntegrationsApplicationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Application source config
|
|
11
|
+
*/
|
|
12
|
+
ApplicationSourceConfig: {
|
|
13
|
+
ExternalUrlConfig: ExternalUrlConfig;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* The application description.
|
|
17
|
+
* @minLength `1`
|
|
18
|
+
* @maxLength `1000`
|
|
19
|
+
*/
|
|
20
|
+
Description: string;
|
|
21
|
+
/**
|
|
22
|
+
* The name of the application.
|
|
23
|
+
* @minLength `1`
|
|
24
|
+
* @maxLength `255`
|
|
25
|
+
* @pattern `^[a-zA-Z0-9/\._\-]+$`
|
|
26
|
+
*/
|
|
27
|
+
Name: string;
|
|
28
|
+
/**
|
|
29
|
+
* The namespace of the application.
|
|
30
|
+
* @minLength `1`
|
|
31
|
+
* @maxLength `255`
|
|
32
|
+
* @pattern `^[a-zA-Z0-9/\._\-]+$`
|
|
33
|
+
*/
|
|
34
|
+
Namespace?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The tags (keys and values) associated with the application.
|
|
37
|
+
* @minLength `0`
|
|
38
|
+
* @maxLength `200`
|
|
39
|
+
*/
|
|
40
|
+
Tags?: Tag[];
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Attribute type definition for `AWS::AppIntegrations::Application`.
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-application.html#aws-resource-appintegrations-application-return-values}
|
|
45
|
+
*/
|
|
46
|
+
export type AppIntegrationsApplicationAttributes = {
|
|
47
|
+
/**
|
|
48
|
+
* The Amazon Resource Name (ARN) of the application.
|
|
49
|
+
* @minLength `1`
|
|
50
|
+
* @maxLength `2048`
|
|
51
|
+
*/
|
|
52
|
+
ApplicationArn: string;
|
|
53
|
+
/**
|
|
54
|
+
* The id of the application.
|
|
55
|
+
* @minLength `1`
|
|
56
|
+
* @maxLength `255`
|
|
57
|
+
* @pattern `^[a-zA-Z0-9/\._\-]+$`
|
|
58
|
+
*/
|
|
59
|
+
Id: string;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* Type definition for `AWS::AppIntegrations::Application.ExternalUrlConfig`.
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-externalurlconfig.html}
|
|
64
|
+
*/
|
|
65
|
+
export type ExternalUrlConfig = {
|
|
66
|
+
/**
|
|
67
|
+
* @minLength `1`
|
|
68
|
+
* @maxLength `1000`
|
|
69
|
+
* @pattern `^\w+\:\/\/.*$`
|
|
70
|
+
*/
|
|
71
|
+
AccessUrl: string;
|
|
72
|
+
/**
|
|
73
|
+
* @minLength `0`
|
|
74
|
+
* @maxLength `50`
|
|
75
|
+
*/
|
|
76
|
+
ApprovedOrigins: string[];
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* Type definition for `AWS::AppIntegrations::Application.Tag`.
|
|
80
|
+
* A label for tagging Application resources
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-application-tag.html}
|
|
82
|
+
*/
|
|
83
|
+
export type Tag = {
|
|
84
|
+
/**
|
|
85
|
+
* A key to identify the tag.
|
|
86
|
+
* @minLength `1`
|
|
87
|
+
* @maxLength `128`
|
|
88
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
89
|
+
*/
|
|
90
|
+
Key: string;
|
|
91
|
+
/**
|
|
92
|
+
* Corresponding tag value for the key.
|
|
93
|
+
* @minLength `0`
|
|
94
|
+
* @maxLength `256`
|
|
95
|
+
*/
|
|
96
|
+
Value: string;
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* Resource type definition for `AWS::AppIntegrations::Application`.
|
|
100
|
+
* Resource Type definition for AWS:AppIntegrations::Application
|
|
101
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-application.html}
|
|
102
|
+
*/
|
|
103
|
+
export declare class AppIntegrationsApplication extends $Resource<"AWS::AppIntegrations::Application", AppIntegrationsApplicationProperties, AppIntegrationsApplicationAttributes> {
|
|
104
|
+
static readonly Type = "AWS::AppIntegrations::Application";
|
|
105
|
+
constructor(logicalId: string, properties: AppIntegrationsApplicationProperties, options?: $ResourceOptions);
|
|
106
|
+
}
|
|
107
|
+
//# sourceMappingURL=AWS-AppIntegrations-Application.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::AppIntegrations::Application`.
|
|
4
|
+
* Resource Type definition for AWS:AppIntegrations::Application
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-application.html}
|
|
6
|
+
*/
|
|
7
|
+
export class AppIntegrationsApplication extends $Resource {
|
|
8
|
+
static Type = "AWS::AppIntegrations::Application";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, AppIntegrationsApplication.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-AppIntegrations-Application.js.map
|