@awboost/cfn-resource-types 0.1.183 → 0.1.185
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.
- package/lib/AWS-ApiGateway-Account.d.ts +0 -3
- package/lib/AWS-ApiGateway-ApiKey.d.ts +0 -27
- package/lib/AWS-ApiGateway-Authorizer.d.ts +0 -30
- package/lib/AWS-ApiGateway-BasePathMapping.d.ts +0 -12
- package/lib/AWS-ApiGateway-ClientCertificate.d.ts +0 -6
- package/lib/AWS-ApiGateway-Deployment.d.ts +1 -61
- package/lib/AWS-ApiGateway-DocumentationPart.d.ts +3 -23
- package/lib/AWS-ApiGateway-DocumentationVersion.d.ts +0 -5
- package/lib/AWS-ApiGateway-GatewayResponse.d.ts +0 -15
- package/lib/AWS-ApiGateway-Method.d.ts +1 -103
- package/lib/AWS-ApiGateway-Model.d.ts +0 -12
- package/lib/AWS-ApiGateway-RequestValidator.d.ts +0 -12
- package/lib/AWS-ApiGateway-Resource.d.ts +0 -9
- package/lib/AWS-ApiGateway-RestApi.d.ts +0 -33
- package/lib/AWS-ApiGateway-Stage.d.ts +3 -69
- package/lib/AWS-ApiGateway-UsagePlan.d.ts +4 -32
- package/lib/AWS-ApiGateway-UsagePlanKey.d.ts +0 -3
- package/lib/AWS-NimbleStudio-LaunchProfile.d.ts +9 -186
- package/lib/AWS-NimbleStudio-LaunchProfile.js +1 -2
- package/lib/AWS-NimbleStudio-StreamingImage.d.ts +6 -72
- package/lib/AWS-NimbleStudio-StreamingImage.js +1 -2
- package/lib/AWS-NimbleStudio-Studio.d.ts +4 -58
- package/lib/AWS-NimbleStudio-Studio.js +1 -2
- package/lib/AWS-NimbleStudio-StudioComponent.d.ts +11 -187
- package/lib/AWS-NimbleStudio-StudioComponent.js +1 -2
- package/lib/AWS-Wisdom-AIAgent.d.ts +182 -0
- package/lib/AWS-Wisdom-AIAgent.js +12 -0
- package/lib/AWS-Wisdom-AIAgentVersion.d.ts +45 -0
- package/lib/AWS-Wisdom-AIAgentVersion.js +12 -0
- package/package.json +1 -1
|
@@ -5,9 +5,6 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayAccountProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* The ARN of an Amazon CloudWatch role for the current Account.
|
|
10
|
-
*/
|
|
11
8
|
CloudWatchRoleArn?: string;
|
|
12
9
|
};
|
|
13
10
|
/**
|
|
@@ -5,38 +5,17 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayApiKeyProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* An MKT customer identifier, when integrating with the AWS SaaS Marketplace.
|
|
10
|
-
*/
|
|
11
8
|
CustomerId?: string;
|
|
12
|
-
/**
|
|
13
|
-
* The description of the ApiKey.
|
|
14
|
-
*/
|
|
15
9
|
Description?: string;
|
|
16
|
-
/**
|
|
17
|
-
* Specifies whether the ApiKey can be used by callers.
|
|
18
|
-
*/
|
|
19
10
|
Enabled?: boolean;
|
|
20
|
-
/**
|
|
21
|
-
* Specifies whether (``true``) or not (``false``) the key identifier is distinct from the created API key value. This parameter is deprecated and should not be used.
|
|
22
|
-
*/
|
|
23
11
|
GenerateDistinctId?: boolean;
|
|
24
12
|
/**
|
|
25
13
|
* A name for the API key. If you don't specify a name, CFN generates a unique physical ID and uses that ID for the API key name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
|
|
26
14
|
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
|
27
15
|
*/
|
|
28
16
|
Name?: string;
|
|
29
|
-
/**
|
|
30
|
-
* DEPRECATED FOR USAGE PLANS - Specifies stages associated with the API key.
|
|
31
|
-
*/
|
|
32
17
|
StageKeys?: StageKey[];
|
|
33
|
-
/**
|
|
34
|
-
* The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with ``aws:``. The tag value can be up to 256 characters.
|
|
35
|
-
*/
|
|
36
18
|
Tags?: Tag[];
|
|
37
|
-
/**
|
|
38
|
-
* Specifies a value of the API key.
|
|
39
|
-
*/
|
|
40
19
|
Value?: string;
|
|
41
20
|
};
|
|
42
21
|
/**
|
|
@@ -52,13 +31,7 @@ export type ApiGatewayApiKeyAttributes = {
|
|
|
52
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-apikey-stagekey.html}
|
|
53
32
|
*/
|
|
54
33
|
export type StageKey = {
|
|
55
|
-
/**
|
|
56
|
-
* The string identifier of the associated RestApi.
|
|
57
|
-
*/
|
|
58
34
|
RestApiId?: string;
|
|
59
|
-
/**
|
|
60
|
-
* The stage name associated with the stage key.
|
|
61
|
-
*/
|
|
62
35
|
StageName?: string;
|
|
63
36
|
};
|
|
64
37
|
/**
|
|
@@ -5,45 +5,15 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayAuthorizerProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* Optional customer-defined field, used in OpenAPI imports and exports without functional impact.
|
|
10
|
-
*/
|
|
11
8
|
AuthType?: string;
|
|
12
|
-
/**
|
|
13
|
-
* Specifies the required credentials as an IAM role for API Gateway to invoke the authorizer. To specify an IAM role for API Gateway to assume, use the role's Amazon Resource Name (ARN). To use resource-based permissions on the Lambda function, specify null.
|
|
14
|
-
*/
|
|
15
9
|
AuthorizerCredentials?: string;
|
|
16
|
-
/**
|
|
17
|
-
* The TTL in seconds of cached authorizer results. If it equals 0, authorization caching is disabled. If it is greater than 0, API Gateway will cache authorizer responses. If this field is not set, the default value is 300. The maximum value is 3600, or 1 hour.
|
|
18
|
-
*/
|
|
19
10
|
AuthorizerResultTtlInSeconds?: number;
|
|
20
|
-
/**
|
|
21
|
-
* Specifies the authorizer's Uniform Resource Identifier (URI). For ``TOKEN`` or ``REQUEST`` authorizers, this must be a well-formed Lambda function URI, for example, ``arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:{account_id}:function:{lambda_function_name}/invocations``. In general, the URI has this form ``arn:aws:apigateway:{region}:lambda:path/{service_api}``, where ``{region}`` is the same as the region hosting the Lambda function, ``path`` indicates that the remaining substring in the URI should be treated as the path to the resource, including the initial ``/``. For Lambda functions, this is usually of the form ``/2015-03-31/functions/[FunctionARN]/invocations``.
|
|
22
|
-
*/
|
|
23
11
|
AuthorizerUri?: string;
|
|
24
|
-
/**
|
|
25
|
-
* The identity source for which authorization is requested. For a ``TOKEN`` or ``COGNITO_USER_POOLS`` authorizer, this is required and specifies the request header mapping expression for the custom header holding the authorization token submitted by the client. For example, if the token header name is ``Auth``, the header mapping expression is ``method.request.header.Auth``. For the ``REQUEST`` authorizer, this is required when authorization caching is enabled. The value is a comma-separated string of one or more mapping expressions of the specified request parameters. For example, if an ``Auth`` header, a ``Name`` query string parameter are defined as identity sources, this value is ``method.request.header.Auth, method.request.querystring.Name``. These parameters will be used to derive the authorization caching key and to perform runtime validation of the ``REQUEST`` authorizer by verifying all of the identity-related request parameters are present, not null and non-empty. Only when this is true does the authorizer invoke the authorizer Lambda function, otherwise, it returns a 401 Unauthorized response without calling the Lambda function. The valid value is a string of comma-separated mapping expressions of the specified request parameters. When the authorization caching is not enabled, this property is optional.
|
|
26
|
-
*/
|
|
27
12
|
IdentitySource?: string;
|
|
28
|
-
/**
|
|
29
|
-
* A validation expression for the incoming identity token. For ``TOKEN`` authorizers, this value is a regular expression. For ``COGNITO_USER_POOLS`` authorizers, API Gateway will match the ``aud`` field of the incoming token from the client against the specified regular expression. It will invoke the authorizer's Lambda function when there is a match. Otherwise, it will return a 401 Unauthorized response without calling the Lambda function. The validation expression does not apply to the ``REQUEST`` authorizer.
|
|
30
|
-
*/
|
|
31
13
|
IdentityValidationExpression?: string;
|
|
32
|
-
/**
|
|
33
|
-
* The name of the authorizer.
|
|
34
|
-
*/
|
|
35
14
|
Name: string;
|
|
36
|
-
/**
|
|
37
|
-
* A list of the Amazon Cognito user pool ARNs for the ``COGNITO_USER_POOLS`` authorizer. Each element is of this format: ``arn:aws:cognito-idp:{region}:{account_id}:userpool/{user_pool_id}``. For a ``TOKEN`` or ``REQUEST`` authorizer, this is not defined.
|
|
38
|
-
*/
|
|
39
15
|
ProviderARNs?: string[];
|
|
40
|
-
/**
|
|
41
|
-
* The string identifier of the associated RestApi.
|
|
42
|
-
*/
|
|
43
16
|
RestApiId: string;
|
|
44
|
-
/**
|
|
45
|
-
* The authorizer type. Valid values are ``TOKEN`` for a Lambda function using a single authorization token submitted in a custom header, ``REQUEST`` for a Lambda function using incoming request parameters, and ``COGNITO_USER_POOLS`` for using an Amazon Cognito user pool.
|
|
46
|
-
*/
|
|
47
17
|
Type: string;
|
|
48
18
|
};
|
|
49
19
|
/**
|
|
@@ -5,21 +5,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayBasePathMappingProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* The base path name that callers of the API must provide as part of the URL after the domain name.
|
|
10
|
-
*/
|
|
11
8
|
BasePath?: string;
|
|
12
|
-
/**
|
|
13
|
-
* The domain name of the BasePathMapping resource to be described.
|
|
14
|
-
*/
|
|
15
9
|
DomainName: string;
|
|
16
|
-
/**
|
|
17
|
-
* The string identifier of the associated RestApi.
|
|
18
|
-
*/
|
|
19
10
|
RestApiId?: string;
|
|
20
|
-
/**
|
|
21
|
-
* The name of the associated stage.
|
|
22
|
-
*/
|
|
23
11
|
Stage?: string;
|
|
24
12
|
};
|
|
25
13
|
/**
|
|
@@ -5,13 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayClientCertificateProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* The description of the client certificate.
|
|
10
|
-
*/
|
|
11
8
|
Description?: string;
|
|
12
|
-
/**
|
|
13
|
-
* The collection of tags. Each tag element is associated with a given resource.
|
|
14
|
-
*/
|
|
15
9
|
Tags?: Tag[];
|
|
16
10
|
};
|
|
17
11
|
/**
|
|
@@ -6,24 +6,15 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayDeploymentProperties = {
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The ``DeploymentCanarySettings`` property type specifies settings for the canary deployment.
|
|
10
10
|
*/
|
|
11
11
|
DeploymentCanarySettings?: DeploymentCanarySettings;
|
|
12
|
-
/**
|
|
13
|
-
* The description for the Deployment resource to create.
|
|
14
|
-
*/
|
|
15
12
|
Description?: string;
|
|
16
|
-
/**
|
|
17
|
-
* The string identifier of the associated RestApi.
|
|
18
|
-
*/
|
|
19
13
|
RestApiId: string;
|
|
20
14
|
/**
|
|
21
15
|
* The description of the Stage resource for the Deployment resource to create. To specify a stage description, you must also provide a stage name.
|
|
22
16
|
*/
|
|
23
17
|
StageDescription?: StageDescription;
|
|
24
|
-
/**
|
|
25
|
-
* The name of the Stage resource for the Deployment resource to create.
|
|
26
|
-
*/
|
|
27
18
|
StageName?: string;
|
|
28
19
|
};
|
|
29
20
|
/**
|
|
@@ -40,13 +31,7 @@ export type ApiGatewayDeploymentAttributes = {
|
|
|
40
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html}
|
|
41
32
|
*/
|
|
42
33
|
export type AccessLogSetting = {
|
|
43
|
-
/**
|
|
44
|
-
* The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis Data Firehose delivery stream to receive access logs. If you specify a Kinesis Data Firehose delivery stream, the stream name must begin with ``amazon-apigateway-``.
|
|
45
|
-
*/
|
|
46
34
|
DestinationArn?: string;
|
|
47
|
-
/**
|
|
48
|
-
* A single line format of the access logs of data, as specified by selected $context variables. The format must include at least ``$context.requestId``.
|
|
49
|
-
*/
|
|
50
35
|
Format?: string;
|
|
51
36
|
};
|
|
52
37
|
/**
|
|
@@ -56,17 +41,8 @@ export type AccessLogSetting = {
|
|
|
56
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-canarysetting.html}
|
|
57
42
|
*/
|
|
58
43
|
export type CanarySetting = {
|
|
59
|
-
/**
|
|
60
|
-
* The percent (0-100) of traffic diverted to a canary deployment.
|
|
61
|
-
*/
|
|
62
44
|
PercentTraffic?: number;
|
|
63
|
-
/**
|
|
64
|
-
* Stage variables overridden for a canary release deployment, including new stage variables introduced in the canary. These stage variables are represented as a string-to-string map between stage variable names and their values.
|
|
65
|
-
*/
|
|
66
45
|
StageVariableOverrides?: Record<string, string>;
|
|
67
|
-
/**
|
|
68
|
-
* A Boolean flag to indicate whether the canary deployment uses the stage cache or not.
|
|
69
|
-
*/
|
|
70
46
|
UseStageCache?: boolean;
|
|
71
47
|
};
|
|
72
48
|
/**
|
|
@@ -75,17 +51,8 @@ export type CanarySetting = {
|
|
|
75
51
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-deploymentcanarysettings.html}
|
|
76
52
|
*/
|
|
77
53
|
export type DeploymentCanarySettings = {
|
|
78
|
-
/**
|
|
79
|
-
* The percentage (0.0-100.0) of traffic routed to the canary deployment.
|
|
80
|
-
*/
|
|
81
54
|
PercentTraffic?: number;
|
|
82
|
-
/**
|
|
83
|
-
* A stage variable overrides used for the canary release deployment. They can override existing stage variables or add new stage variables for the canary release deployment. These stage variables are represented as a string-to-string map between stage variable names and their values.
|
|
84
|
-
*/
|
|
85
55
|
StageVariableOverrides?: Record<string, string>;
|
|
86
|
-
/**
|
|
87
|
-
* A Boolean flag to indicate whether the canary release deployment uses the stage cache or not.
|
|
88
|
-
*/
|
|
89
56
|
UseStageCache?: boolean;
|
|
90
57
|
};
|
|
91
58
|
/**
|
|
@@ -95,45 +62,21 @@ export type DeploymentCanarySettings = {
|
|
|
95
62
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-methodsetting.html}
|
|
96
63
|
*/
|
|
97
64
|
export type MethodSetting = {
|
|
98
|
-
/**
|
|
99
|
-
* Specifies whether the cached responses are encrypted.
|
|
100
|
-
*/
|
|
101
65
|
CacheDataEncrypted?: boolean;
|
|
102
|
-
/**
|
|
103
|
-
* Specifies the time to live (TTL), in seconds, for cached responses. The higher the TTL, the longer the response will be cached.
|
|
104
|
-
*/
|
|
105
66
|
CacheTtlInSeconds?: number;
|
|
106
|
-
/**
|
|
107
|
-
* Specifies whether responses should be cached and returned for requests. A cache cluster must be enabled on the stage for responses to be cached.
|
|
108
|
-
*/
|
|
109
67
|
CachingEnabled?: boolean;
|
|
110
|
-
/**
|
|
111
|
-
* Specifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs. This can be useful to troubleshoot APIs, but can result in logging sensitive data. We recommend that you don't enable this option for production APIs.
|
|
112
|
-
*/
|
|
113
68
|
DataTraceEnabled?: boolean;
|
|
114
69
|
/**
|
|
115
70
|
* The HTTP method.
|
|
116
71
|
*/
|
|
117
72
|
HttpMethod?: string;
|
|
118
|
-
/**
|
|
119
|
-
* Specifies the logging level for this method, which affects the log entries pushed to Amazon CloudWatch Logs. Valid values are ``OFF``, ``ERROR``, and ``INFO``. Choose ``ERROR`` to write only error-level entries to CloudWatch Logs, or choose ``INFO`` to include all ``ERROR`` events as well as extra informational events.
|
|
120
|
-
*/
|
|
121
73
|
LoggingLevel?: string;
|
|
122
|
-
/**
|
|
123
|
-
* Specifies whether Amazon CloudWatch metrics are enabled for this method.
|
|
124
|
-
*/
|
|
125
74
|
MetricsEnabled?: boolean;
|
|
126
75
|
/**
|
|
127
76
|
* The resource path for this method. Forward slashes (``/``) are encoded as ``~1`` and the initial slash must include a forward slash. For example, the path value ``/resource/subresource`` must be encoded as ``/~1resource~1subresource``. To specify the root path, use only a slash (``/``).
|
|
128
77
|
*/
|
|
129
78
|
ResourcePath?: string;
|
|
130
|
-
/**
|
|
131
|
-
* Specifies the throttling burst limit.
|
|
132
|
-
*/
|
|
133
79
|
ThrottlingBurstLimit?: number;
|
|
134
|
-
/**
|
|
135
|
-
* Specifies the throttling rate limit.
|
|
136
|
-
*/
|
|
137
80
|
ThrottlingRateLimit?: number;
|
|
138
81
|
};
|
|
139
82
|
/**
|
|
@@ -146,9 +89,6 @@ export type StageDescription = {
|
|
|
146
89
|
* Specifies settings for logging access in this stage.
|
|
147
90
|
*/
|
|
148
91
|
AccessLogSetting?: AccessLogSetting;
|
|
149
|
-
/**
|
|
150
|
-
* Specifies whether a cache cluster is enabled for the stage.
|
|
151
|
-
*/
|
|
152
92
|
CacheClusterEnabled?: boolean;
|
|
153
93
|
/**
|
|
154
94
|
* The size of the stage's cache cluster. For more information, see [cacheClusterSize](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateStage.html#apigw-CreateStage-request-cacheClusterSize) in the *API Gateway API Reference*.
|
|
@@ -6,16 +6,11 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayDocumentationPartProperties = {
|
|
8
8
|
/**
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
* The ``Location`` property specifies the location of the Amazon API Gateway API entity that the documentation applies to. ``Location`` is a property of the [AWS::ApiGateway::DocumentationPart](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html) resource.
|
|
10
|
+
For more information about each property, including constraints and valid values, see [DocumentationPart](https://docs.aws.amazon.com/apigateway/latest/api/API_DocumentationPartLocation.html) in the *Amazon API Gateway REST API Reference*.
|
|
11
|
+
*/
|
|
11
12
|
Location: Location;
|
|
12
|
-
/**
|
|
13
|
-
* The new documentation content map of the targeted API entity. Enclosed key-value pairs are API-specific, but only OpenAPI-compliant key-value pairs can be exported and, hence, published.
|
|
14
|
-
*/
|
|
15
13
|
Properties: string;
|
|
16
|
-
/**
|
|
17
|
-
* The string identifier of the associated RestApi.
|
|
18
|
-
*/
|
|
19
14
|
RestApiId: string;
|
|
20
15
|
};
|
|
21
16
|
/**
|
|
@@ -32,25 +27,10 @@ export type ApiGatewayDocumentationPartAttributes = {
|
|
|
32
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html}
|
|
33
28
|
*/
|
|
34
29
|
export type Location = {
|
|
35
|
-
/**
|
|
36
|
-
* The HTTP verb of a method. It is a valid field for the API entity types of ``METHOD``, ``PATH_PARAMETER``, ``QUERY_PARAMETER``, ``REQUEST_HEADER``, ``REQUEST_BODY``, ``RESPONSE``, ``RESPONSE_HEADER``, and ``RESPONSE_BODY``. The default value is ``*`` for any method. When an applicable child entity inherits the content of an entity of the same type with more general specifications of the other ``location`` attributes, the child entity's ``method`` attribute must match that of the parent entity exactly.
|
|
37
|
-
*/
|
|
38
30
|
Method?: string;
|
|
39
|
-
/**
|
|
40
|
-
* The name of the targeted API entity. It is a valid and required field for the API entity types of ``AUTHORIZER``, ``MODEL``, ``PATH_PARAMETER``, ``QUERY_PARAMETER``, ``REQUEST_HEADER``, ``REQUEST_BODY`` and ``RESPONSE_HEADER``. It is an invalid field for any other entity type.
|
|
41
|
-
*/
|
|
42
31
|
Name?: string;
|
|
43
|
-
/**
|
|
44
|
-
* The URL path of the target. It is a valid field for the API entity types of ``RESOURCE``, ``METHOD``, ``PATH_PARAMETER``, ``QUERY_PARAMETER``, ``REQUEST_HEADER``, ``REQUEST_BODY``, ``RESPONSE``, ``RESPONSE_HEADER``, and ``RESPONSE_BODY``. The default value is ``/`` for the root resource. When an applicable child entity inherits the content of another entity of the same type with more general specifications of the other ``location`` attributes, the child entity's ``path`` attribute must match that of the parent entity as a prefix.
|
|
45
|
-
*/
|
|
46
32
|
Path?: string;
|
|
47
|
-
/**
|
|
48
|
-
* The HTTP status code of a response. It is a valid field for the API entity types of ``RESPONSE``, ``RESPONSE_HEADER``, and ``RESPONSE_BODY``. The default value is ``*`` for any status code. When an applicable child entity inherits the content of an entity of the same type with more general specifications of the other ``location`` attributes, the child entity's ``statusCode`` attribute must match that of the parent entity exactly.
|
|
49
|
-
*/
|
|
50
33
|
StatusCode?: string;
|
|
51
|
-
/**
|
|
52
|
-
* The type of API entity to which the documentation content applies. Valid values are ``API``, ``AUTHORIZER``, ``MODEL``, ``RESOURCE``, ``METHOD``, ``PATH_PARAMETER``, ``QUERY_PARAMETER``, ``REQUEST_HEADER``, ``REQUEST_BODY``, ``RESPONSE``, ``RESPONSE_HEADER``, and ``RESPONSE_BODY``. Content inheritance does not apply to any entity of the ``API``, ``AUTHORIZER``, ``METHOD``, ``MODEL``, ``REQUEST_BODY``, or ``RESOURCE`` type.
|
|
53
|
-
*/
|
|
54
34
|
Type?: "API" | "AUTHORIZER" | "MODEL" | "RESOURCE" | "METHOD" | "PATH_PARAMETER" | "QUERY_PARAMETER" | "REQUEST_HEADER" | "REQUEST_BODY" | "RESPONSE" | "RESPONSE_HEADER" | "RESPONSE_BODY";
|
|
55
35
|
};
|
|
56
36
|
/**
|
|
@@ -5,17 +5,12 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayDocumentationVersionProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* A description about the new documentation snapshot.
|
|
10
|
-
*/
|
|
11
8
|
Description?: string;
|
|
12
9
|
/**
|
|
13
|
-
* The version identifier of the to-be-updated documentation version.
|
|
14
10
|
* @minLength `1`
|
|
15
11
|
*/
|
|
16
12
|
DocumentationVersion: string;
|
|
17
13
|
/**
|
|
18
|
-
* The string identifier of the associated RestApi.
|
|
19
14
|
* @minLength `1`
|
|
20
15
|
*/
|
|
21
16
|
RestApiId: string;
|
|
@@ -5,25 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayGatewayResponseProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* Response parameters (paths, query strings and headers) of the GatewayResponse as a string-to-string map of key-value pairs.
|
|
10
|
-
*/
|
|
11
8
|
ResponseParameters?: Record<string, string>;
|
|
12
|
-
/**
|
|
13
|
-
* Response templates of the GatewayResponse as a string-to-string map of key-value pairs.
|
|
14
|
-
*/
|
|
15
9
|
ResponseTemplates?: Record<string, string>;
|
|
16
|
-
/**
|
|
17
|
-
* The response type of the associated GatewayResponse.
|
|
18
|
-
*/
|
|
19
10
|
ResponseType: string;
|
|
20
|
-
/**
|
|
21
|
-
* The string identifier of the associated RestApi.
|
|
22
|
-
*/
|
|
23
11
|
RestApiId: string;
|
|
24
|
-
/**
|
|
25
|
-
* The HTTP status code for this GatewayResponse.
|
|
26
|
-
*/
|
|
27
12
|
StatusCode?: string;
|
|
28
13
|
};
|
|
29
14
|
/**
|
|
@@ -5,58 +5,25 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayMethodProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* A boolean flag specifying whether a valid ApiKey is required to invoke this method.
|
|
10
|
-
*/
|
|
11
8
|
ApiKeyRequired?: boolean;
|
|
12
|
-
/**
|
|
13
|
-
* A list of authorization scopes configured on the method. The scopes are used with a ``COGNITO_USER_POOLS`` authorizer to authorize the method invocation. The authorization works by matching the method scopes against the scopes parsed from the access token in the incoming request. The method invocation is authorized if any method scopes matches a claimed scope in the access token. Otherwise, the invocation is not authorized. When the method scope is configured, the client must provide an access token instead of an identity token for authorization purposes.
|
|
14
|
-
*/
|
|
15
9
|
AuthorizationScopes?: string[];
|
|
16
10
|
/**
|
|
17
11
|
* The method's authorization type. This parameter is required. For valid values, see [Method](https://docs.aws.amazon.com/apigateway/latest/api/API_Method.html) in the *API Gateway API Reference*.
|
|
18
12
|
If you specify the ``AuthorizerId`` property, specify ``CUSTOM`` or ``COGNITO_USER_POOLS`` for this property.
|
|
19
13
|
*/
|
|
20
14
|
AuthorizationType?: string;
|
|
21
|
-
/**
|
|
22
|
-
* The identifier of an authorizer to use on this method. The method's authorization type must be ``CUSTOM`` or ``COGNITO_USER_POOLS``.
|
|
23
|
-
*/
|
|
24
15
|
AuthorizerId?: string;
|
|
25
|
-
/**
|
|
26
|
-
* The method's HTTP verb.
|
|
27
|
-
*/
|
|
28
16
|
HttpMethod: string;
|
|
29
17
|
/**
|
|
30
|
-
*
|
|
18
|
+
* ``Integration`` is a property of the [AWS::ApiGateway::Method](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html) resource that specifies information about the target backend that a method calls.
|
|
31
19
|
*/
|
|
32
20
|
Integration?: Integration;
|
|
33
|
-
/**
|
|
34
|
-
* Gets a method response associated with a given HTTP status code.
|
|
35
|
-
*/
|
|
36
21
|
MethodResponses?: MethodResponse[];
|
|
37
|
-
/**
|
|
38
|
-
* A human-friendly operation identifier for the method. For example, you can assign the ``operationName`` of ``ListPets`` for the ``GET /pets`` method in the ``PetStore`` example.
|
|
39
|
-
*/
|
|
40
22
|
OperationName?: string;
|
|
41
|
-
/**
|
|
42
|
-
* A key-value map specifying data schemas, represented by Model resources, (as the mapped value) of the request payloads of given content types (as the mapping key).
|
|
43
|
-
*/
|
|
44
23
|
RequestModels?: Record<string, string>;
|
|
45
|
-
/**
|
|
46
|
-
* A key-value map defining required or optional method request parameters that can be accepted by API Gateway. A key is a method request parameter name matching the pattern of ``method.request.{location}.{name}``, where ``location`` is ``querystring``, ``path``, or ``header`` and ``name`` is a valid and unique parameter name. The value associated with the key is a Boolean flag indicating whether the parameter is required (``true``) or optional (``false``). The method request parameter names defined here are available in Integration to be mapped to integration request parameters or templates.
|
|
47
|
-
*/
|
|
48
24
|
RequestParameters?: Record<string, boolean | string>;
|
|
49
|
-
/**
|
|
50
|
-
* The identifier of a RequestValidator for request validation.
|
|
51
|
-
*/
|
|
52
25
|
RequestValidatorId?: string;
|
|
53
|
-
/**
|
|
54
|
-
* The Resource identifier for the MethodResponse resource.
|
|
55
|
-
*/
|
|
56
26
|
ResourceId: string;
|
|
57
|
-
/**
|
|
58
|
-
* The string identifier of the associated RestApi.
|
|
59
|
-
*/
|
|
60
27
|
RestApiId: string;
|
|
61
28
|
};
|
|
62
29
|
/**
|
|
@@ -65,65 +32,22 @@ export type ApiGatewayMethodProperties = {
|
|
|
65
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-method-integration.html}
|
|
66
33
|
*/
|
|
67
34
|
export type Integration = {
|
|
68
|
-
/**
|
|
69
|
-
* A list of request parameters whose values API Gateway caches. To be valid values for ``cacheKeyParameters``, these parameters must also be specified for Method ``requestParameters``.
|
|
70
|
-
*/
|
|
71
35
|
CacheKeyParameters?: string[];
|
|
72
|
-
/**
|
|
73
|
-
* Specifies a group of related cached parameters. By default, API Gateway uses the resource ID as the ``cacheNamespace``. You can specify the same ``cacheNamespace`` across resources to return the same cached data for requests to different resources.
|
|
74
|
-
*/
|
|
75
36
|
CacheNamespace?: string;
|
|
76
|
-
/**
|
|
77
|
-
* The ID of the VpcLink used for the integration when ``connectionType=VPC_LINK`` and undefined, otherwise.
|
|
78
|
-
*/
|
|
79
37
|
ConnectionId?: string;
|
|
80
|
-
/**
|
|
81
|
-
* The type of the network connection to the integration endpoint. The valid value is ``INTERNET`` for connections through the public routable internet or ``VPC_LINK`` for private connections between API Gateway and a network load balancer in a VPC. The default value is ``INTERNET``.
|
|
82
|
-
*/
|
|
83
38
|
ConnectionType?: "INTERNET" | "VPC_LINK";
|
|
84
|
-
/**
|
|
85
|
-
* Specifies how to handle request payload content type conversions. Supported values are ``CONVERT_TO_BINARY`` and ``CONVERT_TO_TEXT``, with the following behaviors:
|
|
86
|
-
If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the ``passthroughBehavior`` is configured to support payload pass-through.
|
|
87
|
-
*/
|
|
88
39
|
ContentHandling?: "CONVERT_TO_BINARY" | "CONVERT_TO_TEXT";
|
|
89
|
-
/**
|
|
90
|
-
* 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, specify null.
|
|
91
|
-
*/
|
|
92
40
|
Credentials?: string;
|
|
93
|
-
/**
|
|
94
|
-
* Specifies the integration's HTTP method type. For the Type property, if you specify ``MOCK``, this property is optional. For Lambda integrations, you must set the integration method to ``POST``. For all other types, you must specify this property.
|
|
95
|
-
*/
|
|
96
41
|
IntegrationHttpMethod?: string;
|
|
97
|
-
/**
|
|
98
|
-
* Specifies the integration's responses.
|
|
99
|
-
*/
|
|
100
42
|
IntegrationResponses?: IntegrationResponse[];
|
|
101
|
-
/**
|
|
102
|
-
* Specifies how the method request body of an unmapped content type will be passed through the integration request to the back end without transformation. A content type is unmapped if no mapping template is defined in the integration or the content type does not match any of the mapped content types, as specified in ``requestTemplates``. The valid value is one of the following: ``WHEN_NO_MATCH``: passes the method request body through the integration request to the back end without transformation when the method request content type does not match any content type associated with the mapping templates defined in the integration request. ``WHEN_NO_TEMPLATES``: passes the method request body through the integration request to the back end without transformation when no mapping template is defined in the integration request. If a template is defined when this option is selected, the method request of an unmapped content-type will be rejected with an HTTP 415 Unsupported Media Type response. ``NEVER``: rejects the method request with an HTTP 415 Unsupported Media Type response when either the method request content type does not match any content type associated with the mapping templates defined in the integration request or no mapping template is defined in the integration request.
|
|
103
|
-
*/
|
|
104
43
|
PassthroughBehavior?: "WHEN_NO_MATCH" | "WHEN_NO_TEMPLATES" | "NEVER";
|
|
105
|
-
/**
|
|
106
|
-
* A key-value map specifying request parameters that are passed from the method request to the back end. The key is an integration request parameter name and the associated value is a method request parameter value or static value that must be enclosed within single quotes and pre-encoded as required by the back end. The method request parameter value must match the pattern of ``method.request.{location}.{name}``, where ``location`` is ``querystring``, ``path``, or ``header`` and ``name`` must be a valid and unique method request parameter name.
|
|
107
|
-
*/
|
|
108
44
|
RequestParameters?: Record<string, string>;
|
|
109
|
-
/**
|
|
110
|
-
* Represents a map of Velocity templates that are applied on the request payload based on the value of the Content-Type header sent by the client. The content type value is the key in this map, and the template (as a String) is the value.
|
|
111
|
-
*/
|
|
112
45
|
RequestTemplates?: Record<string, string>;
|
|
113
46
|
/**
|
|
114
|
-
* Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds or 29 seconds.
|
|
115
47
|
* @min `50`
|
|
116
48
|
*/
|
|
117
49
|
TimeoutInMillis?: number;
|
|
118
|
-
/**
|
|
119
|
-
* Specifies an API method integration type. The valid value is one of the following:
|
|
120
|
-
For the HTTP and HTTP proxy integrations, each integration can specify a protocol (``http/https``), port and path. Standard 80 and 443 ports are supported as well as custom ports above 1024. An HTTP or HTTP proxy integration with a ``connectionType`` of ``VPC_LINK`` is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.
|
|
121
|
-
*/
|
|
122
50
|
Type: "AWS" | "AWS_PROXY" | "HTTP" | "HTTP_PROXY" | "MOCK";
|
|
123
|
-
/**
|
|
124
|
-
* Specifies Uniform Resource Identifier (URI) of the integration endpoint.
|
|
125
|
-
For ``HTTP`` or ``HTTP_PROXY`` integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification for standard integrations. If ``connectionType`` is ``VPC_LINK`` specify the Network Load Balancer DNS name. For ``AWS`` or ``AWS_PROXY`` integrations, the URI is of the form ``arn:aws:apigateway:{region}:{subdomain.service|service}:path|action/{service_api}``. Here, {Region} is the API Gateway region (e.g., us-east-1); {service} is the name of the integrated AWS service (e.g., s3); and {subdomain} is a designated subdomain supported by certain AWS service for fast host-name lookup. action can be used for an AWS service action-based API, using an Action={name}&{p1}={v1}&p2={v2}... query string. The ensuing {service_api} refers to a supported action {name} plus any required input parameters. Alternatively, path can be used for an AWS service path-based API. The ensuing service_api refers to the path to an AWS service resource, including the region of the integrated AWS service, if applicable. For example, for integration with the S3 API of GetObject, the uri can be either ``arn:aws:apigateway:us-west-2:s3:action/GetObject&Bucket={bucket}&Key={key}`` or ``arn:aws:apigateway:us-west-2:s3:path/{bucket}/{key}``
|
|
126
|
-
*/
|
|
127
51
|
Uri?: string;
|
|
128
52
|
};
|
|
129
53
|
/**
|
|
@@ -132,45 +56,19 @@ export type Integration = {
|
|
|
132
56
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-method-integrationresponse.html}
|
|
133
57
|
*/
|
|
134
58
|
export type IntegrationResponse = {
|
|
135
|
-
/**
|
|
136
|
-
* Specifies how to handle response payload content type conversions. Supported values are ``CONVERT_TO_BINARY`` and ``CONVERT_TO_TEXT``, with the following behaviors:
|
|
137
|
-
If this property is not defined, the response payload will be passed through from the integration response to the method response without modification.
|
|
138
|
-
*/
|
|
139
59
|
ContentHandling?: "CONVERT_TO_BINARY" | "CONVERT_TO_TEXT";
|
|
140
|
-
/**
|
|
141
|
-
* A key-value map specifying response parameters that are passed to the method response from the back end. The key is a method response header parameter name and the mapped value is an integration response header value, a static value enclosed within a pair of single quotes, or a JSON expression from the integration response body. The mapping key must match the pattern of ``method.response.header.{name}``, where ``name`` is a valid and unique header name. The mapped non-static value must match the pattern of ``integration.response.header.{name}`` or ``integration.response.body.{JSON-expression}``, where ``name`` is a valid and unique response header name and ``JSON-expression`` is a valid JSON expression without the ``$`` prefix.
|
|
142
|
-
*/
|
|
143
60
|
ResponseParameters?: Record<string, string>;
|
|
144
|
-
/**
|
|
145
|
-
* Specifies the templates used to transform the integration response body. Response templates are represented as a key/value map, with a content-type as the key and a template as the value.
|
|
146
|
-
*/
|
|
147
61
|
ResponseTemplates?: Record<string, string>;
|
|
148
|
-
/**
|
|
149
|
-
* Specifies the regular expression (regex) pattern used to choose an integration response based on the response from the back end. For example, if the success response returns nothing and the error response returns some string, you could use the ``.+`` regex to match error response. However, make sure that the error response does not contain any newline (``\n``) character in such cases. If the back end is an LAMlong function, the LAMlong function error header is matched. For all other HTTP and AWS back ends, the HTTP status code is matched.
|
|
150
|
-
*/
|
|
151
62
|
SelectionPattern?: string;
|
|
152
|
-
/**
|
|
153
|
-
* Specifies the status code that is used to map the integration response to an existing MethodResponse.
|
|
154
|
-
*/
|
|
155
63
|
StatusCode: string;
|
|
156
64
|
};
|
|
157
65
|
/**
|
|
158
66
|
* Type definition for `AWS::ApiGateway::Method.MethodResponse`.
|
|
159
|
-
* Represents a method response of a given HTTP status code returned to the client. The method response is passed from the back end through the associated integration response that can be transformed using a mapping template.
|
|
160
67
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-method-methodresponse.html}
|
|
161
68
|
*/
|
|
162
69
|
export type MethodResponse = {
|
|
163
|
-
/**
|
|
164
|
-
* Specifies the Model resources used for the response's content-type. Response models are represented as a key/value map, with a content-type as the key and a Model name as the value.
|
|
165
|
-
*/
|
|
166
70
|
ResponseModels?: Record<string, string>;
|
|
167
|
-
/**
|
|
168
|
-
* A key-value map specifying required or optional response parameters that API Gateway can send back to the caller. A key defines a method response header and the value specifies whether the associated method response header is required or not. The expression of the key must match the pattern ``method.response.header.{name}``, where ``name`` is a valid and unique header name. API Gateway passes certain integration response data to the method response headers specified here according to the mapping you prescribe in the API's IntegrationResponse. The integration response data that can be mapped include an integration response header expressed in ``integration.response.header.{name}``, a static value enclosed within a pair of single quotes (e.g., ``'application/json'``), or a JSON expression from the back-end response payload in the form of ``integration.response.body.{JSON-expression}``, where ``JSON-expression`` is a valid JSON expression without the ``$`` prefix.)
|
|
169
|
-
*/
|
|
170
71
|
ResponseParameters?: Record<string, boolean | string>;
|
|
171
|
-
/**
|
|
172
|
-
* The method response's status code.
|
|
173
|
-
*/
|
|
174
72
|
StatusCode: string;
|
|
175
73
|
};
|
|
176
74
|
/**
|
|
@@ -5,26 +5,14 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayModelProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* The content-type for the model.
|
|
10
|
-
*/
|
|
11
8
|
ContentType?: string;
|
|
12
|
-
/**
|
|
13
|
-
* The description of the model.
|
|
14
|
-
*/
|
|
15
9
|
Description?: string;
|
|
16
10
|
/**
|
|
17
11
|
* A name for the model. If you don't specify a name, CFN generates a unique physical ID and uses that ID for the model name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
|
|
18
12
|
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
|
19
13
|
*/
|
|
20
14
|
Name?: string;
|
|
21
|
-
/**
|
|
22
|
-
* The string identifier of the associated RestApi.
|
|
23
|
-
*/
|
|
24
15
|
RestApiId: string;
|
|
25
|
-
/**
|
|
26
|
-
* The schema for the model. For ``application/json`` models, this should be JSON schema draft 4 model. Do not include "\/*" characters in the description of any properties because such "\/*" characters may be interpreted as the closing marker for comments in some languages, such as Java or JavaScript, causing the installation of your API's SDK generated by API Gateway to fail.
|
|
27
|
-
*/
|
|
28
16
|
Schema?: Record<string, any> | string;
|
|
29
17
|
};
|
|
30
18
|
/**
|
|
@@ -5,21 +5,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayRequestValidatorProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* The name of this RequestValidator
|
|
10
|
-
*/
|
|
11
8
|
Name?: string;
|
|
12
|
-
/**
|
|
13
|
-
* The string identifier of the associated RestApi.
|
|
14
|
-
*/
|
|
15
9
|
RestApiId: string;
|
|
16
|
-
/**
|
|
17
|
-
* A Boolean flag to indicate whether to validate a request body according to the configured Model schema.
|
|
18
|
-
*/
|
|
19
10
|
ValidateRequestBody?: boolean;
|
|
20
|
-
/**
|
|
21
|
-
* A Boolean flag to indicate whether to validate request parameters (``true``) or not (``false``).
|
|
22
|
-
*/
|
|
23
11
|
ValidateRequestParameters?: boolean;
|
|
24
12
|
};
|
|
25
13
|
/**
|
|
@@ -5,17 +5,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ApiGatewayResourceProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* The parent resource's identifier.
|
|
10
|
-
*/
|
|
11
8
|
ParentId: string;
|
|
12
|
-
/**
|
|
13
|
-
* The last path segment for this resource.
|
|
14
|
-
*/
|
|
15
9
|
PathPart: string;
|
|
16
|
-
/**
|
|
17
|
-
* The string identifier of the associated RestApi.
|
|
18
|
-
*/
|
|
19
10
|
RestApiId: string;
|
|
20
11
|
};
|
|
21
12
|
/**
|