@awboost/cfn-resource-types 0.1.24 → 0.1.26
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-Authorizer.d.ts +1 -1
- package/lib/AWS-ApiGateway-Method.d.ts +2 -2
- package/lib/AWS-CloudFront-Distribution.d.ts +568 -2
- package/lib/AWS-CloudFront-Distribution.js +2 -1
- package/lib/AWS-Config-ConfigRule.d.ts +61 -43
- package/lib/AWS-Config-ConfigRule.js +4 -1
- package/lib/AWS-Connect-Prompt.d.ts +1 -1
- package/lib/AWS-ControlTower-EnabledControl.d.ts +25 -0
- package/lib/AWS-DynamoDB-Table.d.ts +245 -11
- package/lib/AWS-DynamoDB-Table.js +5 -1
- package/lib/AWS-EC2-ClientVpnEndpoint.d.ts +0 -8
- package/lib/AWS-EC2-EC2Fleet.d.ts +1 -0
- package/lib/AWS-EC2-EIP.d.ts +31 -19
- package/lib/AWS-EC2-EIP.js +4 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +422 -205
- package/lib/AWS-EC2-LaunchTemplate.js +8 -1
- package/lib/AWS-EC2-SecurityGroupEgress.d.ts +34 -19
- package/lib/AWS-EC2-SecurityGroupEgress.js +6 -1
- package/lib/AWS-EC2-SpotFleet.d.ts +1 -0
- package/lib/AWS-EC2-Volume.d.ts +68 -20
- package/lib/AWS-EC2-Volume.js +9 -1
- package/lib/AWS-ElastiCache-ParameterGroup.d.ts +1 -0
- package/lib/AWS-GameLift-Fleet.d.ts +1 -1
- package/lib/AWS-Glue-DataCatalogEncryptionSettings.d.ts +1 -0
- package/lib/AWS-Glue-TableOptimizer.d.ts +2 -2
- package/lib/AWS-GuardDuty-Member.d.ts +3 -9
- package/lib/AWS-IAM-GroupPolicy.d.ts +19 -8
- package/lib/AWS-IAM-GroupPolicy.js +3 -1
- package/lib/AWS-Lambda-Function.d.ts +78 -62
- package/lib/AWS-Lambda-Function.js +3 -1
- package/lib/AWS-Lambda-Permission.d.ts +29 -19
- package/lib/AWS-Lambda-Permission.js +3 -1
- package/lib/AWS-MediaPackageV2-Channel.d.ts +32 -4
- package/lib/AWS-MediaPackageV2-Channel.js +2 -1
- package/lib/AWS-MediaPackageV2-ChannelGroup.d.ts +18 -3
- package/lib/AWS-MediaPackageV2-ChannelGroup.js +2 -1
- package/lib/AWS-MediaPackageV2-ChannelPolicy.d.ts +6 -4
- package/lib/AWS-MediaPackageV2-ChannelPolicy.js +2 -1
- package/lib/AWS-MediaPackageV2-OriginEndpoint.d.ts +4 -4
- package/lib/AWS-MediaPackageV2-OriginEndpointPolicy.d.ts +7 -5
- package/lib/AWS-MediaPackageV2-OriginEndpointPolicy.js +2 -1
- package/lib/AWS-RDS-DBCluster.d.ts +0 -4
- package/lib/AWS-RDS-DBInstance.d.ts +491 -181
- package/lib/AWS-RDS-DBInstance.js +5 -1
- package/lib/AWS-RDS-DBParameterGroup.d.ts +41 -15
- package/lib/AWS-RDS-DBParameterGroup.js +5 -1
- package/lib/AWS-RDS-DBSubnetGroup.d.ts +20 -8
- package/lib/AWS-RDS-DBSubnetGroup.js +2 -1
- package/lib/AWS-SageMaker-FeatureGroup.d.ts +25 -0
- package/lib/AWS-SecretsManager-Secret.d.ts +51 -32
- package/lib/AWS-SecretsManager-Secret.js +6 -1
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ export type ApiGatewayAuthorizerProperties = {
|
|
|
22
22
|
*/
|
|
23
23
|
AuthorizerUri?: string;
|
|
24
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
|
|
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 thi
|
|
26
26
|
*/
|
|
27
27
|
IdentitySource?: string;
|
|
28
28
|
/**
|
|
@@ -99,7 +99,7 @@ export type Integration = {
|
|
|
99
99
|
*/
|
|
100
100
|
IntegrationResponses?: IntegrationResponse[];
|
|
101
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
|
|
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
|
|
103
103
|
*/
|
|
104
104
|
PassthroughBehavior?: "WHEN_NO_MATCH" | "WHEN_NO_TEMPLATES" | "NEVER";
|
|
105
105
|
/**
|
|
@@ -122,7 +122,7 @@ export type Integration = {
|
|
|
122
122
|
Type: "AWS" | "AWS_PROXY" | "HTTP" | "HTTP_PROXY" | "MOCK";
|
|
123
123
|
/**
|
|
124
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
|
|
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_ap
|
|
126
126
|
*/
|
|
127
127
|
Uri?: string;
|
|
128
128
|
};
|