@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.
|
@@ -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
|