@awboost/cfn-resource-types 0.1.24 → 0.1.25

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.
@@ -5,24 +5,18 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html}
6
6
  */
7
7
  export type GuardDutyMemberProperties = {
8
- DetectorId: string;
8
+ DetectorId?: string;
9
9
  DisableEmailNotification?: boolean;
10
10
  Email: string;
11
+ MemberId?: string;
11
12
  Message?: string;
12
13
  Status?: string;
13
14
  };
14
- /**
15
- * Attribute type definition for `AWS::GuardDuty::Member`.
16
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html#aws-resource-guardduty-member-return-values}
17
- */
18
- export type GuardDutyMemberAttributes = {
19
- MemberId: string;
20
- };
21
15
  /**
22
16
  * Resource Type definition for AWS::GuardDuty::Member
23
17
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-member.html}
24
18
  */
25
- export declare class GuardDutyMember extends $Resource<"AWS::GuardDuty::Member", GuardDutyMemberProperties, GuardDutyMemberAttributes> {
19
+ export declare class GuardDutyMember extends $Resource<"AWS::GuardDuty::Member", GuardDutyMemberProperties, Record<string, never>> {
26
20
  static readonly Type = "AWS::GuardDuty::Member";
27
21
  constructor(logicalId: string, properties: GuardDutyMemberProperties, options?: $ResourceOptions);
28
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },