@awboost/cfn-resource-types 0.1.512 → 0.1.513

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.
@@ -1,8 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource type definition for `AWS::ApiGatewayV2::Integration`.
5
- * An example resource schema demonstrating some basic constructs and validation rules.
4
+ * Resource Type definition for AWS::ApiGatewayV2::Integration
6
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html}
7
6
  */
8
7
  export type ApiGatewayV2IntegrationProperties = {
@@ -24,6 +23,7 @@ export type ApiGatewayV2IntegrationProperties = {
24
23
  ContentHandlingStrategy?: string;
25
24
  /**
26
25
  * Specifies the credentials required for the integration, if any. For AWS integrations, three options are available. To specify an IAM Role for API Gateway to assume, use the role's Amazon Resource Name (ARN). To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::*:user/*. To use resource-based permissions on supported AWS services, don't specify this parameter.
26
+ * @pattern `arn:(aws|aws-cn|aws-us-gov):iam::[0-9]*:(role|user|group)\/.*`
27
27
  */
28
28
  CredentialsArn?: string;
29
29
  /**
@@ -118,8 +118,7 @@ export type TlsConfig = {
118
118
  ServerNameToVerify?: string;
119
119
  };
120
120
  /**
121
- * Resource type definition for `AWS::ApiGatewayV2::Integration`.
122
- * An example resource schema demonstrating some basic constructs and validation rules.
121
+ * Resource Type definition for AWS::ApiGatewayV2::Integration
123
122
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html}
124
123
  */
125
124
  export declare class ApiGatewayV2Integration extends $Resource<"AWS::ApiGatewayV2::Integration", ApiGatewayV2IntegrationProperties, ApiGatewayV2IntegrationAttributes> {
@@ -1,7 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource type definition for `AWS::ApiGatewayV2::Integration`.
4
- * An example resource schema demonstrating some basic constructs and validation rules.
3
+ * Resource Type definition for AWS::ApiGatewayV2::Integration
5
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html}
6
5
  */
7
6
  export class ApiGatewayV2Integration extends $Resource {
@@ -148,7 +148,7 @@ export type Accounting = {
148
148
  */
149
149
  DefaultPurgeTimeInDays?: number;
150
150
  /**
151
- * The default value is `STANDARD`. A value of `STANDARD` means that Slurm accounting is enabled.
151
+ * The default value is `NONE`. A value of `STANDARD` means that Slurm accounting is enabled.
152
152
  */
153
153
  Mode: "STANDARD" | "NONE";
154
154
  };
@@ -257,7 +257,7 @@ export type SlurmCustomSetting = {
257
257
  */
258
258
  export type SlurmRest = {
259
259
  /**
260
- * The default value is `STANDARD`. A value of `STANDARD` means that Slurm Rest is enabled.
260
+ * The default value is `NONE`. A value of `STANDARD` means that Slurm Rest is enabled.
261
261
  */
262
262
  Mode: "STANDARD" | "NONE";
263
263
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.512",
3
+ "version": "0.1.513",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },