@awboost/cfn-resource-types 0.1.493 → 0.1.494

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.
@@ -1,36 +1,13 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource schema for AWS::IoTFleetHub::Application
4
+ * Resource Type definition for AWS::IoTFleetHub::Application
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html}
6
6
  */
7
7
  export type IoTFleetHubApplicationProperties = {
8
- /**
9
- * Application Description, should be between 1 and 2048 characters.
10
- * @minLength `1`
11
- * @maxLength `2048`
12
- * @pattern `^[ -~]*$`
13
- */
14
8
  ApplicationDescription?: string;
15
- /**
16
- * Application Name, should be between 1 and 256 characters.
17
- * @minLength `1`
18
- * @maxLength `256`
19
- * @pattern `^[ -~]*$`
20
- */
21
9
  ApplicationName: string;
22
- /**
23
- * The ARN of the role that the web application assumes when it interacts with AWS IoT Core. For more info on configuring this attribute, see https://docs.aws.amazon.com/iot/latest/apireference/API_iotfleethub_CreateApplication.html#API_iotfleethub_CreateApplication_RequestSyntax
24
- * @minLength `1`
25
- * @maxLength `1600`
26
- * @pattern `^arn:[!-~]+$`
27
- */
28
10
  RoleArn: string;
29
- /**
30
- * A list of key-value pairs that contain metadata for the application.
31
- * @minLength `0`
32
- * @maxLength `50`
33
- */
34
11
  Tags?: Tag[];
35
12
  };
36
13
  /**
@@ -38,66 +15,25 @@ export type IoTFleetHubApplicationProperties = {
38
15
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#aws-resource-iotfleethub-application-return-values}
39
16
  */
40
17
  export type IoTFleetHubApplicationAttributes = {
41
- /**
42
- * The ARN of the application.
43
- * @minLength `1`
44
- * @maxLength `1600`
45
- * @pattern `^arn:[!-~]+$`
46
- */
47
18
  ApplicationArn: string;
48
- /**
49
- * When the Application was created
50
- */
51
19
  ApplicationCreationDate: number;
52
- /**
53
- * The ID of the application.
54
- * @minLength `36`
55
- * @maxLength `36`
56
- * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
57
- */
58
20
  ApplicationId: string;
59
- /**
60
- * When the Application was last updated
61
- */
62
21
  ApplicationLastUpdateDate: number;
63
- /**
64
- * The current state of the application.
65
- */
66
22
  ApplicationState: string;
67
- /**
68
- * The URL of the application.
69
- */
70
23
  ApplicationUrl: string;
71
- /**
72
- * A message indicating why Create or Delete Application failed.
73
- */
74
24
  ErrorMessage: string;
75
- /**
76
- * The AWS SSO application generated client ID (used with AWS SSO APIs).
77
- */
78
25
  SsoClientId: string;
79
26
  };
80
27
  /**
81
28
  * Type definition for `AWS::IoTFleetHub::Application.Tag`.
82
- * To add or update tag, provide both key and value. To delete tag, provide only tag key to be deleted.
83
29
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleethub-application-tag.html}
84
30
  */
85
31
  export type Tag = {
86
- /**
87
- * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
88
- * @minLength `1`
89
- * @maxLength `128`
90
- */
91
32
  Key: string;
92
- /**
93
- * The value for the tag. You can specify a value that is 1 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
94
- * @minLength `1`
95
- * @maxLength `256`
96
- */
97
33
  Value: string;
98
34
  };
99
35
  /**
100
- * Resource schema for AWS::IoTFleetHub::Application
36
+ * Resource Type definition for AWS::IoTFleetHub::Application
101
37
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html}
102
38
  */
103
39
  export declare class IoTFleetHubApplication extends $Resource<"AWS::IoTFleetHub::Application", IoTFleetHubApplicationProperties, IoTFleetHubApplicationAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource schema for AWS::IoTFleetHub::Application
3
+ * Resource Type definition for AWS::IoTFleetHub::Application
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html}
5
5
  */
6
6
  export class IoTFleetHubApplication extends $Resource {
@@ -8,11 +8,11 @@ export type S3AccessGrantsLocationProperties = {
8
8
  /**
9
9
  * The Amazon Resource Name (ARN) of the access grant location's associated IAM role.
10
10
  */
11
- IamRoleArn?: string;
11
+ IamRoleArn: string;
12
12
  /**
13
13
  * Descriptor for where the location actually points
14
14
  */
15
- LocationScope?: string;
15
+ LocationScope: string;
16
16
  Tags?: Tag[];
17
17
  };
18
18
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.493",
3
+ "version": "0.1.494",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },