@awboost/cfn-resource-types 0.1.511 → 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
|
|
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
|
|
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
|
|
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 {
|
|
@@ -1,19 +1,21 @@
|
|
|
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
|
|
4
|
+
* Resource type definition for `AWS::ECR::PullTimeUpdateExclusion`.
|
|
5
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
6
7
|
*/
|
|
7
8
|
export type ECRPullTimeUpdateExclusionProperties = {
|
|
8
9
|
/**
|
|
9
|
-
*
|
|
10
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
10
11
|
* @maxLength `200`
|
|
11
12
|
* @pattern `^arn:aws(-[a-z]+)*:iam::[0-9]{12}:(role|user)/[\w+=,.@-]+(/[\w+=,.@-]+)*$`
|
|
12
13
|
*/
|
|
13
14
|
PrincipalArn: string;
|
|
14
15
|
};
|
|
15
16
|
/**
|
|
16
|
-
* Resource
|
|
17
|
+
* Resource type definition for `AWS::ECR::PullTimeUpdateExclusion`.
|
|
18
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
17
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
18
20
|
*/
|
|
19
21
|
export declare class ECRPullTimeUpdateExclusion extends $Resource<"AWS::ECR::PullTimeUpdateExclusion", ECRPullTimeUpdateExclusionProperties, Record<string, never>> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for `AWS::ECR::PullTimeUpdateExclusion`.
|
|
4
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
5
6
|
*/
|
|
6
7
|
export class ECRPullTimeUpdateExclusion extends $Resource {
|
package/lib/AWS-PCS-Cluster.d.ts
CHANGED
|
@@ -148,7 +148,7 @@ export type Accounting = {
|
|
|
148
148
|
*/
|
|
149
149
|
DefaultPurgeTimeInDays?: number;
|
|
150
150
|
/**
|
|
151
|
-
* The default value is `
|
|
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 `
|
|
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
|
};
|