@awboost/cfn-resource-types 0.1.378 → 0.1.379
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.
|
@@ -29,7 +29,7 @@ export type EC2CustomerGatewayProperties = {
|
|
|
29
29
|
*/
|
|
30
30
|
DeviceName?: string;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* The IP address for the customer gateway device's outside interface. The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4``, you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``Ipv6``, you can use an IPv6 address.
|
|
33
33
|
*/
|
|
34
34
|
IpAddress: string;
|
|
35
35
|
/**
|
|
@@ -23,6 +23,19 @@ export type EventsEventBusProperties = {
|
|
|
23
23
|
* Kms Key Identifier used to encrypt events at rest in the event bus.
|
|
24
24
|
*/
|
|
25
25
|
KmsKeyIdentifier?: string;
|
|
26
|
+
/**
|
|
27
|
+
* The logging configuration settings for vended logs.
|
|
28
|
+
*/
|
|
29
|
+
LogConfig?: {
|
|
30
|
+
/**
|
|
31
|
+
* Configures whether or not to include event detail, input transformer details, target properties, and target input in the applicable log messages.
|
|
32
|
+
*/
|
|
33
|
+
IncludeDetail?: "FULL" | "NONE";
|
|
34
|
+
/**
|
|
35
|
+
* Configures the log level of the EventBus and determines which log messages are sent to Ingestion Hub for delivery.
|
|
36
|
+
*/
|
|
37
|
+
Level?: "INFO" | "ERROR" | "TRACE" | "OFF";
|
|
38
|
+
};
|
|
26
39
|
/**
|
|
27
40
|
* The name of the event bus.
|
|
28
41
|
*/
|
|
@@ -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
|
-
* Specifies an Amazon Redshift subnet group.
|
|
4
|
+
* Resource Type definition for AWS::Redshift::ClusterSubnetGroup. Specifies an Amazon Redshift subnet group.
|
|
6
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html}
|
|
7
6
|
*/
|
|
8
7
|
export type RedshiftClusterSubnetGroupProperties = {
|
|
@@ -52,8 +51,7 @@ export type Tag = {
|
|
|
52
51
|
Value: string;
|
|
53
52
|
};
|
|
54
53
|
/**
|
|
55
|
-
* Resource
|
|
56
|
-
* Specifies an Amazon Redshift subnet group.
|
|
54
|
+
* Resource Type definition for AWS::Redshift::ClusterSubnetGroup. Specifies an Amazon Redshift subnet group.
|
|
57
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html}
|
|
58
56
|
*/
|
|
59
57
|
export declare class RedshiftClusterSubnetGroup extends $Resource<"AWS::Redshift::ClusterSubnetGroup", RedshiftClusterSubnetGroupProperties, RedshiftClusterSubnetGroupAttributes> {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
4
|
-
* Specifies an Amazon Redshift subnet group.
|
|
3
|
+
* Resource Type definition for AWS::Redshift::ClusterSubnetGroup. Specifies an Amazon Redshift subnet group.
|
|
5
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html}
|
|
6
5
|
*/
|
|
7
6
|
export class RedshiftClusterSubnetGroup extends $Resource {
|
|
@@ -15,6 +15,7 @@ export type TransferServerProperties = {
|
|
|
15
15
|
EndpointType?: EndpointType;
|
|
16
16
|
IdentityProviderDetails?: IdentityProviderDetails;
|
|
17
17
|
IdentityProviderType?: IdentityProviderType;
|
|
18
|
+
IpAddressType?: IpAddressType;
|
|
18
19
|
/**
|
|
19
20
|
* @minLength `0`
|
|
20
21
|
* @maxLength `2048`
|
|
@@ -153,6 +154,11 @@ export type IdentityProviderDetails = {
|
|
|
153
154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-identityprovidertype.html}
|
|
154
155
|
*/
|
|
155
156
|
export type IdentityProviderType = "SERVICE_MANAGED" | "API_GATEWAY" | "AWS_DIRECTORY_SERVICE" | "AWS_LAMBDA";
|
|
157
|
+
/**
|
|
158
|
+
* Type definition for `AWS::Transfer::Server.IpAddressType`.
|
|
159
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-ipaddresstype.html}
|
|
160
|
+
*/
|
|
161
|
+
export type IpAddressType = "IPV4" | "DUALSTACK";
|
|
156
162
|
/**
|
|
157
163
|
* Type definition for `AWS::Transfer::Server.Protocol`.
|
|
158
164
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-server-protocol.html}
|