@intentius/chant-lexicon-aws 0.0.16 → 0.0.18
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/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +277 -15
- package/dist/types/index.d.ts +259 -17
- package/package.json +2 -2
- package/src/codegen/docs.ts +3 -0
- package/src/generated/index.d.ts +259 -17
- package/src/generated/index.ts +22 -4
- package/src/generated/lexicon-aws.json +277 -15
package/dist/types/index.d.ts
CHANGED
|
@@ -3137,6 +3137,37 @@ export declare class BedrockAgentCoreGateway {
|
|
|
3137
3137
|
readonly WorkloadIdentityDetails: BedrockAgentCoreGateway_WorkloadIdentityDetails;
|
|
3138
3138
|
}
|
|
3139
3139
|
|
|
3140
|
+
export declare class BedrockAgentCorePolicy {
|
|
3141
|
+
constructor(props: {
|
|
3142
|
+
Definition: BedrockAgentCorePolicy_PolicyDefinition;
|
|
3143
|
+
/** The customer-assigned immutable name for the policy. Must be unique within the policy engine. */
|
|
3144
|
+
Name: string;
|
|
3145
|
+
/** The identifier of the policy engine which contains this policy. */
|
|
3146
|
+
PolicyEngineId: string;
|
|
3147
|
+
/** The timestamp when the policy was created. */
|
|
3148
|
+
CreatedAt?: string;
|
|
3149
|
+
/** A human-readable description of the policy's purpose and functionality. */
|
|
3150
|
+
Description?: string;
|
|
3151
|
+
/** The Amazon Resource Name (ARN) of the policy. */
|
|
3152
|
+
PolicyArn?: string;
|
|
3153
|
+
/** The unique identifier for the policy. */
|
|
3154
|
+
PolicyId?: string;
|
|
3155
|
+
/** The current status of the policy. */
|
|
3156
|
+
Status?: BedrockAgentCorePolicy_PolicyStatus;
|
|
3157
|
+
/** Additional information about the policy status. */
|
|
3158
|
+
StatusReasons?: string[];
|
|
3159
|
+
/** The timestamp when the policy was last updated. */
|
|
3160
|
+
UpdatedAt?: string;
|
|
3161
|
+
ValidationMode?: BedrockAgentCorePolicy_PolicyValidationMode;
|
|
3162
|
+
}, attributes?: CFResourceAttributes);
|
|
3163
|
+
readonly CreatedAt: string;
|
|
3164
|
+
readonly PolicyArn: string;
|
|
3165
|
+
readonly PolicyId: string;
|
|
3166
|
+
readonly Status: BedrockAgentCorePolicy_PolicyStatus;
|
|
3167
|
+
readonly StatusReasons: string[];
|
|
3168
|
+
readonly UpdatedAt: string;
|
|
3169
|
+
}
|
|
3170
|
+
|
|
3140
3171
|
export declare class BedrockDataSource {
|
|
3141
3172
|
constructor(props: {
|
|
3142
3173
|
DataSourceConfiguration: BedrockDataSource_DataSourceConfiguration;
|
|
@@ -6484,6 +6515,43 @@ export declare class ContactFlowModule {
|
|
|
6484
6515
|
readonly Status: string;
|
|
6485
6516
|
}
|
|
6486
6517
|
|
|
6518
|
+
export declare class ContactFlowModuleAlias {
|
|
6519
|
+
constructor(props: {
|
|
6520
|
+
/** The identifier of the contact flow module (ARN) this alias is tied to. */
|
|
6521
|
+
ContactFlowModuleId: string;
|
|
6522
|
+
/** The version number of the contact flow module this alias points to. */
|
|
6523
|
+
ContactFlowModuleVersion: number;
|
|
6524
|
+
/** The name of the alias. */
|
|
6525
|
+
Name: string;
|
|
6526
|
+
/** The unique identifier of the alias. */
|
|
6527
|
+
AliasId?: string;
|
|
6528
|
+
/** The identifier of the contact flow module alias (ARN). This is constructed from the ContactFlowModuleArn and AliasId. */
|
|
6529
|
+
ContactFlowModuleAliasARN?: string;
|
|
6530
|
+
/** The description of the alias. */
|
|
6531
|
+
Description?: string;
|
|
6532
|
+
}, attributes?: CFResourceAttributes);
|
|
6533
|
+
readonly AliasId: string;
|
|
6534
|
+
readonly ContactFlowModuleAliasARN: string;
|
|
6535
|
+
}
|
|
6536
|
+
|
|
6537
|
+
export declare class ContactFlowModuleVersion {
|
|
6538
|
+
constructor(props: {
|
|
6539
|
+
/** The identifier of the contact flow module (ARN) this version is tied to. */
|
|
6540
|
+
ContactFlowModuleId: string;
|
|
6541
|
+
/** The identifier of the contact flow module version (ARN). */
|
|
6542
|
+
ContactFlowModuleVersionARN?: string;
|
|
6543
|
+
/** The description of the version. */
|
|
6544
|
+
Description?: string;
|
|
6545
|
+
/** Indicates the checksum value of the latest published flow module content */
|
|
6546
|
+
FlowModuleContentSha256?: string;
|
|
6547
|
+
/** The version number of this revision */
|
|
6548
|
+
Version?: number;
|
|
6549
|
+
}, attributes?: CFResourceAttributes);
|
|
6550
|
+
readonly ContactFlowModuleVersionARN: string;
|
|
6551
|
+
readonly FlowModuleContentSha256: string;
|
|
6552
|
+
readonly Version: number;
|
|
6553
|
+
}
|
|
6554
|
+
|
|
6487
6555
|
export declare class ContactFlowVersion {
|
|
6488
6556
|
constructor(props: {
|
|
6489
6557
|
/** The ARN of the contact flow this version is tied to. */
|
|
@@ -19132,6 +19200,8 @@ export declare class LocationFSxONTAP {
|
|
|
19132
19200
|
readonly FsxFilesystemArn: string;
|
|
19133
19201
|
readonly LocationArn: string;
|
|
19134
19202
|
readonly LocationUri: string;
|
|
19203
|
+
readonly Protocol_SMB_CmkSecretConfig_SecretArn: string;
|
|
19204
|
+
readonly Protocol_SMB_ManagedSecretConfig: string;
|
|
19135
19205
|
}
|
|
19136
19206
|
|
|
19137
19207
|
export declare class LocationFSxOpenZFS {
|
|
@@ -19160,6 +19230,8 @@ export declare class LocationFSxWindows {
|
|
|
19160
19230
|
SecurityGroupArns: string[];
|
|
19161
19231
|
/** The user who has the permissions to access files and folders in the FSx for Windows file system. */
|
|
19162
19232
|
User: string;
|
|
19233
|
+
CmkSecretConfig?: LocationFSxWindows_CmkSecretConfig;
|
|
19234
|
+
CustomSecretConfig?: LocationFSxWindows_CustomSecretConfig;
|
|
19163
19235
|
/** The name of the Windows domain that the FSx for Windows server belongs to. */
|
|
19164
19236
|
Domain?: string;
|
|
19165
19237
|
/** The Amazon Resource Name (ARN) for the FSx for Windows file system. */
|
|
@@ -19168,6 +19240,7 @@ export declare class LocationFSxWindows {
|
|
|
19168
19240
|
LocationArn?: string;
|
|
19169
19241
|
/** The URL of the FSx for Windows location that was described. */
|
|
19170
19242
|
LocationUri?: string;
|
|
19243
|
+
ManagedSecretConfig?: LocationFSxWindows_ManagedSecretConfig;
|
|
19171
19244
|
/** The password of the user who has the permissions to access files and folders in the FSx for Windows file system. */
|
|
19172
19245
|
Password?: string;
|
|
19173
19246
|
/** A subdirectory in the location's path. */
|
|
@@ -19175,8 +19248,10 @@ export declare class LocationFSxWindows {
|
|
|
19175
19248
|
/** An array of key-value pairs to apply to this resource. */
|
|
19176
19249
|
Tags?: LocationFSxWindows_Tag[];
|
|
19177
19250
|
}, attributes?: CFResourceAttributes);
|
|
19251
|
+
readonly CmkSecretConfig_SecretArn: string;
|
|
19178
19252
|
readonly LocationArn: string;
|
|
19179
19253
|
readonly LocationUri: string;
|
|
19254
|
+
readonly ManagedSecretConfig: LocationFSxWindows_ManagedSecretConfig;
|
|
19180
19255
|
}
|
|
19181
19256
|
|
|
19182
19257
|
export declare class LocationHDFS {
|
|
@@ -19189,6 +19264,8 @@ export declare class LocationHDFS {
|
|
|
19189
19264
|
NameNodes: LocationHDFS_NameNode[];
|
|
19190
19265
|
/** Size of chunks (blocks) in bytes that the data is divided into when stored in the HDFS cluster. */
|
|
19191
19266
|
BlockSize?: number;
|
|
19267
|
+
CmkSecretConfig?: LocationHDFS_CmkSecretConfig;
|
|
19268
|
+
CustomSecretConfig?: LocationHDFS_CustomSecretConfig;
|
|
19192
19269
|
/** The Base64 string representation of the Keytab file. */
|
|
19193
19270
|
KerberosKeytab?: string;
|
|
19194
19271
|
/** The string representation of the Krb5Conf file, or the presigned URL to access the Krb5.conf file within an S3 bucket. */
|
|
@@ -19201,6 +19278,7 @@ export declare class LocationHDFS {
|
|
|
19201
19278
|
LocationArn?: string;
|
|
19202
19279
|
/** The URL of the HDFS location that was described. */
|
|
19203
19280
|
LocationUri?: string;
|
|
19281
|
+
ManagedSecretConfig?: LocationHDFS_ManagedSecretConfig;
|
|
19204
19282
|
QopConfiguration?: LocationHDFS_QopConfiguration;
|
|
19205
19283
|
/** Number of copies of each block that exists inside the HDFS cluster. */
|
|
19206
19284
|
ReplicationFactor?: number;
|
|
@@ -19211,8 +19289,10 @@ export declare class LocationHDFS {
|
|
|
19211
19289
|
/** An array of key-value pairs to apply to this resource. */
|
|
19212
19290
|
Tags?: LocationHDFS_Tag[];
|
|
19213
19291
|
}, attributes?: CFResourceAttributes);
|
|
19292
|
+
readonly CmkSecretConfig_SecretArn: string;
|
|
19214
19293
|
readonly LocationArn: string;
|
|
19215
19294
|
readonly LocationUri: string;
|
|
19295
|
+
readonly ManagedSecretConfig: LocationHDFS_ManagedSecretConfig;
|
|
19216
19296
|
}
|
|
19217
19297
|
|
|
19218
19298
|
export declare class LocationNFS {
|
|
@@ -24216,6 +24296,37 @@ export declare class PolicyAssociation {
|
|
|
24216
24296
|
readonly UpdatedAt: string;
|
|
24217
24297
|
}
|
|
24218
24298
|
|
|
24299
|
+
export declare class PolicyEngine {
|
|
24300
|
+
constructor(props: {
|
|
24301
|
+
/** The customer-assigned immutable name for the policy engine */
|
|
24302
|
+
Name: string;
|
|
24303
|
+
/** The timestamp when the policy engine was created */
|
|
24304
|
+
CreatedAt?: string;
|
|
24305
|
+
/** A human-readable description of the policy engine's purpose and scope */
|
|
24306
|
+
Description?: string;
|
|
24307
|
+
/** The ARN of the KMS key used to encrypt the policy engine data */
|
|
24308
|
+
EncryptionKeyArn?: string;
|
|
24309
|
+
/** The Amazon Resource Name (ARN) of the policy engine */
|
|
24310
|
+
PolicyEngineArn?: string;
|
|
24311
|
+
/** The unique identifier for the policy engine */
|
|
24312
|
+
PolicyEngineId?: string;
|
|
24313
|
+
/** The current status of the policy engine */
|
|
24314
|
+
Status?: PolicyEngine_PolicyEngineStatus;
|
|
24315
|
+
/** Additional information about the policy engine status */
|
|
24316
|
+
StatusReasons?: string[];
|
|
24317
|
+
/** A list of tags to assign to the policy engine. */
|
|
24318
|
+
Tags?: PolicyEngine_Tag[];
|
|
24319
|
+
/** The timestamp when the policy engine was last updated */
|
|
24320
|
+
UpdatedAt?: string;
|
|
24321
|
+
}, attributes?: CFResourceAttributes);
|
|
24322
|
+
readonly CreatedAt: string;
|
|
24323
|
+
readonly PolicyEngineArn: string;
|
|
24324
|
+
readonly PolicyEngineId: string;
|
|
24325
|
+
readonly Status: PolicyEngine_PolicyEngineStatus;
|
|
24326
|
+
readonly StatusReasons: string[];
|
|
24327
|
+
readonly UpdatedAt: string;
|
|
24328
|
+
}
|
|
24329
|
+
|
|
24219
24330
|
export declare class PolicyGrant {
|
|
24220
24331
|
constructor(props: {
|
|
24221
24332
|
DomainIdentifier: string;
|
|
@@ -50461,6 +50572,19 @@ export declare class BedrockAgentCoreGateway_WorkloadIdentityDetails {
|
|
|
50461
50572
|
});
|
|
50462
50573
|
}
|
|
50463
50574
|
|
|
50575
|
+
export declare class BedrockAgentCorePolicy_CedarPolicy {
|
|
50576
|
+
constructor(props: {
|
|
50577
|
+
/** The Cedar policy statement that defines the authorization logic. */
|
|
50578
|
+
Statement: string;
|
|
50579
|
+
});
|
|
50580
|
+
}
|
|
50581
|
+
|
|
50582
|
+
export declare class BedrockAgentCorePolicy_PolicyDefinition {
|
|
50583
|
+
constructor(props: {
|
|
50584
|
+
Cedar: BedrockAgentCorePolicy_CedarPolicy;
|
|
50585
|
+
});
|
|
50586
|
+
}
|
|
50587
|
+
|
|
50464
50588
|
export declare class BedrockAgentIntentConfiguration {
|
|
50465
50589
|
constructor(props: {
|
|
50466
50590
|
BedrockAgentConfiguration?: Record<string, unknown>;
|
|
@@ -55460,6 +55584,13 @@ export declare class CdnConfiguration {
|
|
|
55460
55584
|
});
|
|
55461
55585
|
}
|
|
55462
55586
|
|
|
55587
|
+
export declare class CedarPolicy {
|
|
55588
|
+
constructor(props: {
|
|
55589
|
+
/** The Cedar policy statement that defines the authorization logic. */
|
|
55590
|
+
Statement: string;
|
|
55591
|
+
});
|
|
55592
|
+
}
|
|
55593
|
+
|
|
55463
55594
|
export declare class Cell_Tag {
|
|
55464
55595
|
constructor(props: {
|
|
55465
55596
|
Key: string;
|
|
@@ -71025,6 +71156,7 @@ export declare class DestinationFlowConfig {
|
|
|
71025
71156
|
export declare class DestinationLogsConfiguration {
|
|
71026
71157
|
constructor(props: {
|
|
71027
71158
|
BackupConfiguration?: OrganizationCentralizationRule_LogsBackupConfiguration;
|
|
71159
|
+
LogGroupNameConfiguration?: OrganizationCentralizationRule_LogGroupNameConfiguration;
|
|
71028
71160
|
LogsEncryptionConfiguration?: OrganizationCentralizationRule_LogsEncryptionConfiguration;
|
|
71029
71161
|
});
|
|
71030
71162
|
}
|
|
@@ -98429,6 +98561,31 @@ export declare class LocationFSxLustre_Tag {
|
|
|
98429
98561
|
});
|
|
98430
98562
|
}
|
|
98431
98563
|
|
|
98564
|
+
export declare class LocationFSxONTAP_CmkSecretConfig {
|
|
98565
|
+
constructor(props: {
|
|
98566
|
+
/** Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager. */
|
|
98567
|
+
KmsKeyArn?: string;
|
|
98568
|
+
/** Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. */
|
|
98569
|
+
SecretArn?: string;
|
|
98570
|
+
});
|
|
98571
|
+
}
|
|
98572
|
+
|
|
98573
|
+
export declare class LocationFSxONTAP_CustomSecretConfig {
|
|
98574
|
+
constructor(props: {
|
|
98575
|
+
/** Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. */
|
|
98576
|
+
SecretAccessRoleArn: string;
|
|
98577
|
+
/** Specifies the ARN for a customer created AWS Secrets Manager secret. */
|
|
98578
|
+
SecretArn: string;
|
|
98579
|
+
});
|
|
98580
|
+
}
|
|
98581
|
+
|
|
98582
|
+
export declare class LocationFSxONTAP_ManagedSecretConfig {
|
|
98583
|
+
constructor(props: {
|
|
98584
|
+
/** Specifies the ARN for an AWS Secrets Manager secret. */
|
|
98585
|
+
SecretArn: string;
|
|
98586
|
+
});
|
|
98587
|
+
}
|
|
98588
|
+
|
|
98432
98589
|
export declare class LocationFSxONTAP_NFS {
|
|
98433
98590
|
constructor(props: {
|
|
98434
98591
|
MountOptions: LocationFSxONTAP_NfsMountOptions;
|
|
@@ -98452,12 +98609,15 @@ export declare class LocationFSxONTAP_Protocol {
|
|
|
98452
98609
|
export declare class LocationFSxONTAP_SMB {
|
|
98453
98610
|
constructor(props: {
|
|
98454
98611
|
MountOptions: LocationFSxONTAP_SmbMountOptions;
|
|
98455
|
-
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
98456
|
-
Password: string;
|
|
98457
98612
|
/** The user who can mount the share, has the permissions to access files and folders in the SMB share. */
|
|
98458
98613
|
User: string;
|
|
98614
|
+
CmkSecretConfig?: LocationFSxONTAP_CmkSecretConfig;
|
|
98615
|
+
CustomSecretConfig?: LocationFSxONTAP_CustomSecretConfig;
|
|
98459
98616
|
/** The name of the Windows domain that the SMB server belongs to. */
|
|
98460
98617
|
Domain?: string;
|
|
98618
|
+
ManagedSecretConfig?: LocationFSxONTAP_ManagedSecretConfig;
|
|
98619
|
+
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
98620
|
+
Password?: string;
|
|
98461
98621
|
});
|
|
98462
98622
|
}
|
|
98463
98623
|
|
|
@@ -98505,6 +98665,31 @@ export declare class LocationFSxOpenZFS_Tag {
|
|
|
98505
98665
|
});
|
|
98506
98666
|
}
|
|
98507
98667
|
|
|
98668
|
+
export declare class LocationFSxWindows_CmkSecretConfig {
|
|
98669
|
+
constructor(props: {
|
|
98670
|
+
/** Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager. */
|
|
98671
|
+
KmsKeyArn?: string;
|
|
98672
|
+
/** Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. */
|
|
98673
|
+
SecretArn?: string;
|
|
98674
|
+
});
|
|
98675
|
+
}
|
|
98676
|
+
|
|
98677
|
+
export declare class LocationFSxWindows_CustomSecretConfig {
|
|
98678
|
+
constructor(props: {
|
|
98679
|
+
/** Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. */
|
|
98680
|
+
SecretAccessRoleArn: string;
|
|
98681
|
+
/** Specifies the ARN for a customer created AWS Secrets Manager secret. */
|
|
98682
|
+
SecretArn: string;
|
|
98683
|
+
});
|
|
98684
|
+
}
|
|
98685
|
+
|
|
98686
|
+
export declare class LocationFSxWindows_ManagedSecretConfig {
|
|
98687
|
+
constructor(props: {
|
|
98688
|
+
/** Specifies the ARN for an AWS Secrets Manager secret. */
|
|
98689
|
+
SecretArn: string;
|
|
98690
|
+
});
|
|
98691
|
+
}
|
|
98692
|
+
|
|
98508
98693
|
export declare class LocationFSxWindows_Tag {
|
|
98509
98694
|
constructor(props: {
|
|
98510
98695
|
/** The key for an AWS resource tag. */
|
|
@@ -98514,6 +98699,31 @@ export declare class LocationFSxWindows_Tag {
|
|
|
98514
98699
|
});
|
|
98515
98700
|
}
|
|
98516
98701
|
|
|
98702
|
+
export declare class LocationHDFS_CmkSecretConfig {
|
|
98703
|
+
constructor(props: {
|
|
98704
|
+
/** Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager. */
|
|
98705
|
+
KmsKeyArn?: string;
|
|
98706
|
+
/** Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. */
|
|
98707
|
+
SecretArn?: string;
|
|
98708
|
+
});
|
|
98709
|
+
}
|
|
98710
|
+
|
|
98711
|
+
export declare class LocationHDFS_CustomSecretConfig {
|
|
98712
|
+
constructor(props: {
|
|
98713
|
+
/** Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. */
|
|
98714
|
+
SecretAccessRoleArn: string;
|
|
98715
|
+
/** Specifies the ARN for a customer created AWS Secrets Manager secret. */
|
|
98716
|
+
SecretArn: string;
|
|
98717
|
+
});
|
|
98718
|
+
}
|
|
98719
|
+
|
|
98720
|
+
export declare class LocationHDFS_ManagedSecretConfig {
|
|
98721
|
+
constructor(props: {
|
|
98722
|
+
/** Specifies the ARN for an AWS Secrets Manager secret. */
|
|
98723
|
+
SecretArn: string;
|
|
98724
|
+
});
|
|
98725
|
+
}
|
|
98726
|
+
|
|
98517
98727
|
export declare class LocationHDFS_NameNode {
|
|
98518
98728
|
constructor(props: {
|
|
98519
98729
|
/** The DNS name or IP address of the Name Node in the customer's on premises HDFS cluster. */
|
|
@@ -98834,6 +99044,12 @@ export declare class LogGroup_Tag {
|
|
|
98834
99044
|
});
|
|
98835
99045
|
}
|
|
98836
99046
|
|
|
99047
|
+
export declare class LogGroupNameConfiguration {
|
|
99048
|
+
constructor(props: {
|
|
99049
|
+
LogGroupNamePattern: string;
|
|
99050
|
+
});
|
|
99051
|
+
}
|
|
99052
|
+
|
|
98837
99053
|
export declare class LogicallyAirGappedBackupVault_NotificationObjectType {
|
|
98838
99054
|
constructor(props: {
|
|
98839
99055
|
BackupVaultEvents: string[];
|
|
@@ -111158,10 +111374,17 @@ export declare class OrganizationCentralizationRule_CentralizationRuleSource {
|
|
|
111158
111374
|
export declare class OrganizationCentralizationRule_DestinationLogsConfiguration {
|
|
111159
111375
|
constructor(props: {
|
|
111160
111376
|
BackupConfiguration?: OrganizationCentralizationRule_LogsBackupConfiguration;
|
|
111377
|
+
LogGroupNameConfiguration?: OrganizationCentralizationRule_LogGroupNameConfiguration;
|
|
111161
111378
|
LogsEncryptionConfiguration?: OrganizationCentralizationRule_LogsEncryptionConfiguration;
|
|
111162
111379
|
});
|
|
111163
111380
|
}
|
|
111164
111381
|
|
|
111382
|
+
export declare class OrganizationCentralizationRule_LogGroupNameConfiguration {
|
|
111383
|
+
constructor(props: {
|
|
111384
|
+
LogGroupNamePattern: string;
|
|
111385
|
+
});
|
|
111386
|
+
}
|
|
111387
|
+
|
|
111165
111388
|
export declare class OrganizationCentralizationRule_LogsBackupConfiguration {
|
|
111166
111389
|
constructor(props: {
|
|
111167
111390
|
Region: string;
|
|
@@ -115285,19 +115508,6 @@ export declare class Point {
|
|
|
115285
115508
|
});
|
|
115286
115509
|
}
|
|
115287
115510
|
|
|
115288
|
-
export declare class PolicyDefinition {
|
|
115289
|
-
constructor(props: {
|
|
115290
|
-
/** The rules definition block of an AutomatedReasoningPolicyDefinition. */
|
|
115291
|
-
Rules?: any;
|
|
115292
|
-
/** The types definition block of an AutomatedReasoningPolicyDefinition. */
|
|
115293
|
-
Types?: any;
|
|
115294
|
-
/** The variables definition block of an AutomatedReasoningPolicyDefinition. */
|
|
115295
|
-
Variables?: any;
|
|
115296
|
-
/** The policy format version. */
|
|
115297
|
-
Version?: string;
|
|
115298
|
-
});
|
|
115299
|
-
}
|
|
115300
|
-
|
|
115301
115511
|
export declare class PolicyDefinitionRule {
|
|
115302
115512
|
constructor(props: {
|
|
115303
115513
|
/** The SMT expression for this rule */
|
|
@@ -115369,6 +115579,13 @@ export declare class PolicyDetails {
|
|
|
115369
115579
|
});
|
|
115370
115580
|
}
|
|
115371
115581
|
|
|
115582
|
+
export declare class PolicyEngine_Tag {
|
|
115583
|
+
constructor(props: {
|
|
115584
|
+
Key: string;
|
|
115585
|
+
Value: string;
|
|
115586
|
+
});
|
|
115587
|
+
}
|
|
115588
|
+
|
|
115372
115589
|
export declare class PolicyGrant_AddToProjectMemberPoolPolicyGrantDetail {
|
|
115373
115590
|
constructor(props: {
|
|
115374
115591
|
IncludeChildDomainUnits?: boolean;
|
|
@@ -139966,12 +140183,15 @@ export declare class SlurmRest {
|
|
|
139966
140183
|
export declare class SMB {
|
|
139967
140184
|
constructor(props: {
|
|
139968
140185
|
MountOptions: LocationFSxONTAP_SmbMountOptions;
|
|
139969
|
-
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
139970
|
-
Password: string;
|
|
139971
140186
|
/** The user who can mount the share, has the permissions to access files and folders in the SMB share. */
|
|
139972
140187
|
User: string;
|
|
140188
|
+
CmkSecretConfig?: LocationFSxONTAP_CmkSecretConfig;
|
|
140189
|
+
CustomSecretConfig?: LocationFSxONTAP_CustomSecretConfig;
|
|
139973
140190
|
/** The name of the Windows domain that the SMB server belongs to. */
|
|
139974
140191
|
Domain?: string;
|
|
140192
|
+
ManagedSecretConfig?: LocationFSxONTAP_ManagedSecretConfig;
|
|
140193
|
+
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
140194
|
+
Password?: string;
|
|
139975
140195
|
});
|
|
139976
140196
|
}
|
|
139977
140197
|
|
|
@@ -156816,6 +157036,19 @@ export type BedrockAgentCoreGateway_InboundTokenClaimValueType = "STRING" | "STR
|
|
|
156816
157036
|
|
|
156817
157037
|
export type BedrockAgentCoreGateway_SearchType = "SEMANTIC";
|
|
156818
157038
|
|
|
157039
|
+
export type BedrockAgentCorePolicy_PolicyStatus =
|
|
157040
|
+
| "ACTIVE"
|
|
157041
|
+
| "CREATE_FAILED"
|
|
157042
|
+
| "CREATING"
|
|
157043
|
+
| "DELETE_FAILED"
|
|
157044
|
+
| "DELETING"
|
|
157045
|
+
| "UPDATE_FAILED"
|
|
157046
|
+
| "UPDATING";
|
|
157047
|
+
|
|
157048
|
+
export type BedrockAgentCorePolicy_PolicyValidationMode =
|
|
157049
|
+
| "FAIL_ON_ANY_FINDINGS"
|
|
157050
|
+
| "IGNORE_ALL_FINDINGS";
|
|
157051
|
+
|
|
156819
157052
|
export type BedrockDataSource_ChunkingStrategy =
|
|
156820
157053
|
| "FIXED_SIZE"
|
|
156821
157054
|
| "HIERARCHICAL"
|
|
@@ -159507,6 +159740,15 @@ export type Plugin_PluginType =
|
|
|
159507
159740
|
| "ZENDESK"
|
|
159508
159741
|
| "ZENDESK_SUITE";
|
|
159509
159742
|
|
|
159743
|
+
export type PolicyEngine_PolicyEngineStatus =
|
|
159744
|
+
| "ACTIVE"
|
|
159745
|
+
| "CREATE_FAILED"
|
|
159746
|
+
| "CREATING"
|
|
159747
|
+
| "DELETE_FAILED"
|
|
159748
|
+
| "DELETING"
|
|
159749
|
+
| "UPDATE_FAILED"
|
|
159750
|
+
| "UPDATING";
|
|
159751
|
+
|
|
159510
159752
|
export type PolicyGrant_DomainUnitDesignation = "OWNER";
|
|
159511
159753
|
|
|
159512
159754
|
export type PolicyGrant_ManagedPolicyType =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentius/chant-lexicon-aws",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"prepack": "bun run generate && bun run bundle && bun run validate"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@intentius/chant": "0.0.
|
|
28
|
+
"@intentius/chant": "0.0.18",
|
|
29
29
|
"fflate": "^0.8.2",
|
|
30
30
|
"js-yaml": "^4.1.0"
|
|
31
31
|
},
|
package/src/codegen/docs.ts
CHANGED
|
@@ -1107,6 +1107,9 @@ The lexicon also provides MCP (Model Context Protocol) tools and resources that
|
|
|
1107
1107
|
| \`examples/basic-stack\` | Example stack with S3 bucket and IAM role |`,
|
|
1108
1108
|
},
|
|
1109
1109
|
],
|
|
1110
|
+
sidebarExtra: [
|
|
1111
|
+
{ label: "Deploying to EKS", slug: "eks-kubernetes" },
|
|
1112
|
+
],
|
|
1110
1113
|
};
|
|
1111
1114
|
|
|
1112
1115
|
log("Generating AWS documentation...");
|