@intentius/chant-lexicon-aws 0.3.0 → 0.4.0
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 +12 -1
- package/dist/types/index.d.ts +16 -0
- package/package.json +1 -1
- package/src/generated/index.d.ts +16 -0
- package/src/generated/index.ts +2 -0
- package/src/generated/lexicon-aws.json +12 -1
package/dist/integrity.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"algorithm": "sha256",
|
|
3
3
|
"artifacts": {
|
|
4
|
-
"manifest.json": "
|
|
5
|
-
"meta.json": "
|
|
6
|
-
"types/index.d.ts": "
|
|
4
|
+
"manifest.json": "604b46a9517d497908fe3e2ed4db7cba79ba095243fd689c1410d6f83474aa91",
|
|
5
|
+
"meta.json": "1dbe92bcfe940b878217e7fa716ac8ab10979f211e5fc78d63d72ac6dbdb72fd",
|
|
6
|
+
"types/index.d.ts": "49cb81f39502f986048b3465b67c97821e986c153f618011acc6841678e21859",
|
|
7
7
|
"rules/hardcoded-region.ts": "5a0eaf7ab391231fe6cd51426ece29539cb4b36f31c8dd060956638fed55722a",
|
|
8
8
|
"rules/iam-wildcard.ts": "135d7217d278fef50939e605c5da32603ba35674b8c4b5c4d66a06c77903e945",
|
|
9
9
|
"rules/s3-encryption.ts": "c4f9f8aa8dc382ed98c7b04e820a600590cc75335a8db2e087cbfbfe4003d09e",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"skills/chant-aws.md": "4d65eb160e001f2af42eb7c622a5b498c2fd1f5afbd6c8155615c010fb265c63",
|
|
41
41
|
"skills/chant-aws-eks.md": "8789255709ff004ad0a875fd5999edcdc66fc6e33d710db058d9f42703bcfdfe"
|
|
42
42
|
},
|
|
43
|
-
"composite": "
|
|
43
|
+
"composite": "a7e1d16dd632465fc6259aea6df560425b45bc0161f7a0c78f3f55ed7e0e1a79"
|
|
44
44
|
}
|
package/dist/manifest.json
CHANGED
package/dist/meta.json
CHANGED
|
@@ -48766,7 +48766,8 @@
|
|
|
48766
48766
|
"ResourceType",
|
|
48767
48767
|
"LogFormat",
|
|
48768
48768
|
"MaxAggregationInterval",
|
|
48769
|
-
"DestinationOptions"
|
|
48769
|
+
"DestinationOptions",
|
|
48770
|
+
"TagFieldSpecifications"
|
|
48770
48771
|
],
|
|
48771
48772
|
"primaryIdentifier": [
|
|
48772
48773
|
"Id"
|
|
@@ -48782,6 +48783,11 @@
|
|
|
48782
48783
|
"kind": "property",
|
|
48783
48784
|
"lexicon": "aws"
|
|
48784
48785
|
},
|
|
48786
|
+
"FlowLog_TagFieldSpecification": {
|
|
48787
|
+
"resourceType": "AWS::EC2::FlowLog.TagFieldSpecification",
|
|
48788
|
+
"kind": "property",
|
|
48789
|
+
"lexicon": "aws"
|
|
48790
|
+
},
|
|
48785
48791
|
"FlowModule": {
|
|
48786
48792
|
"resourceType": "AWS::Connect::SecurityProfile.FlowModule",
|
|
48787
48793
|
"kind": "property",
|
|
@@ -114739,6 +114745,11 @@
|
|
|
114739
114745
|
"kind": "property",
|
|
114740
114746
|
"lexicon": "aws"
|
|
114741
114747
|
},
|
|
114748
|
+
"TagFieldSpecification": {
|
|
114749
|
+
"resourceType": "AWS::EC2::FlowLog.TagFieldSpecification",
|
|
114750
|
+
"kind": "property",
|
|
114751
|
+
"lexicon": "aws"
|
|
114752
|
+
},
|
|
114742
114753
|
"TagMap": {
|
|
114743
114754
|
"resourceType": "AWS::ImageBuilder::InfrastructureConfiguration.TagMap",
|
|
114744
114755
|
"kind": "property",
|
package/dist/types/index.d.ts
CHANGED
|
@@ -14211,6 +14211,8 @@ export declare class FlowLog {
|
|
|
14211
14211
|
LogGroupName?: string;
|
|
14212
14212
|
/** The maximum interval of time during which a flow of packets is captured and aggregated into a flow log record. You can specify 60 seconds (1 minute) or 600 seconds (10 minutes). */
|
|
14213
14213
|
MaxAggregationInterval?: number;
|
|
14214
|
+
/** The resource types and associated tags for EC2 resources associated with the EC2 Tags feature for log enrichment. */
|
|
14215
|
+
TagFieldSpecifications?: FlowLog_TagFieldSpecification[];
|
|
14214
14216
|
/** The tags to apply to the flow logs. */
|
|
14215
14217
|
Tags?: FlowLog_Tag[];
|
|
14216
14218
|
/** The type of traffic to log. You can log traffic that the resource accepts or rejects, or all traffic. */
|
|
@@ -87025,6 +87027,13 @@ export declare class FlowLog_Tag {
|
|
|
87025
87027
|
});
|
|
87026
87028
|
}
|
|
87027
87029
|
|
|
87030
|
+
export declare class FlowLog_TagFieldSpecification {
|
|
87031
|
+
constructor(props: {
|
|
87032
|
+
ResourceType: string;
|
|
87033
|
+
TagKeys: string[];
|
|
87034
|
+
});
|
|
87035
|
+
}
|
|
87036
|
+
|
|
87028
87037
|
export declare class FlowModule {
|
|
87029
87038
|
constructor(props: {
|
|
87030
87039
|
/** The identifier of the application that you want to give access to. */
|
|
@@ -152588,6 +152597,13 @@ export declare class TagCondition {
|
|
|
152588
152597
|
});
|
|
152589
152598
|
}
|
|
152590
152599
|
|
|
152600
|
+
export declare class TagFieldSpecification {
|
|
152601
|
+
constructor(props: {
|
|
152602
|
+
ResourceType: string;
|
|
152603
|
+
TagKeys: string[];
|
|
152604
|
+
});
|
|
152605
|
+
}
|
|
152606
|
+
|
|
152591
152607
|
export declare class TagMap {
|
|
152592
152608
|
constructor(props: {
|
|
152593
152609
|
/** TagKey */
|
package/package.json
CHANGED
package/src/generated/index.d.ts
CHANGED
|
@@ -14211,6 +14211,8 @@ export declare class FlowLog {
|
|
|
14211
14211
|
LogGroupName?: string;
|
|
14212
14212
|
/** The maximum interval of time during which a flow of packets is captured and aggregated into a flow log record. You can specify 60 seconds (1 minute) or 600 seconds (10 minutes). */
|
|
14213
14213
|
MaxAggregationInterval?: number;
|
|
14214
|
+
/** The resource types and associated tags for EC2 resources associated with the EC2 Tags feature for log enrichment. */
|
|
14215
|
+
TagFieldSpecifications?: FlowLog_TagFieldSpecification[];
|
|
14214
14216
|
/** The tags to apply to the flow logs. */
|
|
14215
14217
|
Tags?: FlowLog_Tag[];
|
|
14216
14218
|
/** The type of traffic to log. You can log traffic that the resource accepts or rejects, or all traffic. */
|
|
@@ -87025,6 +87027,13 @@ export declare class FlowLog_Tag {
|
|
|
87025
87027
|
});
|
|
87026
87028
|
}
|
|
87027
87029
|
|
|
87030
|
+
export declare class FlowLog_TagFieldSpecification {
|
|
87031
|
+
constructor(props: {
|
|
87032
|
+
ResourceType: string;
|
|
87033
|
+
TagKeys: string[];
|
|
87034
|
+
});
|
|
87035
|
+
}
|
|
87036
|
+
|
|
87028
87037
|
export declare class FlowModule {
|
|
87029
87038
|
constructor(props: {
|
|
87030
87039
|
/** The identifier of the application that you want to give access to. */
|
|
@@ -152588,6 +152597,13 @@ export declare class TagCondition {
|
|
|
152588
152597
|
});
|
|
152589
152598
|
}
|
|
152590
152599
|
|
|
152600
|
+
export declare class TagFieldSpecification {
|
|
152601
|
+
constructor(props: {
|
|
152602
|
+
ResourceType: string;
|
|
152603
|
+
TagKeys: string[];
|
|
152604
|
+
});
|
|
152605
|
+
}
|
|
152606
|
+
|
|
152591
152607
|
export declare class TagMap {
|
|
152592
152608
|
constructor(props: {
|
|
152593
152609
|
/** TagKey */
|
package/src/generated/index.ts
CHANGED
|
@@ -6861,6 +6861,7 @@ export const FlowAliasRoutingConfigurationListItem = createProperty("AWS::Bedroc
|
|
|
6861
6861
|
export const FlowEntitlement_Encryption = createProperty("AWS::MediaConnect::FlowEntitlement.Encryption", "aws");
|
|
6862
6862
|
export const FlowEntitlement_Tag = createProperty("AWS::MediaConnect::FlowEntitlement.Tag", "aws");
|
|
6863
6863
|
export const FlowLog_Tag = createProperty("AWS::EC2::FlowLog.Tag", "aws");
|
|
6864
|
+
export const FlowLog_TagFieldSpecification = createProperty("AWS::EC2::FlowLog.TagFieldSpecification", "aws");
|
|
6864
6865
|
export const FlowModule = createProperty("AWS::Connect::SecurityProfile.FlowModule", "aws");
|
|
6865
6866
|
export const FlowOutput_DestinationConfiguration = createProperty("AWS::MediaConnect::FlowOutput.DestinationConfiguration", "aws");
|
|
6866
6867
|
export const FlowOutput_EncodingParameters = createProperty("AWS::MediaConnect::FlowOutput.EncodingParameters", "aws");
|
|
@@ -13988,6 +13989,7 @@ export const TagAssociation_TableWithColumnsResource = createProperty("AWS::Lake
|
|
|
13988
13989
|
export const TagCollection = createProperty("AWS::DevOpsGuru::ResourceCollection.TagCollection", "aws");
|
|
13989
13990
|
export const TagColumnOperation = createProperty("AWS::QuickSight::DataSet.TagColumnOperation", "aws");
|
|
13990
13991
|
export const TagCondition = createProperty("AWS::Wisdom::AIAgent.TagCondition", "aws");
|
|
13992
|
+
export const TagFieldSpecification = createProperty("AWS::EC2::FlowLog.TagFieldSpecification", "aws");
|
|
13991
13993
|
export const TagMap = createProperty("AWS::ImageBuilder::InfrastructureConfiguration.TagMap", "aws");
|
|
13992
13994
|
export const TagProperty = createProperty("AWS::AutoScaling::AutoScalingGroup.TagProperty", "aws");
|
|
13993
13995
|
export const Taint = createProperty("AWS::EKS::Nodegroup.Taint", "aws");
|
|
@@ -48766,7 +48766,8 @@
|
|
|
48766
48766
|
"ResourceType",
|
|
48767
48767
|
"LogFormat",
|
|
48768
48768
|
"MaxAggregationInterval",
|
|
48769
|
-
"DestinationOptions"
|
|
48769
|
+
"DestinationOptions",
|
|
48770
|
+
"TagFieldSpecifications"
|
|
48770
48771
|
],
|
|
48771
48772
|
"primaryIdentifier": [
|
|
48772
48773
|
"Id"
|
|
@@ -48782,6 +48783,11 @@
|
|
|
48782
48783
|
"kind": "property",
|
|
48783
48784
|
"lexicon": "aws"
|
|
48784
48785
|
},
|
|
48786
|
+
"FlowLog_TagFieldSpecification": {
|
|
48787
|
+
"resourceType": "AWS::EC2::FlowLog.TagFieldSpecification",
|
|
48788
|
+
"kind": "property",
|
|
48789
|
+
"lexicon": "aws"
|
|
48790
|
+
},
|
|
48785
48791
|
"FlowModule": {
|
|
48786
48792
|
"resourceType": "AWS::Connect::SecurityProfile.FlowModule",
|
|
48787
48793
|
"kind": "property",
|
|
@@ -114739,6 +114745,11 @@
|
|
|
114739
114745
|
"kind": "property",
|
|
114740
114746
|
"lexicon": "aws"
|
|
114741
114747
|
},
|
|
114748
|
+
"TagFieldSpecification": {
|
|
114749
|
+
"resourceType": "AWS::EC2::FlowLog.TagFieldSpecification",
|
|
114750
|
+
"kind": "property",
|
|
114751
|
+
"lexicon": "aws"
|
|
114752
|
+
},
|
|
114742
114753
|
"TagMap": {
|
|
114743
114754
|
"resourceType": "AWS::ImageBuilder::InfrastructureConfiguration.TagMap",
|
|
114744
114755
|
"kind": "property",
|