@intentius/chant-lexicon-aws 0.18.23 → 0.18.25
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/dist/composites/agentcore-agent.d.ts +14 -1
- package/dist/composites/agentcore-agent.d.ts.map +1 -1
- package/dist/generated/index.d.ts +11 -3
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +161 -25
- package/dist/serializer.d.ts.map +1 -1
- package/dist/template-transform.d.ts +49 -0
- package/dist/template-transform.d.ts.map +1 -0
- package/dist/types/index.d.ts +219 -42
- package/package.json +2 -2
- package/src/composites/agentcore-agent.test.ts +22 -9
- package/src/composites/agentcore-agent.ts +23 -6
- package/src/generated/index.d.ts +219 -42
- package/src/generated/index.ts +14 -6
- package/src/generated/lexicon-aws.json +161 -25
- package/src/index.ts +2 -0
- package/src/serializer.test.ts +33 -0
- package/src/serializer.ts +22 -0
- package/src/template-transform.ts +68 -0
package/src/generated/index.d.ts
CHANGED
|
@@ -8659,30 +8659,30 @@ export declare class DataSyncAgent {
|
|
|
8659
8659
|
|
|
8660
8660
|
export declare class DataTable {
|
|
8661
8661
|
constructor(props: {
|
|
8662
|
+
/** The identifier of the Amazon Connect instance. */
|
|
8663
|
+
InstanceArn: string;
|
|
8664
|
+
/** The name of the Data Table */
|
|
8665
|
+
Name: string;
|
|
8666
|
+
/** The status of the Data Table */
|
|
8667
|
+
Status: "PUBLISHED";
|
|
8668
|
+
/** The time zone of the Data Table */
|
|
8669
|
+
TimeZone: string;
|
|
8670
|
+
/** The value lock level of the Data Table */
|
|
8671
|
+
ValueLockLevel: "ATTRIBUTE" | "DATA_TABLE" | "NONE" | "PRIMARY_VALUE" | "VALUE";
|
|
8662
8672
|
/** The arn of the Data Table */
|
|
8663
8673
|
Arn?: string;
|
|
8664
8674
|
/** The creation time of the Data Table */
|
|
8665
8675
|
CreatedTime?: number;
|
|
8666
8676
|
/** The description of the Data Table. */
|
|
8667
8677
|
Description?: string;
|
|
8668
|
-
/** The identifier of the Amazon Connect instance. */
|
|
8669
|
-
InstanceArn?: string;
|
|
8670
8678
|
/** Last modified region. */
|
|
8671
8679
|
LastModifiedRegion?: string;
|
|
8672
8680
|
/** Last modified time. */
|
|
8673
8681
|
LastModifiedTime?: number;
|
|
8674
8682
|
/** The lock version of the Data Table */
|
|
8675
8683
|
LockVersion?: Record<string, unknown>;
|
|
8676
|
-
/** The name of the Data Table */
|
|
8677
|
-
Name?: string;
|
|
8678
|
-
/** The status of the Data Table */
|
|
8679
|
-
Status?: "PUBLISHED";
|
|
8680
8684
|
/** One or more tags. */
|
|
8681
8685
|
Tags?: DataTable_Tag[];
|
|
8682
|
-
/** The time zone of the Data Table */
|
|
8683
|
-
TimeZone?: string;
|
|
8684
|
-
/** The value lock level of the Data Table */
|
|
8685
|
-
ValueLockLevel?: "ATTRIBUTE" | "DATA_TABLE" | "NONE" | "PRIMARY_VALUE" | "VALUE";
|
|
8686
8686
|
}, attributes?: CFResourceAttributes);
|
|
8687
8687
|
readonly Arn: string;
|
|
8688
8688
|
readonly CreatedTime: number;
|
|
@@ -8693,17 +8693,17 @@ export declare class DataTable {
|
|
|
8693
8693
|
|
|
8694
8694
|
export declare class DataTableAttribute {
|
|
8695
8695
|
constructor(props: {
|
|
8696
|
+
DataTableArn: string;
|
|
8697
|
+
InstanceArn: string;
|
|
8698
|
+
Name: string;
|
|
8699
|
+
ValueType: "BOOLEAN" | "NUMBER" | "NUMBER_LIST" | "TEXT" | "TEXT_LIST";
|
|
8696
8700
|
AttributeId?: string;
|
|
8697
|
-
DataTableArn?: string;
|
|
8698
8701
|
Description?: string;
|
|
8699
|
-
InstanceArn?: string;
|
|
8700
8702
|
LastModifiedRegion?: string;
|
|
8701
8703
|
LastModifiedTime?: number;
|
|
8702
8704
|
LockVersion?: Record<string, unknown>;
|
|
8703
|
-
Name?: string;
|
|
8704
8705
|
Primary?: boolean;
|
|
8705
8706
|
Validation?: Record<string, unknown>;
|
|
8706
|
-
ValueType?: "BOOLEAN" | "NUMBER" | "NUMBER_LIST" | "TEXT" | "TEXT_LIST";
|
|
8707
8707
|
}, attributes?: CFResourceAttributes);
|
|
8708
8708
|
readonly AttributeId: string;
|
|
8709
8709
|
readonly LastModifiedRegion: string;
|
|
@@ -8713,9 +8713,9 @@ export declare class DataTableAttribute {
|
|
|
8713
8713
|
|
|
8714
8714
|
export declare class DataTableRecord {
|
|
8715
8715
|
constructor(props: {
|
|
8716
|
-
DataTableArn
|
|
8717
|
-
DataTableRecord
|
|
8718
|
-
InstanceArn
|
|
8716
|
+
DataTableArn: string;
|
|
8717
|
+
DataTableRecord: Record<string, unknown>;
|
|
8718
|
+
InstanceArn: string;
|
|
8719
8719
|
RecordId?: string;
|
|
8720
8720
|
}, attributes?: CFResourceAttributes);
|
|
8721
8721
|
readonly RecordId: string;
|
|
@@ -11190,12 +11190,16 @@ export declare class DLMLifecyclePolicy {
|
|
|
11190
11190
|
|
|
11191
11191
|
export declare class DMSCertificate {
|
|
11192
11192
|
constructor(props: {
|
|
11193
|
+
/** The certificate Arn */
|
|
11194
|
+
CertificateArn?: string;
|
|
11195
|
+
/** The certificate Identifier */
|
|
11193
11196
|
CertificateIdentifier?: string;
|
|
11197
|
+
/** The certificate Pem */
|
|
11194
11198
|
CertificatePem?: string;
|
|
11199
|
+
/** The certificate Wallet */
|
|
11195
11200
|
CertificateWallet?: string;
|
|
11196
|
-
Id?: string;
|
|
11197
11201
|
}, attributes?: CFResourceAttributes);
|
|
11198
|
-
readonly
|
|
11202
|
+
readonly CertificateArn: string;
|
|
11199
11203
|
}
|
|
11200
11204
|
|
|
11201
11205
|
export declare class DMSEndpoint {
|
|
@@ -17690,14 +17694,14 @@ export declare class InstanceGroupConfig {
|
|
|
17690
17694
|
JobFlowId: string;
|
|
17691
17695
|
AutoScalingPolicy?: InstanceGroupConfig_AutoScalingPolicy;
|
|
17692
17696
|
BidPrice?: string;
|
|
17693
|
-
Configurations?:
|
|
17697
|
+
Configurations?: InstanceGroupConfig_Configuration[];
|
|
17694
17698
|
CustomAmiId?: string;
|
|
17695
17699
|
EbsConfiguration?: InstanceGroupConfig_EbsConfiguration;
|
|
17696
|
-
|
|
17700
|
+
Id?: string;
|
|
17697
17701
|
Market?: string;
|
|
17698
17702
|
Name?: string;
|
|
17699
17703
|
}, attributes?: CFResourceAttributes);
|
|
17700
|
-
readonly
|
|
17704
|
+
readonly Id: string;
|
|
17701
17705
|
}
|
|
17702
17706
|
|
|
17703
17707
|
export declare class InstanceProfile {
|
|
@@ -19306,6 +19310,18 @@ export declare class KmsKey {
|
|
|
19306
19310
|
readonly KeyId: string;
|
|
19307
19311
|
}
|
|
19308
19312
|
|
|
19313
|
+
export declare class KnowledgeBasePolicy {
|
|
19314
|
+
constructor(props: {
|
|
19315
|
+
/** The unique identifier of the knowledge base */
|
|
19316
|
+
KnowledgeBaseId: string;
|
|
19317
|
+
/** The IAM policy document defining access permissions for the knowledge base */
|
|
19318
|
+
PolicyDocument: PolicyDocument;
|
|
19319
|
+
/** The revision identifier for the policy, used for optimistic concurrency control */
|
|
19320
|
+
RevisionId?: string;
|
|
19321
|
+
}, attributes?: CFResourceAttributes);
|
|
19322
|
+
readonly RevisionId: string;
|
|
19323
|
+
}
|
|
19324
|
+
|
|
19309
19325
|
export declare class Label {
|
|
19310
19326
|
constructor(props: {
|
|
19311
19327
|
/** The name of the label. */
|
|
@@ -34835,6 +34851,23 @@ export declare class TLSInspectionConfiguration {
|
|
|
34835
34851
|
readonly TLSInspectionConfigurationId: string;
|
|
34836
34852
|
}
|
|
34837
34853
|
|
|
34854
|
+
export declare class TokenVault {
|
|
34855
|
+
constructor(props: {
|
|
34856
|
+
/** The ARN of the token vault. */
|
|
34857
|
+
Arn?: string;
|
|
34858
|
+
/** The KMS configuration for the token vault. */
|
|
34859
|
+
KmsConfiguration?: TokenVault_KmsConfiguration;
|
|
34860
|
+
/** The timestamp when the token vault was last modified. */
|
|
34861
|
+
LastModifiedDate?: string;
|
|
34862
|
+
/** The unique identifier of the token vault. */
|
|
34863
|
+
TokenVaultId?: string;
|
|
34864
|
+
}, attributes?: CFResourceAttributes);
|
|
34865
|
+
readonly Arn: string;
|
|
34866
|
+
readonly KmsConfiguration: TokenVault_KmsConfiguration;
|
|
34867
|
+
readonly LastModifiedDate: string;
|
|
34868
|
+
readonly TokenVaultId: string;
|
|
34869
|
+
}
|
|
34870
|
+
|
|
34838
34871
|
export declare class Topic {
|
|
34839
34872
|
constructor(props: {
|
|
34840
34873
|
/** The archive policy determines the number of days SNS retains messages. You can set a retention period from 1 to 365 days. */
|
|
@@ -35605,6 +35638,18 @@ export declare class TransitGatewayPolicyTable {
|
|
|
35605
35638
|
readonly TransitGatewayPolicyTableId: string;
|
|
35606
35639
|
}
|
|
35607
35640
|
|
|
35641
|
+
export declare class TransitGatewayPolicyTableAssociation {
|
|
35642
|
+
constructor(props: {
|
|
35643
|
+
/** The ID of transit gateway attachment. */
|
|
35644
|
+
TransitGatewayAttachmentId: string;
|
|
35645
|
+
/** The ID of transit gateway policy table. */
|
|
35646
|
+
TransitGatewayPolicyTableId: string;
|
|
35647
|
+
/** The state of the transit gateway policy table association. */
|
|
35648
|
+
State?: string;
|
|
35649
|
+
}, attributes?: CFResourceAttributes);
|
|
35650
|
+
readonly State: string;
|
|
35651
|
+
}
|
|
35652
|
+
|
|
35608
35653
|
export declare class TransitGatewayRegistration {
|
|
35609
35654
|
constructor(props: {
|
|
35610
35655
|
/** The ID of the global network. */
|
|
@@ -36806,12 +36851,42 @@ export declare class Vpc {
|
|
|
36806
36851
|
Ipv6CidrBlocks?: string[];
|
|
36807
36852
|
/** The tags for the VPC. */
|
|
36808
36853
|
Tags?: Vpc_Tag[];
|
|
36854
|
+
VpcEncryptionControl?: Vpc_VpcEncryptionControl;
|
|
36809
36855
|
VpcId?: string;
|
|
36810
36856
|
}, attributes?: CFResourceAttributes);
|
|
36811
36857
|
readonly CidrBlockAssociations: string[];
|
|
36812
36858
|
readonly DefaultNetworkAcl: string;
|
|
36813
36859
|
readonly DefaultSecurityGroup: string;
|
|
36814
36860
|
readonly Ipv6CidrBlocks: string[];
|
|
36861
|
+
readonly VpcEncryptionControl_ResourceExclusions: string;
|
|
36862
|
+
readonly VpcEncryptionControl_ResourceExclusions_EgressOnlyInternetGateway: string;
|
|
36863
|
+
readonly VpcEncryptionControl_ResourceExclusions_EgressOnlyInternetGateway_State: string;
|
|
36864
|
+
readonly VpcEncryptionControl_ResourceExclusions_EgressOnlyInternetGateway_StateMessage: string;
|
|
36865
|
+
readonly VpcEncryptionControl_ResourceExclusions_ElasticFileSystem: string;
|
|
36866
|
+
readonly VpcEncryptionControl_ResourceExclusions_ElasticFileSystem_State: string;
|
|
36867
|
+
readonly VpcEncryptionControl_ResourceExclusions_ElasticFileSystem_StateMessage: string;
|
|
36868
|
+
readonly VpcEncryptionControl_ResourceExclusions_InternetGateway: string;
|
|
36869
|
+
readonly VpcEncryptionControl_ResourceExclusions_InternetGateway_State: string;
|
|
36870
|
+
readonly VpcEncryptionControl_ResourceExclusions_InternetGateway_StateMessage: string;
|
|
36871
|
+
readonly VpcEncryptionControl_ResourceExclusions_Lambda: string;
|
|
36872
|
+
readonly VpcEncryptionControl_ResourceExclusions_Lambda_State: string;
|
|
36873
|
+
readonly VpcEncryptionControl_ResourceExclusions_Lambda_StateMessage: string;
|
|
36874
|
+
readonly VpcEncryptionControl_ResourceExclusions_NatGateway: string;
|
|
36875
|
+
readonly VpcEncryptionControl_ResourceExclusions_NatGateway_State: string;
|
|
36876
|
+
readonly VpcEncryptionControl_ResourceExclusions_NatGateway_StateMessage: string;
|
|
36877
|
+
readonly VpcEncryptionControl_ResourceExclusions_VirtualPrivateGateway: string;
|
|
36878
|
+
readonly VpcEncryptionControl_ResourceExclusions_VirtualPrivateGateway_State: string;
|
|
36879
|
+
readonly VpcEncryptionControl_ResourceExclusions_VirtualPrivateGateway_StateMessage: string;
|
|
36880
|
+
readonly VpcEncryptionControl_ResourceExclusions_VpcLattice: string;
|
|
36881
|
+
readonly VpcEncryptionControl_ResourceExclusions_VpcLattice_State: string;
|
|
36882
|
+
readonly VpcEncryptionControl_ResourceExclusions_VpcLattice_StateMessage: string;
|
|
36883
|
+
readonly VpcEncryptionControl_ResourceExclusions_VpcPeering: string;
|
|
36884
|
+
readonly VpcEncryptionControl_ResourceExclusions_VpcPeering_State: string;
|
|
36885
|
+
readonly VpcEncryptionControl_ResourceExclusions_VpcPeering_StateMessage: string;
|
|
36886
|
+
readonly VpcEncryptionControl_State: string;
|
|
36887
|
+
readonly VpcEncryptionControl_StateMessage: string;
|
|
36888
|
+
readonly VpcEncryptionControl_VpcEncryptionControlId: string;
|
|
36889
|
+
readonly VpcEncryptionControl_VpcId: string;
|
|
36815
36890
|
readonly VpcId: string;
|
|
36816
36891
|
}
|
|
36817
36892
|
|
|
@@ -41616,14 +41691,6 @@ export declare class AppConfigResourceObject {
|
|
|
41616
41691
|
});
|
|
41617
41692
|
}
|
|
41618
41693
|
|
|
41619
|
-
export declare class AppConfiguration {
|
|
41620
|
-
constructor(props: {
|
|
41621
|
-
Classification?: string;
|
|
41622
|
-
ConfigurationProperties?: Record<string, unknown>;
|
|
41623
|
-
Configurations?: InstanceGroupConfig_AppConfiguration[];
|
|
41624
|
-
});
|
|
41625
|
-
}
|
|
41626
|
-
|
|
41627
41694
|
export declare class AppCookieStickinessPolicy {
|
|
41628
41695
|
constructor(props: {
|
|
41629
41696
|
/** The name of the application cookie used for stickiness. */
|
|
@@ -79199,26 +79266,24 @@ export declare class InstanceFleetConfig_SpotResizingSpecification {
|
|
|
79199
79266
|
});
|
|
79200
79267
|
}
|
|
79201
79268
|
|
|
79202
|
-
export declare class
|
|
79269
|
+
export declare class InstanceGroupConfig_AutoScalingPolicy {
|
|
79203
79270
|
constructor(props: {
|
|
79204
|
-
|
|
79205
|
-
|
|
79206
|
-
Configurations?: InstanceGroupConfig_AppConfiguration[];
|
|
79271
|
+
Constraints: InstanceGroupConfig_ScalingConstraints;
|
|
79272
|
+
Rules: InstanceGroupConfig_ScalingRule[];
|
|
79207
79273
|
});
|
|
79208
79274
|
}
|
|
79209
79275
|
|
|
79210
|
-
export declare class
|
|
79276
|
+
export declare class InstanceGroupConfig_Configuration {
|
|
79211
79277
|
constructor(props: {
|
|
79212
|
-
|
|
79213
|
-
|
|
79278
|
+
Classification?: string;
|
|
79279
|
+
ConfigurationProperties?: Record<string, unknown>;
|
|
79280
|
+
Configurations?: InstanceGroupConfig_Configuration[];
|
|
79214
79281
|
});
|
|
79215
79282
|
}
|
|
79216
79283
|
|
|
79217
79284
|
export declare class InstanceGroupConfig_EbsBlockDeviceConfig {
|
|
79218
79285
|
constructor(props: {
|
|
79219
79286
|
VolumeSpecification: InstanceGroupConfig_VolumeSpecification;
|
|
79220
|
-
/** Use of this property can confuse CloudFormation drift detection. The EbsBlockDeviceConfigs read from the system may return a list with one entry per volume, replacing any entry specified in the template with a VolumesPerInstance greater than one by that many entries containing only the VolumeSpecification. Thus to avoid false drift detection, it is recommended to supply repeated entries in EbsBlockDeviceConfigs for any VolumeSpecification which is intended to be repeated and not to use this property.
|
|
79221
|
-
*/
|
|
79222
79287
|
VolumesPerInstance?: number;
|
|
79223
79288
|
});
|
|
79224
79289
|
}
|
|
@@ -83004,6 +83069,15 @@ export declare class KinesisVideoStreamConfig {
|
|
|
83004
83069
|
});
|
|
83005
83070
|
}
|
|
83006
83071
|
|
|
83072
|
+
export declare class KmsConfiguration {
|
|
83073
|
+
constructor(props: {
|
|
83074
|
+
/** The type of KMS key (CustomerManagedKey or ServiceManagedKey). */
|
|
83075
|
+
KeyType: "CustomerManagedKey" | "ServiceManagedKey";
|
|
83076
|
+
/** The Amazon Resource Name (ARN) of the KMS key. */
|
|
83077
|
+
KmsKeyArn?: string;
|
|
83078
|
+
});
|
|
83079
|
+
}
|
|
83080
|
+
|
|
83007
83081
|
export declare class KmsEncryptionConfig {
|
|
83008
83082
|
constructor(props: {
|
|
83009
83083
|
/** The type of customer-managed-key (CMK) used for encryption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs. */
|
|
@@ -85494,6 +85568,7 @@ export declare class ListenerRule_RuleCondition {
|
|
|
85494
85568
|
|
|
85495
85569
|
export declare class ListenerRule_SourceIpConfig {
|
|
85496
85570
|
constructor(props: {
|
|
85571
|
+
IpAddressType?: string;
|
|
85497
85572
|
/** The source IP addresses, in CIDR format. You can use both IPv4 and IPv6 addresses. Wildcards are not supported.
|
|
85498
85573
|
If you specify multiple addresses, the condition is satisfied if the source IP address of the request matches one of the CIDR blocks. This condition is not satisfied by the addresses in the X-Forwarded-For header. */
|
|
85499
85574
|
Values?: string[];
|
|
@@ -113484,6 +113559,7 @@ export declare class SourceDataSettings {
|
|
|
113484
113559
|
|
|
113485
113560
|
export declare class SourceIpConfig {
|
|
113486
113561
|
constructor(props: {
|
|
113562
|
+
IpAddressType?: string;
|
|
113487
113563
|
/** The source IP addresses, in CIDR format. You can use both IPv4 and IPv6 addresses. Wildcards are not supported.
|
|
113488
113564
|
If you specify multiple addresses, the condition is satisfied if the source IP address of the request matches one of the CIDR blocks. This condition is not satisfied by the addresses in the X-Forwarded-For header. */
|
|
113489
113565
|
Values?: string[];
|
|
@@ -118196,6 +118272,15 @@ export declare class TokenValidityUnits {
|
|
|
118196
118272
|
});
|
|
118197
118273
|
}
|
|
118198
118274
|
|
|
118275
|
+
export declare class TokenVault_KmsConfiguration {
|
|
118276
|
+
constructor(props: {
|
|
118277
|
+
/** The type of KMS key (CustomerManagedKey or ServiceManagedKey). */
|
|
118278
|
+
KeyType: "CustomerManagedKey" | "ServiceManagedKey";
|
|
118279
|
+
/** The Amazon Resource Name (ARN) of the KMS key. */
|
|
118280
|
+
KmsKeyArn?: string;
|
|
118281
|
+
});
|
|
118282
|
+
}
|
|
118283
|
+
|
|
118199
118284
|
export declare class ToolbarConfiguration {
|
|
118200
118285
|
constructor(props: {
|
|
118201
118286
|
HiddenToolbarItems?: UserSettings_ToolbarItem[];
|
|
@@ -121731,6 +121816,60 @@ export declare class Vpc_Tag {
|
|
|
121731
121816
|
});
|
|
121732
121817
|
}
|
|
121733
121818
|
|
|
121819
|
+
export declare class Vpc_VpcEncryptionControl {
|
|
121820
|
+
constructor(props: {
|
|
121821
|
+
/** The desired exclusion mode for Egress-Only Internet Gateways. */
|
|
121822
|
+
EgressOnlyInternetGatewayExclusion?: "disable" | "enable";
|
|
121823
|
+
/** The desired exclusion mode for Elastic File System. */
|
|
121824
|
+
ElasticFileSystemExclusion?: "disable" | "enable";
|
|
121825
|
+
/** The desired exclusion mode for Internet Gateways. */
|
|
121826
|
+
InternetGatewayExclusion?: "disable" | "enable";
|
|
121827
|
+
/** The desired exclusion mode for Lambda. */
|
|
121828
|
+
LambdaExclusion?: "disable" | "enable";
|
|
121829
|
+
/** The mode of the VPC encryption control. */
|
|
121830
|
+
Mode?: "enforce" | "monitor";
|
|
121831
|
+
/** The desired exclusion mode for NAT Gateways. */
|
|
121832
|
+
NatGatewayExclusion?: "disable" | "enable";
|
|
121833
|
+
ResourceExclusions?: Vpc_VpcEncryptionControlExclusions;
|
|
121834
|
+
/** The state of the VPC encryption control. */
|
|
121835
|
+
State?: string;
|
|
121836
|
+
/** A message describing the state of the VPC encryption control. */
|
|
121837
|
+
StateMessage?: string;
|
|
121838
|
+
/** The desired exclusion mode for Virtual Private Gateways. */
|
|
121839
|
+
VirtualPrivateGatewayExclusion?: "disable" | "enable";
|
|
121840
|
+
/** The ID of the VPC encryption control. */
|
|
121841
|
+
VpcEncryptionControlId?: string;
|
|
121842
|
+
/** The ID of the VPC. */
|
|
121843
|
+
VpcId?: string;
|
|
121844
|
+
/** The desired exclusion mode for VPC Lattice. */
|
|
121845
|
+
VpcLatticeExclusion?: "disable" | "enable";
|
|
121846
|
+
/** The desired exclusion mode for VPC Peering. */
|
|
121847
|
+
VpcPeeringExclusion?: "disable" | "enable";
|
|
121848
|
+
});
|
|
121849
|
+
}
|
|
121850
|
+
|
|
121851
|
+
export declare class Vpc_VpcEncryptionControlExclusion {
|
|
121852
|
+
constructor(props: {
|
|
121853
|
+
/** The exclusion state of the resource type. */
|
|
121854
|
+
State?: string;
|
|
121855
|
+
/** A message describing the exclusion state of the resource type. */
|
|
121856
|
+
StateMessage?: string;
|
|
121857
|
+
});
|
|
121858
|
+
}
|
|
121859
|
+
|
|
121860
|
+
export declare class Vpc_VpcEncryptionControlExclusions {
|
|
121861
|
+
constructor(props: {
|
|
121862
|
+
EgressOnlyInternetGateway?: Vpc_VpcEncryptionControlExclusion;
|
|
121863
|
+
ElasticFileSystem?: Vpc_VpcEncryptionControlExclusion;
|
|
121864
|
+
InternetGateway?: Vpc_VpcEncryptionControlExclusion;
|
|
121865
|
+
Lambda?: Vpc_VpcEncryptionControlExclusion;
|
|
121866
|
+
NatGateway?: Vpc_VpcEncryptionControlExclusion;
|
|
121867
|
+
VirtualPrivateGateway?: Vpc_VpcEncryptionControlExclusion;
|
|
121868
|
+
VpcLattice?: Vpc_VpcEncryptionControlExclusion;
|
|
121869
|
+
VpcPeering?: Vpc_VpcEncryptionControlExclusion;
|
|
121870
|
+
});
|
|
121871
|
+
}
|
|
121872
|
+
|
|
121734
121873
|
export declare class VpcAttachment_ProposedNetworkFunctionGroupChange {
|
|
121735
121874
|
constructor(props: {
|
|
121736
121875
|
/** The rule number in the policy document that applies to this change. */
|
|
@@ -121859,6 +121998,38 @@ export declare class VpcEgressConfiguration {
|
|
|
121859
121998
|
});
|
|
121860
121999
|
}
|
|
121861
122000
|
|
|
122001
|
+
export declare class VpcEncryptionControl {
|
|
122002
|
+
constructor(props: {
|
|
122003
|
+
/** The desired exclusion mode for Egress-Only Internet Gateways. */
|
|
122004
|
+
EgressOnlyInternetGatewayExclusion?: "disable" | "enable";
|
|
122005
|
+
/** The desired exclusion mode for Elastic File System. */
|
|
122006
|
+
ElasticFileSystemExclusion?: "disable" | "enable";
|
|
122007
|
+
/** The desired exclusion mode for Internet Gateways. */
|
|
122008
|
+
InternetGatewayExclusion?: "disable" | "enable";
|
|
122009
|
+
/** The desired exclusion mode for Lambda. */
|
|
122010
|
+
LambdaExclusion?: "disable" | "enable";
|
|
122011
|
+
/** The mode of the VPC encryption control. */
|
|
122012
|
+
Mode?: "enforce" | "monitor";
|
|
122013
|
+
/** The desired exclusion mode for NAT Gateways. */
|
|
122014
|
+
NatGatewayExclusion?: "disable" | "enable";
|
|
122015
|
+
ResourceExclusions?: Vpc_VpcEncryptionControlExclusions;
|
|
122016
|
+
/** The state of the VPC encryption control. */
|
|
122017
|
+
State?: string;
|
|
122018
|
+
/** A message describing the state of the VPC encryption control. */
|
|
122019
|
+
StateMessage?: string;
|
|
122020
|
+
/** The desired exclusion mode for Virtual Private Gateways. */
|
|
122021
|
+
VirtualPrivateGatewayExclusion?: "disable" | "enable";
|
|
122022
|
+
/** The ID of the VPC encryption control. */
|
|
122023
|
+
VpcEncryptionControlId?: string;
|
|
122024
|
+
/** The ID of the VPC. */
|
|
122025
|
+
VpcId?: string;
|
|
122026
|
+
/** The desired exclusion mode for VPC Lattice. */
|
|
122027
|
+
VpcLatticeExclusion?: "disable" | "enable";
|
|
122028
|
+
/** The desired exclusion mode for VPC Peering. */
|
|
122029
|
+
VpcPeeringExclusion?: "disable" | "enable";
|
|
122030
|
+
});
|
|
122031
|
+
}
|
|
122032
|
+
|
|
121862
122033
|
export declare class VPCEncryptionControl_ResourceExclusions {
|
|
121863
122034
|
constructor(props: {
|
|
121864
122035
|
EgressOnlyInternetGateway?: VPCEncryptionControl_VpcEncryptionControlExclusion;
|
|
@@ -121888,10 +122059,16 @@ export declare class VPCEncryptionControl_VpcEncryptionControlExclusion {
|
|
|
121888
122059
|
});
|
|
121889
122060
|
}
|
|
121890
122061
|
|
|
121891
|
-
export declare class
|
|
122062
|
+
export declare class VpcEncryptionControlExclusions {
|
|
121892
122063
|
constructor(props: {
|
|
121893
|
-
|
|
121894
|
-
|
|
122064
|
+
EgressOnlyInternetGateway?: Vpc_VpcEncryptionControlExclusion;
|
|
122065
|
+
ElasticFileSystem?: Vpc_VpcEncryptionControlExclusion;
|
|
122066
|
+
InternetGateway?: Vpc_VpcEncryptionControlExclusion;
|
|
122067
|
+
Lambda?: Vpc_VpcEncryptionControlExclusion;
|
|
122068
|
+
NatGateway?: Vpc_VpcEncryptionControlExclusion;
|
|
122069
|
+
VirtualPrivateGateway?: Vpc_VpcEncryptionControlExclusion;
|
|
122070
|
+
VpcLattice?: Vpc_VpcEncryptionControlExclusion;
|
|
122071
|
+
VpcPeering?: Vpc_VpcEncryptionControlExclusion;
|
|
121895
122072
|
});
|
|
121896
122073
|
}
|
|
121897
122074
|
|
package/src/generated/index.ts
CHANGED
|
@@ -435,7 +435,7 @@ export const DiskSnapshot = createResource("AWS::Lightsail::DiskSnapshot", "aws"
|
|
|
435
435
|
export const DistributionConfiguration = createResource("AWS::ImageBuilder::DistributionConfiguration", "aws", {"Arn":"Arn"});
|
|
436
436
|
export const DistributionTenant = createResource("AWS::CloudFront::DistributionTenant", "aws", {"Id":"Id","Arn":"Arn","DomainResults":"DomainResults","ETag":"ETag","Status":"Status","CreatedTime":"CreatedTime","LastModifiedTime":"LastModifiedTime"});
|
|
437
437
|
export const DLMLifecyclePolicy = createResource("AWS::DLM::LifecyclePolicy", "aws", {"Id":"Id","Arn":"Arn"});
|
|
438
|
-
export const DMSCertificate = createResource("AWS::DMS::Certificate", "aws", {"
|
|
438
|
+
export const DMSCertificate = createResource("AWS::DMS::Certificate", "aws", {"CertificateArn":"CertificateArn"});
|
|
439
439
|
export const DMSEndpoint = createResource("AWS::DMS::Endpoint", "aws", {"Id":"Id","ExternalId":"ExternalId"});
|
|
440
440
|
export const DMSEventSubscription = createResource("AWS::DMS::EventSubscription", "aws", {"Id":"Id"});
|
|
441
441
|
export const DMSInstanceProfile = createResource("AWS::DMS::InstanceProfile", "aws", {"InstanceProfileArn":"InstanceProfileArn","InstanceProfileCreationTime":"InstanceProfileCreationTime"});
|
|
@@ -691,7 +691,7 @@ export const Instance = createResource("AWS::EC2::Instance", "aws", {"InstanceId
|
|
|
691
691
|
export const InstanceAccessControlAttributeConfiguration = createResource("AWS::SSO::InstanceAccessControlAttributeConfiguration", "aws", {});
|
|
692
692
|
export const InstanceConnectEndpoint = createResource("AWS::EC2::InstanceConnectEndpoint", "aws", {"Id":"Id","AvailabilityZone":"AvailabilityZone","AvailabilityZoneId":"AvailabilityZoneId","CreatedAt":"CreatedAt","InstanceConnectEndpointArn":"InstanceConnectEndpointArn","NetworkInterfaceIds":"NetworkInterfaceIds","OwnerId":"OwnerId","PublicDnsNames":"PublicDnsNames","State":"State","StateMessage":"StateMessage","VpcId":"VpcId"});
|
|
693
693
|
export const InstanceFleetConfig = createResource("AWS::EMR::InstanceFleetConfig", "aws", {"Id":"Id"});
|
|
694
|
-
export const InstanceGroupConfig = createResource("AWS::EMR::InstanceGroupConfig", "aws", {"
|
|
694
|
+
export const InstanceGroupConfig = createResource("AWS::EMR::InstanceGroupConfig", "aws", {"Id":"Id"});
|
|
695
695
|
export const InstanceProfile = createResource("AWS::IAM::InstanceProfile", "aws", {"Arn":"Arn"});
|
|
696
696
|
export const InstanceSnapshot = createResource("AWS::Lightsail::InstanceSnapshot", "aws", {"Arn":"Arn","IsFromAutoSnapshot":"IsFromAutoSnapshot","Location":"Location","FromInstanceName":"FromInstanceName","FromInstanceArn":"FromInstanceArn","ResourceType":"ResourceType","SizeInGb":"SizeInGb","State":"State","SupportCode":"SupportCode"});
|
|
697
697
|
export const InstanceStorageConfig = createResource("AWS::Connect::InstanceStorageConfig", "aws", {"AssociationId":"AssociationId"});
|
|
@@ -765,6 +765,7 @@ export const KinesisStream = createResource("AWS::Kinesis::Stream", "aws", {"Arn
|
|
|
765
765
|
export const KinesisVideoStream = createResource("AWS::KinesisVideo::Stream", "aws", {"Arn":"Arn"});
|
|
766
766
|
export const KMSAlias = createResource("AWS::KMS::Alias", "aws", {});
|
|
767
767
|
export const KmsKey = createResource("AWS::KMS::Key", "aws", {"Arn":"Arn","KeyId":"KeyId"});
|
|
768
|
+
export const KnowledgeBasePolicy = createResource("AWS::Bedrock::KnowledgeBasePolicy", "aws", {"RevisionId":"RevisionId"});
|
|
768
769
|
export const Label = createResource("AWS::FraudDetector::Label", "aws", {"Arn":"Arn","CreatedTime":"CreatedTime","LastUpdatedTime":"LastUpdatedTime"});
|
|
769
770
|
export const Lag = createResource("AWS::DirectConnect::Lag", "aws", {"LagArn":"LagArn","LagId":"LagId","LagState":"LagState"});
|
|
770
771
|
export const LakeFormationResource = createResource("AWS::LakeFormation::Resource", "aws", {"Id":"Id"});
|
|
@@ -1462,6 +1463,7 @@ export const TimestreamDatabase = createResource("AWS::Timestream::Database", "a
|
|
|
1462
1463
|
export const TimestreamScheduledQuery = createResource("AWS::Timestream::ScheduledQuery", "aws", {"Arn":"Arn","SQName":"SQName","SQQueryString":"SQQueryString","SQScheduleConfiguration":"SQScheduleConfiguration","SQNotificationConfiguration":"SQNotificationConfiguration","SQScheduledQueryExecutionRoleArn":"SQScheduledQueryExecutionRoleArn","SQTargetConfiguration":"SQTargetConfiguration","SQErrorReportConfiguration":"SQErrorReportConfiguration","SQKmsKeyId":"SQKmsKeyId"});
|
|
1463
1464
|
export const TimestreamTable = createResource("AWS::Timestream::Table", "aws", {"Arn":"Arn","Name":"Name"});
|
|
1464
1465
|
export const TLSInspectionConfiguration = createResource("AWS::NetworkFirewall::TLSInspectionConfiguration", "aws", {"TLSInspectionConfigurationArn":"TLSInspectionConfigurationArn","TLSInspectionConfigurationId":"TLSInspectionConfigurationId"});
|
|
1466
|
+
export const TokenVault = createResource("AWS::BedrockAgentCore::TokenVault", "aws", {"Arn":"Arn","TokenVaultId":"TokenVaultId","KmsConfiguration":"KmsConfiguration","LastModifiedDate":"LastModifiedDate"});
|
|
1465
1467
|
export const Topic = createResource("AWS::SNS::Topic", "aws", {"TopicArn":"TopicArn"});
|
|
1466
1468
|
export const TopicInlinePolicy = createResource("AWS::SNS::TopicInlinePolicy", "aws", {});
|
|
1467
1469
|
export const TopicPolicy = createResource("AWS::SNS::TopicPolicy", "aws", {"Id":"Id"});
|
|
@@ -1495,6 +1497,7 @@ export const TransitGatewayMulticastGroupSource = createResource("AWS::EC2::Tran
|
|
|
1495
1497
|
export const TransitGatewayPeering = createResource("AWS::NetworkManager::TransitGatewayPeering", "aws", {"CoreNetworkArn":"CoreNetworkArn","PeeringId":"PeeringId","State":"State","PeeringType":"PeeringType","OwnerAccountId":"OwnerAccountId","EdgeLocation":"EdgeLocation","ResourceArn":"ResourceArn","CreatedAt":"CreatedAt","TransitGatewayPeeringAttachmentId":"TransitGatewayPeeringAttachmentId","LastModificationErrors":"LastModificationErrors"});
|
|
1496
1498
|
export const TransitGatewayPeeringAttachment = createResource("AWS::EC2::TransitGatewayPeeringAttachment", "aws", {"TransitGatewayAttachmentId":"TransitGatewayAttachmentId","Status":"Status","State":"State","CreationTime":"CreationTime"});
|
|
1497
1499
|
export const TransitGatewayPolicyTable = createResource("AWS::EC2::TransitGatewayPolicyTable", "aws", {"TransitGatewayPolicyTableId":"TransitGatewayPolicyTableId","State":"State","CreationTime":"CreationTime"});
|
|
1500
|
+
export const TransitGatewayPolicyTableAssociation = createResource("AWS::EC2::TransitGatewayPolicyTableAssociation", "aws", {"State":"State"});
|
|
1498
1501
|
export const TransitGatewayRegistration = createResource("AWS::NetworkManager::TransitGatewayRegistration", "aws", {});
|
|
1499
1502
|
export const TransitGatewayRoute = createResource("AWS::EC2::TransitGatewayRoute", "aws", {});
|
|
1500
1503
|
export const TransitGatewayRouteTable = createResource("AWS::EC2::TransitGatewayRouteTable", "aws", {"TransitGatewayRouteTableId":"TransitGatewayRouteTableId"});
|
|
@@ -1559,7 +1562,7 @@ export const VoiceChannel = createResource("AWS::Pinpoint::VoiceChannel", "aws",
|
|
|
1559
1562
|
export const VoiceIDDomain = createResource("AWS::VoiceID::Domain", "aws", {"DomainId":"DomainId"});
|
|
1560
1563
|
export const VolumeAssociation = createResource("AWS::WorkspacesInstances::VolumeAssociation", "aws", {});
|
|
1561
1564
|
export const VolumeAttachment = createResource("AWS::EC2::VolumeAttachment", "aws", {});
|
|
1562
|
-
export const Vpc = createResource("AWS::EC2::VPC", "aws", {"CidrBlockAssociations":"CidrBlockAssociations","DefaultNetworkAcl":"DefaultNetworkAcl","DefaultSecurityGroup":"DefaultSecurityGroup","Ipv6CidrBlocks":"Ipv6CidrBlocks","VpcId":"VpcId"});
|
|
1565
|
+
export const Vpc = createResource("AWS::EC2::VPC", "aws", {"CidrBlockAssociations":"CidrBlockAssociations","DefaultNetworkAcl":"DefaultNetworkAcl","DefaultSecurityGroup":"DefaultSecurityGroup","Ipv6CidrBlocks":"Ipv6CidrBlocks","VpcId":"VpcId","VpcEncryptionControl_VpcId":"VpcEncryptionControl.VpcId","VpcEncryptionControl_VpcEncryptionControlId":"VpcEncryptionControl.VpcEncryptionControlId","VpcEncryptionControl_State":"VpcEncryptionControl.State","VpcEncryptionControl_StateMessage":"VpcEncryptionControl.StateMessage","VpcEncryptionControl_ResourceExclusions":"VpcEncryptionControl.ResourceExclusions","VpcEncryptionControl_ResourceExclusions_InternetGateway":"VpcEncryptionControl.ResourceExclusions.InternetGateway","VpcEncryptionControl_ResourceExclusions_InternetGateway_State":"VpcEncryptionControl.ResourceExclusions.InternetGateway.State","VpcEncryptionControl_ResourceExclusions_InternetGateway_StateMessage":"VpcEncryptionControl.ResourceExclusions.InternetGateway.StateMessage","VpcEncryptionControl_ResourceExclusions_EgressOnlyInternetGateway":"VpcEncryptionControl.ResourceExclusions.EgressOnlyInternetGateway","VpcEncryptionControl_ResourceExclusions_EgressOnlyInternetGateway_State":"VpcEncryptionControl.ResourceExclusions.EgressOnlyInternetGateway.State","VpcEncryptionControl_ResourceExclusions_EgressOnlyInternetGateway_StateMessage":"VpcEncryptionControl.ResourceExclusions.EgressOnlyInternetGateway.StateMessage","VpcEncryptionControl_ResourceExclusions_NatGateway":"VpcEncryptionControl.ResourceExclusions.NatGateway","VpcEncryptionControl_ResourceExclusions_NatGateway_State":"VpcEncryptionControl.ResourceExclusions.NatGateway.State","VpcEncryptionControl_ResourceExclusions_NatGateway_StateMessage":"VpcEncryptionControl.ResourceExclusions.NatGateway.StateMessage","VpcEncryptionControl_ResourceExclusions_VirtualPrivateGateway":"VpcEncryptionControl.ResourceExclusions.VirtualPrivateGateway","VpcEncryptionControl_ResourceExclusions_VirtualPrivateGateway_State":"VpcEncryptionControl.ResourceExclusions.VirtualPrivateGateway.State","VpcEncryptionControl_ResourceExclusions_VirtualPrivateGateway_StateMessage":"VpcEncryptionControl.ResourceExclusions.VirtualPrivateGateway.StateMessage","VpcEncryptionControl_ResourceExclusions_VpcPeering":"VpcEncryptionControl.ResourceExclusions.VpcPeering","VpcEncryptionControl_ResourceExclusions_VpcPeering_State":"VpcEncryptionControl.ResourceExclusions.VpcPeering.State","VpcEncryptionControl_ResourceExclusions_VpcPeering_StateMessage":"VpcEncryptionControl.ResourceExclusions.VpcPeering.StateMessage","VpcEncryptionControl_ResourceExclusions_Lambda":"VpcEncryptionControl.ResourceExclusions.Lambda","VpcEncryptionControl_ResourceExclusions_Lambda_State":"VpcEncryptionControl.ResourceExclusions.Lambda.State","VpcEncryptionControl_ResourceExclusions_Lambda_StateMessage":"VpcEncryptionControl.ResourceExclusions.Lambda.StateMessage","VpcEncryptionControl_ResourceExclusions_VpcLattice":"VpcEncryptionControl.ResourceExclusions.VpcLattice","VpcEncryptionControl_ResourceExclusions_VpcLattice_State":"VpcEncryptionControl.ResourceExclusions.VpcLattice.State","VpcEncryptionControl_ResourceExclusions_VpcLattice_StateMessage":"VpcEncryptionControl.ResourceExclusions.VpcLattice.StateMessage","VpcEncryptionControl_ResourceExclusions_ElasticFileSystem":"VpcEncryptionControl.ResourceExclusions.ElasticFileSystem","VpcEncryptionControl_ResourceExclusions_ElasticFileSystem_State":"VpcEncryptionControl.ResourceExclusions.ElasticFileSystem.State","VpcEncryptionControl_ResourceExclusions_ElasticFileSystem_StateMessage":"VpcEncryptionControl.ResourceExclusions.ElasticFileSystem.StateMessage"});
|
|
1563
1566
|
export const VpcAttachment = createResource("AWS::NetworkManager::VpcAttachment", "aws", {"CoreNetworkArn":"CoreNetworkArn","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt","AttachmentType":"AttachmentType","State":"State","AttachmentId":"AttachmentId","OwnerAccountId":"OwnerAccountId","EdgeLocation":"EdgeLocation","AttachmentPolicyRuleNumber":"AttachmentPolicyRuleNumber","SegmentName":"SegmentName","NetworkFunctionGroupName":"NetworkFunctionGroupName","ResourceArn":"ResourceArn","LastModificationErrors":"LastModificationErrors"});
|
|
1564
1567
|
export const VPCBlockPublicAccessExclusion = createResource("AWS::EC2::VPCBlockPublicAccessExclusion", "aws", {"ExclusionId":"ExclusionId"});
|
|
1565
1568
|
export const VPCBlockPublicAccessOptions = createResource("AWS::EC2::VPCBlockPublicAccessOptions", "aws", {"AccountId":"AccountId","ExclusionsAllowed":"ExclusionsAllowed"});
|
|
@@ -1992,7 +1995,6 @@ export const AppConfigDeployment_Tag = createProperty("AWS::AppConfig::Deploymen
|
|
|
1992
1995
|
export const AppConfigEnvironment_Monitor = createProperty("AWS::AppConfig::Environment.Monitor", "aws");
|
|
1993
1996
|
export const AppConfigEnvironment_Tag = createProperty("AWS::AppConfig::Environment.Tag", "aws");
|
|
1994
1997
|
export const AppConfigResourceObject = createProperty("AWS::Evidently::Project.AppConfigResourceObject", "aws");
|
|
1995
|
-
export const AppConfiguration = createProperty("AWS::EMR::InstanceGroupConfig.AppConfiguration", "aws");
|
|
1996
1998
|
export const AppCookieStickinessPolicy = createProperty("AWS::ElasticLoadBalancing::LoadBalancer.AppCookieStickinessPolicy", "aws");
|
|
1997
1999
|
export const AppFlowConnector_ConnectorProvisioningConfig = createProperty("AWS::AppFlow::Connector.ConnectorProvisioningConfig", "aws");
|
|
1998
2000
|
export const AppFlowConnector_LambdaConnectorProvisioningConfig = createProperty("AWS::AppFlow::Connector.LambdaConnectorProvisioningConfig", "aws");
|
|
@@ -5836,8 +5838,8 @@ export const InstanceFleetConfig_OnDemandProvisioningSpecification = createPrope
|
|
|
5836
5838
|
export const InstanceFleetConfig_OnDemandResizingSpecification = createProperty("AWS::EMR::InstanceFleetConfig.OnDemandResizingSpecification", "aws");
|
|
5837
5839
|
export const InstanceFleetConfig_SpotProvisioningSpecification = createProperty("AWS::EMR::InstanceFleetConfig.SpotProvisioningSpecification", "aws");
|
|
5838
5840
|
export const InstanceFleetConfig_SpotResizingSpecification = createProperty("AWS::EMR::InstanceFleetConfig.SpotResizingSpecification", "aws");
|
|
5839
|
-
export const InstanceGroupConfig_AppConfiguration = createProperty("AWS::EMR::InstanceGroupConfig.AppConfiguration", "aws");
|
|
5840
5841
|
export const InstanceGroupConfig_AutoScalingPolicy = createProperty("AWS::EMR::InstanceGroupConfig.AutoScalingPolicy", "aws");
|
|
5842
|
+
export const InstanceGroupConfig_Configuration = createProperty("AWS::EMR::InstanceGroupConfig.Configuration", "aws");
|
|
5841
5843
|
export const InstanceGroupConfig_EbsBlockDeviceConfig = createProperty("AWS::EMR::InstanceGroupConfig.EbsBlockDeviceConfig", "aws");
|
|
5842
5844
|
export const InstanceGroupConfig_EbsConfiguration = createProperty("AWS::EMR::InstanceGroupConfig.EbsConfiguration", "aws");
|
|
5843
5845
|
export const InstanceGroupConfig_ScalingAction = createProperty("AWS::EMR::InstanceGroupConfig.ScalingAction", "aws");
|
|
@@ -6275,6 +6277,7 @@ export const KinesisStreamSourceConfiguration = createProperty("AWS::KinesisFire
|
|
|
6275
6277
|
export const KinesisVideoStream_StreamStorageConfiguration = createProperty("AWS::KinesisVideo::Stream.StreamStorageConfiguration", "aws");
|
|
6276
6278
|
export const KinesisVideoStream_Tag = createProperty("AWS::KinesisVideo::Stream.Tag", "aws");
|
|
6277
6279
|
export const KinesisVideoStreamConfig = createProperty("AWS::Connect::InstanceStorageConfig.KinesisVideoStreamConfig", "aws");
|
|
6280
|
+
export const KmsConfiguration = createProperty("AWS::BedrockAgentCore::TokenVault.KmsConfiguration", "aws");
|
|
6278
6281
|
export const KmsEncryptionConfig = createProperty("AWS::HealthLake::FHIRDatastore.KmsEncryptionConfig", "aws");
|
|
6279
6282
|
export const KMSEncryptionConfig = createProperty("AWS::KinesisFirehose::DeliveryStream.KMSEncryptionConfig", "aws");
|
|
6280
6283
|
export const KmsKey_Tag = createProperty("AWS::KMS::Key.Tag", "aws");
|
|
@@ -9903,6 +9906,7 @@ export const TLSInspectionConfiguration_Tag = createProperty("AWS::NetworkFirewa
|
|
|
9903
9906
|
export const TLSInspectionConfiguration_TLSInspectionConfiguration = createProperty("AWS::NetworkFirewall::TLSInspectionConfiguration.TLSInspectionConfiguration", "aws");
|
|
9904
9907
|
export const TokenExchangeGrantTypeConfig = createProperty("AWS::BedrockAgentCore::OAuth2CredentialProvider.TokenExchangeGrantTypeConfig", "aws");
|
|
9905
9908
|
export const TokenValidityUnits = createProperty("AWS::Cognito::UserPoolClient.TokenValidityUnits", "aws");
|
|
9909
|
+
export const TokenVault_KmsConfiguration = createProperty("AWS::BedrockAgentCore::TokenVault.KmsConfiguration", "aws");
|
|
9906
9910
|
export const ToolbarConfiguration = createProperty("AWS::WorkSpacesWeb::UserSettings.ToolbarConfiguration", "aws");
|
|
9907
9911
|
export const Topic_LoggingConfig = createProperty("AWS::SNS::Topic.LoggingConfig", "aws");
|
|
9908
9912
|
export const Topic_Subscription = createProperty("AWS::SNS::Topic.Subscription", "aws");
|
|
@@ -10296,6 +10300,9 @@ export const VolumeSpecification = createProperty("AWS::EMR::InstanceGroupConfig
|
|
|
10296
10300
|
export const VotingPolicy = createProperty("AWS::ManagedBlockchain::Member.VotingPolicy", "aws");
|
|
10297
10301
|
export const VPC = createProperty("AWS::Route53::HostedZone.VPC", "aws");
|
|
10298
10302
|
export const Vpc_Tag = createProperty("AWS::EC2::VPC.Tag", "aws");
|
|
10303
|
+
export const Vpc_VpcEncryptionControl = createProperty("AWS::EC2::VPC.VpcEncryptionControl", "aws");
|
|
10304
|
+
export const Vpc_VpcEncryptionControlExclusion = createProperty("AWS::EC2::VPC.VpcEncryptionControlExclusion", "aws");
|
|
10305
|
+
export const Vpc_VpcEncryptionControlExclusions = createProperty("AWS::EC2::VPC.VpcEncryptionControlExclusions", "aws");
|
|
10299
10306
|
export const VpcAttachment_ProposedNetworkFunctionGroupChange = createProperty("AWS::NetworkManager::VpcAttachment.ProposedNetworkFunctionGroupChange", "aws");
|
|
10300
10307
|
export const VpcAttachment_ProposedSegmentChange = createProperty("AWS::NetworkManager::VpcAttachment.ProposedSegmentChange", "aws");
|
|
10301
10308
|
export const VpcAttachment_Tag = createProperty("AWS::NetworkManager::VpcAttachment.Tag", "aws");
|
|
@@ -10309,10 +10316,11 @@ export const VpcConnectivity = createProperty("AWS::MSK::Cluster.VpcConnectivity
|
|
|
10309
10316
|
export const VpcConnector_Tag = createProperty("AWS::AppRunner::VpcConnector.Tag", "aws");
|
|
10310
10317
|
export const VpcDestinationProperties = createProperty("AWS::IoT::TopicRuleDestination.VpcDestinationProperties", "aws");
|
|
10311
10318
|
export const VpcEgressConfiguration = createProperty("AWS::Lambda::NetworkConnector.VpcEgressConfiguration", "aws");
|
|
10319
|
+
export const VpcEncryptionControl = createProperty("AWS::EC2::VPC.VpcEncryptionControl", "aws");
|
|
10312
10320
|
export const VPCEncryptionControl_ResourceExclusions = createProperty("AWS::EC2::VPCEncryptionControl.ResourceExclusions", "aws");
|
|
10313
10321
|
export const VPCEncryptionControl_Tag = createProperty("AWS::EC2::VPCEncryptionControl.Tag", "aws");
|
|
10314
10322
|
export const VPCEncryptionControl_VpcEncryptionControlExclusion = createProperty("AWS::EC2::VPCEncryptionControl.VpcEncryptionControlExclusion", "aws");
|
|
10315
|
-
export const
|
|
10323
|
+
export const VpcEncryptionControlExclusions = createProperty("AWS::EC2::VPC.VpcEncryptionControlExclusions", "aws");
|
|
10316
10324
|
export const VPCEndpoint_DnsOptionsSpecification = createProperty("AWS::EC2::VPCEndpoint.DnsOptionsSpecification", "aws");
|
|
10317
10325
|
export const VPCEndpoint_Tag = createProperty("AWS::EC2::VPCEndpoint.Tag", "aws");
|
|
10318
10326
|
export const VpcEndpointAssociation_SubnetMapping = createProperty("AWS::NetworkFirewall::VpcEndpointAssociation.SubnetMapping", "aws");
|