iam-floyd 0.809.0 → 0.811.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/README.md CHANGED
@@ -16,8 +16,8 @@
16
16
  Support for:
17
17
 
18
18
  - 451 Services
19
- - 21272 Actions
20
- - 2248 Resource Types
19
+ - 21296 Actions
20
+ - 2252 Resource Types
21
21
  - 2374 Condition keys
22
22
  <!-- /stats -->
23
23
 
@@ -77,6 +77,14 @@ export declare class Config extends PolicyStatement {
77
77
  * https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteConformancePack.html
78
78
  */
79
79
  toDeleteConformancePack(): this;
80
+ /**
81
+ * Grants permission to delete a connector configuration
82
+ *
83
+ * Access Level: Write
84
+ *
85
+ * https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteConnector.html
86
+ */
87
+ toDeleteConnector(): this;
80
88
  /**
81
89
  * Grants permission to delete the delivery channel
82
90
  *
@@ -478,6 +486,14 @@ export declare class Config extends PolicyStatement {
478
486
  * https://docs.aws.amazon.com/config/latest/APIReference/API_GetConformancePackComplianceSummary.html
479
487
  */
480
488
  toGetConformancePackComplianceSummary(): this;
489
+ /**
490
+ * Grants permission to return the details of a specific connector configuration
491
+ *
492
+ * Access Level: Read
493
+ *
494
+ * https://docs.aws.amazon.com/config/latest/APIReference/API_GetConnector.html
495
+ */
496
+ toGetConnector(): this;
481
497
  /**
482
498
  * Grants permission to return the policy definition containing the logic for your AWS Config Custom Policy rule
483
499
  *
@@ -566,6 +582,14 @@ export declare class Config extends PolicyStatement {
566
582
  * https://docs.aws.amazon.com/config/latest/APIReference/API_ListConformancePackComplianceScores.html
567
583
  */
568
584
  toListConformancePackComplianceScores(): this;
585
+ /**
586
+ * Grants permission to list all connectors in the AWS account and region
587
+ *
588
+ * Access Level: List
589
+ *
590
+ * https://docs.aws.amazon.com/config/latest/APIReference/API_ListConnectors.html
591
+ */
592
+ toListConnectors(): this;
569
593
  /**
570
594
  * Grants permission to accept a resource type and returns a list of resource identifiers for the resources of that type
571
595
  *
@@ -669,6 +693,21 @@ export declare class Config extends PolicyStatement {
669
693
  * https://docs.aws.amazon.com/config/latest/APIReference/API_PutConformancePack.html
670
694
  */
671
695
  toPutConformancePack(): this;
696
+ /**
697
+ * Grants permission to create a connector configuration that contains provider identity information, as well as other optional provider-specific information required for third-party recording
698
+ *
699
+ * Access Level: Write
700
+ *
701
+ * Possible conditions:
702
+ * - .ifAwsRequestTag()
703
+ * - .ifAwsTagKeys()
704
+ *
705
+ * Dependent actions:
706
+ * - iam:CreateServiceLinkedRole
707
+ *
708
+ * https://docs.aws.amazon.com/config/latest/APIReference/API_PutConnector.html
709
+ */
710
+ toPutConnector(): this;
672
711
  /**
673
712
  * Grants permission to create a delivery channel object to deliver configuration information to an Amazon S3 bucket and Amazon SNS topic
674
713
  *
@@ -786,6 +825,22 @@ export declare class Config extends PolicyStatement {
786
825
  * https://docs.aws.amazon.com/config/latest/APIReference/API_PutStoredQuery.html
787
826
  */
788
827
  toPutStoredQuery(): this;
828
+ /**
829
+ * Grants permission to create or update a service-linked configuration recorder for a third-party provider linked to a specific AWS partner service
830
+ *
831
+ * Access Level: Write
832
+ *
833
+ * Possible conditions:
834
+ * - .ifAwsRequestTag()
835
+ * - .ifAwsTagKeys()
836
+ * - .ifConfigurationRecorderServicePrincipal()
837
+ *
838
+ * Dependent actions:
839
+ * - config:GetConnector
840
+ *
841
+ * https://docs.aws.amazon.com/config/latest/APIReference/API_PutThirdPartyServiceLinkedConfigurationRecorder.html
842
+ */
843
+ toPutThirdPartyServiceLinkedConfigurationRecorder(): this;
789
844
  /**
790
845
  * Grants permission to accept a structured query language (SQL) SELECT command and an aggregator to query configuration state of AWS resources across multiple accounts and regions, performs the corresponding search, and returns resource configurations matching the properties
791
846
  *
@@ -999,6 +1054,22 @@ export declare class Config extends PolicyStatement {
999
1054
  * - .ifAwsResourceTag()
1000
1055
  */
1001
1056
  onConfigurationRecorder(recorderName: string, recorderId: string, account?: string, region?: string, partition?: string): this;
1057
+ /**
1058
+ * Adds a resource of type Connector to the statement
1059
+ *
1060
+ * https://docs.aws.amazon.com/config/latest/APIReference/API_Connector.html
1061
+ *
1062
+ * @param provider - Identifier for the provider.
1063
+ * @param providerId - Identifier for the providerId.
1064
+ * @param connectorId - Identifier for the connectorId.
1065
+ * @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account.
1066
+ * @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region.
1067
+ * @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition.
1068
+ *
1069
+ * Possible conditions:
1070
+ * - .ifAwsResourceTag()
1071
+ */
1072
+ onConnector(provider: string, providerId: string, connectorId: string, account?: string, region?: string, partition?: string): this;
1002
1073
  /**
1003
1074
  * Filters access by the allowed set of values for each of the tags
1004
1075
  *
@@ -1009,8 +1080,10 @@ export declare class Config extends PolicyStatement {
1009
1080
  * - .toPutConfigRule()
1010
1081
  * - .toPutConfigurationAggregator()
1011
1082
  * - .toPutConfigurationRecorder()
1083
+ * - .toPutConnector()
1012
1084
  * - .toPutServiceLinkedConfigurationRecorder()
1013
1085
  * - .toPutStoredQuery()
1086
+ * - .toPutThirdPartyServiceLinkedConfigurationRecorder()
1014
1087
  * - .toTagResource()
1015
1088
  *
1016
1089
  * @param tagKey The tag key to check
@@ -1032,6 +1105,7 @@ export declare class Config extends PolicyStatement {
1032
1105
  * - OrganizationConformancePack
1033
1106
  * - StoredQuery
1034
1107
  * - ConfigurationRecorder
1108
+ * - Connector
1035
1109
  *
1036
1110
  * @param tagKey The tag key to check
1037
1111
  * @param value The value(s) to check
@@ -1048,8 +1122,10 @@ export declare class Config extends PolicyStatement {
1048
1122
  * - .toPutConfigRule()
1049
1123
  * - .toPutConfigurationAggregator()
1050
1124
  * - .toPutConfigurationRecorder()
1125
+ * - .toPutConnector()
1051
1126
  * - .toPutServiceLinkedConfigurationRecorder()
1052
1127
  * - .toPutStoredQuery()
1128
+ * - .toPutThirdPartyServiceLinkedConfigurationRecorder()
1053
1129
  * - .toTagResource()
1054
1130
  * - .toUntagResource()
1055
1131
  *
@@ -1067,6 +1143,7 @@ export declare class Config extends PolicyStatement {
1067
1143
  * - .toDescribeConfigurationRecorderStatus()
1068
1144
  * - .toDescribeConfigurationRecorders()
1069
1145
  * - .toPutServiceLinkedConfigurationRecorder()
1146
+ * - .toPutThirdPartyServiceLinkedConfigurationRecorder()
1070
1147
  *
1071
1148
  * @param value The value(s) to check
1072
1149
  * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`