@awboost/cfn-resource-types 0.1.71 → 0.1.72

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.
@@ -115,6 +115,10 @@ export type FirewallRule = {
115
115
  * @maxLength `64`
116
116
  */
117
117
  FirewallDomainListId: string;
118
+ /**
119
+ * FirewallDomainRedirectionAction
120
+ */
121
+ FirewallDomainRedirectionAction?: "INSPECT_REDIRECTION_DOMAIN" | "TRUST_REDIRECTION_DOMAIN";
118
122
  /**
119
123
  * Rule Priority
120
124
  */
@@ -0,0 +1,80 @@
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
+ * Resource type definition for `AWS::SSO::Instance`.
5
+ * Resource Type definition for Identity Center (SSO) Instance
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html}
7
+ */
8
+ export type SSOInstanceProperties = {
9
+ /**
10
+ * The name you want to assign to this Identity Center (SSO) Instance
11
+ * @minLength `1`
12
+ * @maxLength `32`
13
+ * @pattern `^[\w+=,.@-]+$`
14
+ */
15
+ Name?: string;
16
+ /**
17
+ * @maxLength `75`
18
+ */
19
+ Tags?: Tag[];
20
+ };
21
+ /**
22
+ * Attribute type definition for `AWS::SSO::Instance`.
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html#aws-resource-sso-instance-return-values}
24
+ */
25
+ export type SSOInstanceAttributes = {
26
+ /**
27
+ * The ID of the identity store associated with the created Identity Center (SSO) Instance
28
+ * @minLength `1`
29
+ * @maxLength `64`
30
+ * @pattern `^[a-zA-Z0-9-]*$`
31
+ */
32
+ IdentityStoreId: string;
33
+ /**
34
+ * The SSO Instance ARN that is returned upon creation of the Identity Center (SSO) Instance
35
+ * @minLength `10`
36
+ * @maxLength `1224`
37
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
38
+ */
39
+ InstanceArn: string;
40
+ /**
41
+ * The AWS accountId of the owner of the Identity Center (SSO) Instance
42
+ * @minLength `12`
43
+ * @maxLength `12`
44
+ * @pattern `^\d{12}?$`
45
+ */
46
+ OwnerAccountId: string;
47
+ /**
48
+ * The status of the Identity Center (SSO) Instance, create_in_progress/delete_in_progress/active
49
+ */
50
+ Status: "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "ACTIVE";
51
+ };
52
+ /**
53
+ * Type definition for `AWS::SSO::Instance.Tag`.
54
+ * The metadata that you apply to the Identity Center (SSO) Instance to help you categorize and organize them.
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sso-instance-tag.html}
56
+ */
57
+ export type Tag = {
58
+ /**
59
+ * @minLength `1`
60
+ * @maxLength `128`
61
+ * @pattern `[\w+=,.@-]+`
62
+ */
63
+ Key: string;
64
+ /**
65
+ * @minLength `0`
66
+ * @maxLength `256`
67
+ * @pattern `[\w+=,.@-]+`
68
+ */
69
+ Value: string;
70
+ };
71
+ /**
72
+ * Resource type definition for `AWS::SSO::Instance`.
73
+ * Resource Type definition for Identity Center (SSO) Instance
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html}
75
+ */
76
+ export declare class SSOInstance extends $Resource<"AWS::SSO::Instance", SSOInstanceProperties, SSOInstanceAttributes> {
77
+ static readonly Type = "AWS::SSO::Instance";
78
+ constructor(logicalId: string, properties: SSOInstanceProperties, options?: $ResourceOptions);
79
+ }
80
+ //# sourceMappingURL=AWS-SSO-Instance.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::SSO::Instance`.
4
+ * Resource Type definition for Identity Center (SSO) Instance
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-instance.html}
6
+ */
7
+ export class SSOInstance extends $Resource {
8
+ static Type = "AWS::SSO::Instance";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, SSOInstance.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-SSO-Instance.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.71",
3
+ "version": "0.1.72",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },