@awboost/cfn-resource-types 0.1.497 → 0.1.498
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.
|
@@ -20,7 +20,7 @@ export type BillingConductorCustomLineItemProperties = {
|
|
|
20
20
|
/**
|
|
21
21
|
* The display settings of the Custom Line Item.
|
|
22
22
|
*/
|
|
23
|
-
ComputationRule?: "CONSOLIDATED";
|
|
23
|
+
ComputationRule?: "CONSOLIDATED" | "ITEMIZED";
|
|
24
24
|
CustomLineItemChargeDetails?: CustomLineItemChargeDetails;
|
|
25
25
|
/**
|
|
26
26
|
* @maxLength `255`
|
|
@@ -121,9 +121,10 @@ export type CustomLineItemPercentageChargeDetails = {
|
|
|
121
121
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billingconductor-customlineitem-lineitemfilter.html}
|
|
122
122
|
*/
|
|
123
123
|
export type LineItemFilter = {
|
|
124
|
-
Attribute: "LINE_ITEM_TYPE";
|
|
125
|
-
|
|
126
|
-
|
|
124
|
+
Attribute: "LINE_ITEM_TYPE" | "SERVICE";
|
|
125
|
+
AttributeValues?: string[];
|
|
126
|
+
MatchOption: "NOT_EQUAL" | "EQUAL";
|
|
127
|
+
Values?: LineItemFilterValue[];
|
|
127
128
|
};
|
|
128
129
|
/**
|
|
129
130
|
* Type definition for `AWS::BillingConductor::CustomLineItem.LineItemFilterValue`.
|
|
@@ -67,6 +67,7 @@ export type MembershipJobLogStatus = "ENABLED" | "DISABLED";
|
|
|
67
67
|
export type MembershipMLPaymentConfig = {
|
|
68
68
|
ModelInference?: MembershipModelInferencePaymentConfig;
|
|
69
69
|
ModelTraining?: MembershipModelTrainingPaymentConfig;
|
|
70
|
+
SyntheticDataGeneration?: MembershipSyntheticDataGenerationPaymentConfig;
|
|
70
71
|
};
|
|
71
72
|
/**
|
|
72
73
|
* Type definition for `AWS::CleanRooms::Membership.MembershipModelInferencePaymentConfig`.
|
|
@@ -141,6 +142,13 @@ export type MembershipQueryComputePaymentConfig = {
|
|
|
141
142
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipquerylogstatus.html}
|
|
142
143
|
*/
|
|
143
144
|
export type MembershipQueryLogStatus = "ENABLED" | "DISABLED";
|
|
145
|
+
/**
|
|
146
|
+
* Type definition for `AWS::CleanRooms::Membership.MembershipSyntheticDataGenerationPaymentConfig`.
|
|
147
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershipsyntheticdatagenerationpaymentconfig.html}
|
|
148
|
+
*/
|
|
149
|
+
export type MembershipSyntheticDataGenerationPaymentConfig = {
|
|
150
|
+
IsResponsible: boolean;
|
|
151
|
+
};
|
|
144
152
|
/**
|
|
145
153
|
* Type definition for `AWS::CleanRooms::Membership.ProtectedJobS3OutputConfigurationInput`.
|
|
146
154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedjobs3outputconfigurationinput.html}
|
|
@@ -54,6 +54,10 @@ export type EC2NetworkInterfaceProperties = {
|
|
|
54
54
|
* Assigns a list of private IP addresses to the network interface. You can specify a primary private IP address by setting the value of the Primary property to true in the PrivateIpAddressSpecification property. If you want EC2 to automatically assign private IP addresses, use the SecondaryPrivateIpAddressCount property and do not specify this property.
|
|
55
55
|
*/
|
|
56
56
|
PrivateIpAddresses?: PrivateIpAddressSpecification[];
|
|
57
|
+
/**
|
|
58
|
+
* Public IP DNS hostname type
|
|
59
|
+
*/
|
|
60
|
+
PublicIpDnsHostnameTypeSpecification?: "public-dual-stack-dns-name" | "public-ipv4-dns-name" | "public-ipv6-dns-name";
|
|
57
61
|
/**
|
|
58
62
|
* The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using privateIpAddresses
|
|
59
63
|
*/
|
|
@@ -88,6 +92,15 @@ export type EC2NetworkInterfaceAttributes = {
|
|
|
88
92
|
* Returns the primary private IP address of the network interface.
|
|
89
93
|
*/
|
|
90
94
|
PrimaryPrivateIpAddress: string;
|
|
95
|
+
/**
|
|
96
|
+
* Describes the public hostname type options, including public hostname type, IPv4-enabled public hostname, IPv6-enabled public hostname, and dual-stack public hostname.
|
|
97
|
+
*/
|
|
98
|
+
PublicIpDnsNameOptions: {
|
|
99
|
+
DnsHostnameType: string;
|
|
100
|
+
PublicDualStackDnsName: string;
|
|
101
|
+
PublicIpv4DnsName: string;
|
|
102
|
+
PublicIpv6DnsName: string;
|
|
103
|
+
};
|
|
91
104
|
/**
|
|
92
105
|
* Returns the secondary private IP addresses of the network interface.
|
|
93
106
|
*/
|
|
@@ -135,6 +148,17 @@ export type PrivateIpAddressSpecification = {
|
|
|
135
148
|
Primary: boolean;
|
|
136
149
|
PrivateIpAddress: string;
|
|
137
150
|
};
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::EC2::NetworkInterface.PublicIpDnsNameOptions`.
|
|
153
|
+
* Describes the public hostname type options, including public hostname type, IPv4-enabled public hostname, IPv6-enabled public hostname, and dual-stack public hostname.
|
|
154
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-publicipdnsnameoptions.html}
|
|
155
|
+
*/
|
|
156
|
+
export type PublicIpDnsNameOptions = {
|
|
157
|
+
DnsHostnameType?: string;
|
|
158
|
+
PublicDualStackDnsName?: string;
|
|
159
|
+
PublicIpv4DnsName?: string;
|
|
160
|
+
PublicIpv6DnsName?: string;
|
|
161
|
+
};
|
|
138
162
|
/**
|
|
139
163
|
* Type definition for `AWS::EC2::NetworkInterface.Tag`.
|
|
140
164
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterface-tag.html}
|
|
@@ -6,6 +6,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
*/
|
|
7
7
|
export type EC2SpotFleetProperties = {
|
|
8
8
|
SpotFleetRequestConfigData: SpotFleetRequestConfigData;
|
|
9
|
+
/**
|
|
10
|
+
* The tags to specify in SpotFleetRequestConfigData
|
|
11
|
+
*/
|
|
12
|
+
Tags?: Tag[];
|
|
9
13
|
};
|
|
10
14
|
/**
|
|
11
15
|
* Attribute type definition for `AWS::EC2::SpotFleet`.
|
|
@@ -166,6 +170,7 @@ export type InstanceRequirementsRequest = {
|
|
|
166
170
|
NetworkBandwidthGbps?: NetworkBandwidthGbpsRequest;
|
|
167
171
|
NetworkInterfaceCount?: NetworkInterfaceCountRequest;
|
|
168
172
|
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
|
173
|
+
RequireEncryptionInTransit?: boolean;
|
|
169
174
|
RequireHibernateSupport?: boolean;
|
|
170
175
|
SpotMaxPricePercentageOverLowestPrice?: number;
|
|
171
176
|
TotalLocalStorageGB?: TotalLocalStorageGBRequest;
|
|
@@ -34,7 +34,7 @@ export type OrganizationsPolicyProperties = {
|
|
|
34
34
|
/**
|
|
35
35
|
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, S3_POLICY, INSPECTOR_POLICY, BEDROCK_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
36
36
|
*/
|
|
37
|
-
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "S3_POLICY" | "INSPECTOR_POLICY" | "BEDROCK_POLICY" | "UPGRADE_ROLLOUT_POLICY";
|
|
37
|
+
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "S3_POLICY" | "INSPECTOR_POLICY" | "BEDROCK_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY";
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
40
40
|
* Attribute type definition for `AWS::Organizations::Policy`.
|