@awboost/cfn-resource-types 0.1.423 → 0.1.424

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.
@@ -79,7 +79,7 @@ export type PropertyMapping = {
79
79
  /**
80
80
  * The k-NN search engine to use
81
81
  */
82
- Engine: "nmslib" | "faiss" | "lucene";
82
+ Engine?: "nmslib" | "faiss" | "lucene";
83
83
  /**
84
84
  * The algorithm name for k-NN search
85
85
  */
@@ -12,6 +12,10 @@ export type OpenSearchServerlessSecurityConfigProperties = {
12
12
  * @maxLength `1000`
13
13
  */
14
14
  Description?: string;
15
+ /**
16
+ * Describe IAM federation options in form of key value map
17
+ */
18
+ IamFederationOptions?: IamFederationConfigOptions;
15
19
  /**
16
20
  * Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
17
21
  */
@@ -61,6 +65,21 @@ export type OpenSearchServerlessSecurityConfigAttributes = {
61
65
  */
62
66
  Id: string;
63
67
  };
68
+ /**
69
+ * Type definition for `AWS::OpenSearchServerless::SecurityConfig.IamFederationConfigOptions`.
70
+ * Describe IAM federation options in form of key value map
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-iamfederationconfigoptions.html}
72
+ */
73
+ export type IamFederationConfigOptions = {
74
+ /**
75
+ * Group attribute for this IAM federation integration
76
+ */
77
+ GroupAttribute?: string;
78
+ /**
79
+ * User attribute for this IAM federation integration
80
+ */
81
+ UserAttribute?: string;
82
+ };
64
83
  /**
65
84
  * Type definition for `AWS::OpenSearchServerless::SecurityConfig.IamIdentityCenterConfigOptions`.
66
85
  * Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map
@@ -124,7 +143,7 @@ export type SamlConfigOptions = {
124
143
  * Config type for security config
125
144
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-securityconfigtype.html}
126
145
  */
127
- export type SecurityConfigType = "saml" | "iamidentitycenter";
146
+ export type SecurityConfigType = "saml" | "iamidentitycenter" | "iamfederation";
128
147
  /**
129
148
  * Resource type definition for `AWS::OpenSearchServerless::SecurityConfig`.
130
149
  * Amazon OpenSearchServerless security config resource
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.423",
3
+ "version": "0.1.424",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },