@awboost/cfn-resource-types 0.1.179 → 0.1.180

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.
@@ -17,6 +17,10 @@ export type OpenSearchServiceDomainProperties = {
17
17
  EncryptionAtRestOptions?: EncryptionAtRestOptions;
18
18
  EngineVersion?: string;
19
19
  IPAddressType?: string;
20
+ /**
21
+ * Options for configuring Identity Center
22
+ */
23
+ IdentityCenterOptions?: IdentityCenterOptions;
20
24
  LogPublishingOptions?: Record<string, LogPublishingOption>;
21
25
  NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
22
26
  OffPeakWindowOptions?: OffPeakWindowOptions;
@@ -43,6 +47,19 @@ export type OpenSearchServiceDomainAttributes = {
43
47
  DomainEndpointV2: string;
44
48
  DomainEndpoints: Record<string, string>;
45
49
  Id: string;
50
+ /**
51
+ * Options for configuring Identity Center
52
+ */
53
+ IdentityCenterOptions: {
54
+ /**
55
+ * The ARN of the Identity Center application.
56
+ */
57
+ IdentityCenterApplicationARN: string;
58
+ /**
59
+ * The IdentityStoreId for Identity Center options.
60
+ */
61
+ IdentityStoreId: string;
62
+ };
46
63
  ServiceSoftwareOptions: {
47
64
  AutomatedUpdateDate: string;
48
65
  Cancellable: boolean;
@@ -131,6 +148,29 @@ export type EncryptionAtRestOptions = {
131
148
  Enabled?: boolean;
132
149
  KmsKeyId?: string;
133
150
  };
151
+ /**
152
+ * Type definition for `AWS::OpenSearchService::Domain.IdentityCenterOptions`.
153
+ * Options for configuring Identity Center
154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-identitycenteroptions.html}
155
+ */
156
+ export type IdentityCenterOptions = {
157
+ /**
158
+ * Whether Identity Center is enabled.
159
+ */
160
+ EnabledAPIAccess?: boolean;
161
+ /**
162
+ * The ARN of the Identity Center instance.
163
+ */
164
+ IdentityCenterInstanceARN?: string;
165
+ /**
166
+ * The roles key for Identity Center options.
167
+ */
168
+ RolesKey?: RolesKeyIdcType;
169
+ /**
170
+ * The subject key for Identity Center options.
171
+ */
172
+ SubjectKey?: SubjectKeyIdcType;
173
+ };
134
174
  /**
135
175
  * Type definition for `AWS::OpenSearchService::Domain.Idp`.
136
176
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-idp.html}
@@ -192,6 +232,12 @@ export type OffPeakWindowOptions = {
192
232
  Enabled?: boolean;
193
233
  OffPeakWindow?: OffPeakWindow;
194
234
  };
235
+ /**
236
+ * Type definition for `AWS::OpenSearchService::Domain.RolesKeyIdcType`.
237
+ * Roles Key Idc type values.
238
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-roleskeyidctype.html}
239
+ */
240
+ export type RolesKeyIdcType = "GroupName" | "GroupId";
195
241
  /**
196
242
  * Type definition for `AWS::OpenSearchService::Domain.SAMLOptions`.
197
243
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-samloptions.html}
@@ -233,6 +279,12 @@ export type SnapshotOptions = {
233
279
  export type SoftwareUpdateOptions = {
234
280
  AutoSoftwareUpdateEnabled?: boolean;
235
281
  };
282
+ /**
283
+ * Type definition for `AWS::OpenSearchService::Domain.SubjectKeyIdcType`.
284
+ * Subject Key Idc type values.
285
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-subjectkeyidctype.html}
286
+ */
287
+ export type SubjectKeyIdcType = "UserName" | "UserId" | "Email";
236
288
  /**
237
289
  * Type definition for `AWS::OpenSearchService::Domain.Tag`.
238
290
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-tag.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.179",
3
+ "version": "0.1.180",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },