@awboost/cfn-resource-types 0.1.255 → 0.1.256

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.
@@ -0,0 +1,55 @@
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::Deadline::Limit Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html}
6
+ */
7
+ export type DeadlineLimitProperties = {
8
+ /**
9
+ * @maxLength `1024`
10
+ */
11
+ AmountRequirementName: string;
12
+ /**
13
+ * @minLength `0`
14
+ * @maxLength `100`
15
+ */
16
+ Description?: string;
17
+ /**
18
+ * @minLength `1`
19
+ * @maxLength `100`
20
+ */
21
+ DisplayName: string;
22
+ /**
23
+ * @pattern `^farm-[0-9a-f]{32}$`
24
+ */
25
+ FarmId: string;
26
+ /**
27
+ * @min `-1`
28
+ * @max `2147483647`
29
+ */
30
+ MaxCount: number;
31
+ };
32
+ /**
33
+ * Attribute type definition for `AWS::Deadline::Limit`.
34
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html#aws-resource-deadline-limit-return-values}
35
+ */
36
+ export type DeadlineLimitAttributes = {
37
+ /**
38
+ * @min `0`
39
+ * @max `2147483647`
40
+ */
41
+ CurrentCount: number;
42
+ /**
43
+ * @pattern `^limit-[0-9a-f]{32}$`
44
+ */
45
+ LimitId: string;
46
+ };
47
+ /**
48
+ * Definition of AWS::Deadline::Limit Resource Type
49
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html}
50
+ */
51
+ export declare class DeadlineLimit extends $Resource<"AWS::Deadline::Limit", DeadlineLimitProperties, DeadlineLimitAttributes> {
52
+ static readonly Type = "AWS::Deadline::Limit";
53
+ constructor(logicalId: string, properties: DeadlineLimitProperties, options?: $ResourceOptions);
54
+ }
55
+ //# sourceMappingURL=AWS-Deadline-Limit.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Deadline::Limit Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-limit.html}
5
+ */
6
+ export class DeadlineLimit extends $Resource {
7
+ static Type = "AWS::Deadline::Limit";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DeadlineLimit.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Deadline-Limit.js.map
@@ -0,0 +1,29 @@
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::Deadline::QueueLimitAssociation Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuelimitassociation.html}
6
+ */
7
+ export type DeadlineQueueLimitAssociationProperties = {
8
+ /**
9
+ * @pattern `^farm-[0-9a-f]{32}$`
10
+ */
11
+ FarmId: string;
12
+ /**
13
+ * @pattern `^limit-[0-9a-f]{32}$`
14
+ */
15
+ LimitId: string;
16
+ /**
17
+ * @pattern `^queue-[0-9a-f]{32}$`
18
+ */
19
+ QueueId: string;
20
+ };
21
+ /**
22
+ * Definition of AWS::Deadline::QueueLimitAssociation Resource Type
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuelimitassociation.html}
24
+ */
25
+ export declare class DeadlineQueueLimitAssociation extends $Resource<"AWS::Deadline::QueueLimitAssociation", DeadlineQueueLimitAssociationProperties, Record<string, never>> {
26
+ static readonly Type = "AWS::Deadline::QueueLimitAssociation";
27
+ constructor(logicalId: string, properties: DeadlineQueueLimitAssociationProperties, options?: $ResourceOptions);
28
+ }
29
+ //# sourceMappingURL=AWS-Deadline-QueueLimitAssociation.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Deadline::QueueLimitAssociation Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-queuelimitassociation.html}
5
+ */
6
+ export class DeadlineQueueLimitAssociation extends $Resource {
7
+ static Type = "AWS::Deadline::QueueLimitAssociation";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DeadlineQueueLimitAssociation.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Deadline-QueueLimitAssociation.js.map
@@ -31,23 +31,17 @@ export type SSMResourceDataSyncProperties = {
31
31
  * @maxLength `1024`
32
32
  */
33
33
  SyncFormat?: string;
34
- SyncSource?: SyncSource;
35
34
  /**
36
35
  * @minLength `1`
37
36
  * @maxLength `64`
38
37
  */
39
- SyncType?: string;
40
- };
41
- /**
42
- * Attribute type definition for `AWS::SSM::ResourceDataSync`.
43
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#aws-resource-ssm-resourcedatasync-return-values}
44
- */
45
- export type SSMResourceDataSyncAttributes = {
38
+ SyncName: string;
39
+ SyncSource?: SyncSource;
46
40
  /**
47
41
  * @minLength `1`
48
42
  * @maxLength `64`
49
43
  */
50
- SyncName: string;
44
+ SyncType?: string;
51
45
  };
52
46
  /**
53
47
  * Type definition for `AWS::SSM::ResourceDataSync.AwsOrganizationsSource`.
@@ -110,7 +104,7 @@ export type SyncSource = {
110
104
  * Resource Type definition for AWS::SSM::ResourceDataSync
111
105
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html}
112
106
  */
113
- export declare class SSMResourceDataSync extends $Resource<"AWS::SSM::ResourceDataSync", SSMResourceDataSyncProperties, SSMResourceDataSyncAttributes> {
107
+ export declare class SSMResourceDataSync extends $Resource<"AWS::SSM::ResourceDataSync", SSMResourceDataSyncProperties, Record<string, never>> {
114
108
  static readonly Type = "AWS::SSM::ResourceDataSync";
115
109
  constructor(logicalId: string, properties: SSMResourceDataSyncProperties, options?: $ResourceOptions);
116
110
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.255",
3
+ "version": "0.1.256",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },