@awboost/cfn-resource-types 0.1.423 → 0.1.425

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.
@@ -482,11 +482,16 @@ export type EBSTagSpecification = {
482
482
  };
483
483
  /**
484
484
  * Type definition for `AWS::ECS::Service.ForceNewDeployment`.
485
+ * Determines whether to force a new deployment of the service. By default, deployments aren't forced. You can use this option to start a new deployment with no service definition changes. For example, you can update a service's tasks to use a newer Docker image with the same image/tag combination (``my_image:latest``) or to roll Fargate tasks onto a newer platform version.
485
486
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-forcenewdeployment.html}
486
487
  */
487
488
  export type ForceNewDeployment = {
489
+ /**
490
+ * Determines whether to force a new deployment of the service. By default, deployments aren't forced. You can use this option to start a new deployment with no service definition changes. For example, you can update a service's tasks to use a newer Docker image with the same image/tag combination (``my_image:latest``) or to roll Fargate tasks onto a newer platform version.
491
+ */
488
492
  EnableForceNewDeployment: boolean;
489
493
  /**
494
+ * When you change the``ForceNewDeploymentNonce`` value in your template, it signals ECS to start a new deployment even though no other service parameters have changed. The value must be a unique, time- varying value like a timestamp, random string, or sequence number. Use this property when you want to ensure your tasks pick up the latest version of a Docker image that uses the same tag but has been updated in the registry.
490
495
  * @minLength `1`
491
496
  * @maxLength `255`
492
497
  */
@@ -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.425",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },