@intentius/chant-lexicon-aws 0.34.0 → 0.34.1

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.
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "algorithm": "sha256",
3
3
  "artifacts": {
4
- "manifest.json": "3c7b5e21a39f86218b481199f51f2d045af99311e67dbae6d3f4f0a7a3569506",
5
- "meta.json": "ffe08a1fc279b969d8760332917ddaa0fdf2eca083f861d608f2c55ee8ec147d",
6
- "types/index.d.ts": "cd6ca943e0753ae32530aadad245b72f910990d5ee7244d5e79cf22f9ff0cf1f",
4
+ "manifest.json": "19b9bbcad97c5b76a22524d8a05039ecbca4752d72db220091c254f0afab5380",
5
+ "meta.json": "f430880414df1288383dc91c313e50ecab26d8e7bcce520bf894eeb89b220e9f",
6
+ "types/index.d.ts": "4d6f07139586f3d7fc4d9ea0756161587709a39e21f20fbdb05e31f32a44f1c1",
7
7
  "rules/hardcoded-region.ts": "5a0eaf7ab391231fe6cd51426ece29539cb4b36f31c8dd060956638fed55722a",
8
8
  "rules/iam-wildcard.ts": "135d7217d278fef50939e605c5da32603ba35674b8c4b5c4d66a06c77903e945",
9
9
  "rules/s3-encryption.ts": "c4f9f8aa8dc382ed98c7b04e820a600590cc75335a8db2e087cbfbfe4003d09e",
@@ -59,5 +59,5 @@
59
59
  "skills/chant-aws-eks.md": "8789255709ff004ad0a875fd5999edcdc66fc6e33d710db058d9f42703bcfdfe",
60
60
  "skills/chant-aws-carve-terraform.md": "f4c6fe1c702250665f90d82b3bdaba5ea50ae75e380a8ae321dad6eb1c39683e"
61
61
  },
62
- "composite": "b23b837556489ce43cf6d8ba4ebb13ecf700868ac0cd8698be4af926585915c3"
62
+ "composite": "cdde845bc0699082a87af1b7b7558e73c1ddc0db5310eaad60aa26ce8814c41b"
63
63
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws",
3
- "version": "0.34.0",
3
+ "version": "0.34.1",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "AWS",
6
6
  "intrinsics": [
package/dist/meta.json CHANGED
@@ -91208,6 +91208,36 @@
91208
91208
  "kind": "property",
91209
91209
  "lexicon": "aws"
91210
91210
  },
91211
+ "ServiceSetting": {
91212
+ "resourceType": "AWS::SSM::ServiceSetting",
91213
+ "kind": "resource",
91214
+ "lexicon": "aws",
91215
+ "attrs": {
91216
+ "Status": "Status",
91217
+ "LastModifiedDate": "LastModifiedDate",
91218
+ "LastModifiedUser": "LastModifiedUser",
91219
+ "Arn": "Arn"
91220
+ },
91221
+ "propertyConstraints": {
91222
+ "SettingId": {
91223
+ "minLength": 1,
91224
+ "maxLength": 1000
91225
+ },
91226
+ "SettingValue": {
91227
+ "minLength": 1,
91228
+ "maxLength": 4096
91229
+ },
91230
+ "LastModifiedDate": {
91231
+ "format": "date-time"
91232
+ }
91233
+ },
91234
+ "createOnly": [
91235
+ "SettingId"
91236
+ ],
91237
+ "primaryIdentifier": [
91238
+ "Arn"
91239
+ ]
91240
+ },
91211
91241
  "ServiceSoftwareOptions": {
91212
91242
  "resourceType": "AWS::OpenSearchService::Domain.ServiceSoftwareOptions",
91213
91243
  "kind": "property",
@@ -32891,6 +32891,27 @@ export declare class ServiceProfile {
32891
32891
  readonly LoRaWAN_UlRatePolicy: string;
32892
32892
  }
32893
32893
 
32894
+ export declare class ServiceSetting {
32895
+ constructor(props: {
32896
+ /** The ID of the service setting, such as /ssm/parameter-store/high-throughput-enabled. */
32897
+ SettingId: string;
32898
+ /** The value of the service setting. */
32899
+ SettingValue: string;
32900
+ /** The ARN of the service setting. */
32901
+ Arn?: string;
32902
+ /** The last time the service setting was modified. */
32903
+ LastModifiedDate?: string;
32904
+ /** The ARN of the last modified user. */
32905
+ LastModifiedUser?: string;
32906
+ /** The status of the service setting. The value can be Default, Customized or PendingUpdate. */
32907
+ Status?: string;
32908
+ }, attributes?: CFResourceAttributes);
32909
+ readonly Arn: string;
32910
+ readonly LastModifiedDate: string;
32911
+ readonly LastModifiedUser: string;
32912
+ readonly Status: string;
32913
+ }
32914
+
32894
32915
  export declare class ServiceTemplate {
32895
32916
  constructor(props: {
32896
32917
  /** <p>The Amazon Resource Name (ARN) of the service template.</p> */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-aws",
3
- "version": "0.34.0",
3
+ "version": "0.34.1",
4
4
  "description": "AWS CloudFormation lexicon for chant — declarative IaC in TypeScript",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://intentius.io/chant",
@@ -80,7 +80,7 @@
80
80
  "typescript": "^5.9.3"
81
81
  },
82
82
  "peerDependencies": {
83
- "@intentius/chant": "^0.34.0",
83
+ "@intentius/chant": "^0.34.1",
84
84
  "typescript": "^5.9.3"
85
85
  }
86
86
  }
@@ -32891,6 +32891,27 @@ export declare class ServiceProfile {
32891
32891
  readonly LoRaWAN_UlRatePolicy: string;
32892
32892
  }
32893
32893
 
32894
+ export declare class ServiceSetting {
32895
+ constructor(props: {
32896
+ /** The ID of the service setting, such as /ssm/parameter-store/high-throughput-enabled. */
32897
+ SettingId: string;
32898
+ /** The value of the service setting. */
32899
+ SettingValue: string;
32900
+ /** The ARN of the service setting. */
32901
+ Arn?: string;
32902
+ /** The last time the service setting was modified. */
32903
+ LastModifiedDate?: string;
32904
+ /** The ARN of the last modified user. */
32905
+ LastModifiedUser?: string;
32906
+ /** The status of the service setting. The value can be Default, Customized or PendingUpdate. */
32907
+ Status?: string;
32908
+ }, attributes?: CFResourceAttributes);
32909
+ readonly Arn: string;
32910
+ readonly LastModifiedDate: string;
32911
+ readonly LastModifiedUser: string;
32912
+ readonly Status: string;
32913
+ }
32914
+
32894
32915
  export declare class ServiceTemplate {
32895
32916
  constructor(props: {
32896
32917
  /** <p>The Amazon Resource Name (ARN) of the service template.</p> */
@@ -1356,6 +1356,7 @@ export const ServiceNetworkServiceAssociation = createResource("AWS::VpcLattice:
1356
1356
  export const ServiceNetworkVpcAssociation = createResource("AWS::VpcLattice::ServiceNetworkVpcAssociation", "aws", {"Arn":"Arn","CreatedAt":"CreatedAt","Id":"Id","ServiceNetworkArn":"ServiceNetworkArn","ServiceNetworkId":"ServiceNetworkId","ServiceNetworkName":"ServiceNetworkName","Status":"Status","VpcId":"VpcId"});
1357
1357
  export const ServicePrincipalName = createResource("AWS::PCAConnectorAD::ServicePrincipalName", "aws", {});
1358
1358
  export const ServiceProfile = createResource("AWS::IoTWireless::ServiceProfile", "aws", {"Id":"Id","Arn":"Arn","LoRaWAN_UlRate":"LoRaWAN.UlRate","LoRaWAN_UlBucketSize":"LoRaWAN.UlBucketSize","LoRaWAN_UlRatePolicy":"LoRaWAN.UlRatePolicy","LoRaWAN_DlRate":"LoRaWAN.DlRate","LoRaWAN_DlBucketSize":"LoRaWAN.DlBucketSize","LoRaWAN_DlRatePolicy":"LoRaWAN.DlRatePolicy","LoRaWAN_DevStatusReqFreq":"LoRaWAN.DevStatusReqFreq","LoRaWAN_ReportDevStatusBattery":"LoRaWAN.ReportDevStatusBattery","LoRaWAN_ReportDevStatusMargin":"LoRaWAN.ReportDevStatusMargin","LoRaWAN_DrMin":"LoRaWAN.DrMin","LoRaWAN_DrMax":"LoRaWAN.DrMax","LoRaWAN_ChannelMask":"LoRaWAN.ChannelMask","LoRaWAN_HrAllowed":"LoRaWAN.HrAllowed","LoRaWAN_NwkGeoLoc":"LoRaWAN.NwkGeoLoc","LoRaWAN_TargetPer":"LoRaWAN.TargetPer","LoRaWAN_MinGwDiversity":"LoRaWAN.MinGwDiversity"});
1359
+ export const ServiceSetting = createResource("AWS::SSM::ServiceSetting", "aws", {"Status":"Status","LastModifiedDate":"LastModifiedDate","LastModifiedUser":"LastModifiedUser","Arn":"Arn"});
1359
1360
  export const ServiceTemplate = createResource("AWS::Proton::ServiceTemplate", "aws", {"Arn":"Arn"});
1360
1361
  export const SESConfigurationSet = createResource("AWS::SES::ConfigurationSet", "aws", {});
1361
1362
  export const SESConfigurationSetEventDestination = createResource("AWS::SES::ConfigurationSetEventDestination", "aws", {"Id":"Id"});
@@ -91208,6 +91208,36 @@
91208
91208
  "kind": "property",
91209
91209
  "lexicon": "aws"
91210
91210
  },
91211
+ "ServiceSetting": {
91212
+ "resourceType": "AWS::SSM::ServiceSetting",
91213
+ "kind": "resource",
91214
+ "lexicon": "aws",
91215
+ "attrs": {
91216
+ "Status": "Status",
91217
+ "LastModifiedDate": "LastModifiedDate",
91218
+ "LastModifiedUser": "LastModifiedUser",
91219
+ "Arn": "Arn"
91220
+ },
91221
+ "propertyConstraints": {
91222
+ "SettingId": {
91223
+ "minLength": 1,
91224
+ "maxLength": 1000
91225
+ },
91226
+ "SettingValue": {
91227
+ "minLength": 1,
91228
+ "maxLength": 4096
91229
+ },
91230
+ "LastModifiedDate": {
91231
+ "format": "date-time"
91232
+ }
91233
+ },
91234
+ "createOnly": [
91235
+ "SettingId"
91236
+ ],
91237
+ "primaryIdentifier": [
91238
+ "Arn"
91239
+ ]
91240
+ },
91211
91241
  "ServiceSoftwareOptions": {
91212
91242
  "resourceType": "AWS::OpenSearchService::Domain.ServiceSoftwareOptions",
91213
91243
  "kind": "property",