@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,37 @@
|
|
|
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::DelegatedAdmin resource represents the AWS Security Hub delegated admin account in your organization. One delegated admin resource is allowed to create for the organization in each region in which you configure the AdminAccountId.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-delegatedadmin.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SecurityHubDelegatedAdminProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The Amazon Web Services account identifier of the account to designate as the Security Hub administrator account
|
|
10
|
+
* @pattern `^[0-9]{12}$`
|
|
11
|
+
*/
|
|
12
|
+
AdminAccountId: string;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Attribute type definition for `AWS::SecurityHub::DelegatedAdmin`.
|
|
16
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-delegatedadmin.html#aws-resource-securityhub-delegatedadmin-return-values}
|
|
17
|
+
*/
|
|
18
|
+
export type SecurityHubDelegatedAdminAttributes = {
|
|
19
|
+
/**
|
|
20
|
+
* The identifier of the DelegatedAdmin being created and assigned as the unique identifier
|
|
21
|
+
* @pattern `^[0-9]{12}/[a-zA-Z0-9-]{1,32}$`
|
|
22
|
+
*/
|
|
23
|
+
DelegatedAdminIdentifier: string;
|
|
24
|
+
/**
|
|
25
|
+
* The current status of the Security Hub administrator account. Indicates whether the account is currently enabled as a Security Hub administrator
|
|
26
|
+
*/
|
|
27
|
+
Status: "ENABLED" | "DISABLE_IN_PROGRESS";
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* The AWS::SecurityHub::DelegatedAdmin resource represents the AWS Security Hub delegated admin account in your organization. One delegated admin resource is allowed to create for the organization in each region in which you configure the AdminAccountId.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-delegatedadmin.html}
|
|
32
|
+
*/
|
|
33
|
+
export declare class SecurityHubDelegatedAdmin extends $Resource<"AWS::SecurityHub::DelegatedAdmin", SecurityHubDelegatedAdminProperties, SecurityHubDelegatedAdminAttributes> {
|
|
34
|
+
static readonly Type = "AWS::SecurityHub::DelegatedAdmin";
|
|
35
|
+
constructor(logicalId: string, properties: SecurityHubDelegatedAdminProperties, options?: $ResourceOptions);
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=AWS-SecurityHub-DelegatedAdmin.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* The AWS::SecurityHub::DelegatedAdmin resource represents the AWS Security Hub delegated admin account in your organization. One delegated admin resource is allowed to create for the organization in each region in which you configure the AdminAccountId.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-delegatedadmin.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SecurityHubDelegatedAdmin extends $Resource {
|
|
7
|
+
static Type = "AWS::SecurityHub::DelegatedAdmin";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SecurityHubDelegatedAdmin.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SecurityHub-DelegatedAdmin.js.map
|