@awboost/cfn-resource-types 0.1.42 → 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-CodeArtifact-PackageGroup.d.ts +122 -0
- package/lib/AWS-CodeArtifact-PackageGroup.js +13 -0
- package/lib/AWS-Connect-SecurityProfile.d.ts +23 -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-EFS-FileSystem.d.ts +1 -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-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,33 @@
|
|
|
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
|
+
* The AWS::SecurityHub::ProductSubscription resource represents a subscription to a service that is allowed to generate findings for your Security Hub account. One product subscription resource is created for each product enabled.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-productsubscription.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SecurityHubProductSubscriptionProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The generic ARN of the product being subscribed to
|
|
10
|
+
* @pattern `arn:aws\S*:securityhub:\S*`
|
|
11
|
+
*/
|
|
12
|
+
ProductArn: string;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Attribute type definition for `AWS::SecurityHub::ProductSubscription`.
|
|
16
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-productsubscription.html#aws-resource-securityhub-productsubscription-return-values}
|
|
17
|
+
*/
|
|
18
|
+
export type SecurityHubProductSubscriptionAttributes = {
|
|
19
|
+
/**
|
|
20
|
+
* The ARN of the product subscription for the account
|
|
21
|
+
* @pattern `arn:aws\S*:securityhub:\S*`
|
|
22
|
+
*/
|
|
23
|
+
ProductSubscriptionArn: string;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* The AWS::SecurityHub::ProductSubscription resource represents a subscription to a service that is allowed to generate findings for your Security Hub account. One product subscription resource is created for each product enabled.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-productsubscription.html}
|
|
28
|
+
*/
|
|
29
|
+
export declare class SecurityHubProductSubscription extends $Resource<"AWS::SecurityHub::ProductSubscription", SecurityHubProductSubscriptionProperties, SecurityHubProductSubscriptionAttributes> {
|
|
30
|
+
static readonly Type = "AWS::SecurityHub::ProductSubscription";
|
|
31
|
+
constructor(logicalId: string, properties: SecurityHubProductSubscriptionProperties, options?: $ResourceOptions);
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=AWS-SecurityHub-ProductSubscription.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* The AWS::SecurityHub::ProductSubscription resource represents a subscription to a service that is allowed to generate findings for your Security Hub account. One product subscription resource is created for each product enabled.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-productsubscription.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SecurityHubProductSubscription extends $Resource {
|
|
7
|
+
static Type = "AWS::SecurityHub::ProductSubscription";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SecurityHubProductSubscription.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SecurityHub-ProductSubscription.js.map
|