@pulumi/aws 6.27.0-alpha.1710518054 → 6.27.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.
Files changed (64) hide show
  1. package/apprunner/getHostedZoneId.d.ts +83 -0
  2. package/apprunner/getHostedZoneId.js +70 -0
  3. package/apprunner/getHostedZoneId.js.map +1 -0
  4. package/apprunner/index.d.ts +3 -0
  5. package/apprunner/index.js +4 -1
  6. package/apprunner/index.js.map +1 -1
  7. package/ec2transitgateway/getPeeringAttachment.d.ts +1 -0
  8. package/ec2transitgateway/getPeeringAttachment.js.map +1 -1
  9. package/ec2transitgateway/peeringAttachment.d.ts +2 -0
  10. package/ec2transitgateway/peeringAttachment.js +2 -0
  11. package/ec2transitgateway/peeringAttachment.js.map +1 -1
  12. package/elasticache/serverlessCache.d.ts +2 -2
  13. package/elasticache/serverlessCache.js +2 -2
  14. package/iam/getPolicyDocument.d.ts +24 -0
  15. package/iam/getPolicyDocument.js +2 -0
  16. package/iam/getPolicyDocument.js.map +1 -1
  17. package/lakeformation/dataCellsFilter.d.ts +86 -0
  18. package/lakeformation/dataCellsFilter.js +84 -0
  19. package/lakeformation/dataCellsFilter.js.map +1 -0
  20. package/lakeformation/getPermissions.d.ts +9 -0
  21. package/lakeformation/getPermissions.js +1 -0
  22. package/lakeformation/getPermissions.js.map +1 -1
  23. package/lakeformation/index.d.ts +3 -0
  24. package/lakeformation/index.js +6 -1
  25. package/lakeformation/index.js.map +1 -1
  26. package/lakeformation/permissions.d.ts +12 -0
  27. package/lakeformation/permissions.js +2 -0
  28. package/lakeformation/permissions.js.map +1 -1
  29. package/medialive/getInput.d.ts +123 -0
  30. package/medialive/getInput.js +55 -0
  31. package/medialive/getInput.js.map +1 -0
  32. package/medialive/index.d.ts +3 -0
  33. package/medialive/index.js +4 -1
  34. package/medialive/index.js.map +1 -1
  35. package/msk/getBootstrapBrokers.d.ts +26 -0
  36. package/msk/getBootstrapBrokers.js +26 -0
  37. package/msk/getBootstrapBrokers.js.map +1 -1
  38. package/package.json +1 -1
  39. package/ram/getResourceShare.d.ts +2 -4
  40. package/ram/getResourceShare.js +0 -2
  41. package/ram/getResourceShare.js.map +1 -1
  42. package/route53domains/registeredDomain.d.ts +24 -0
  43. package/route53domains/registeredDomain.js +4 -0
  44. package/route53domains/registeredDomain.js.map +1 -1
  45. package/securityhub/configurationPolicy.d.ts +199 -0
  46. package/securityhub/configurationPolicy.js +181 -0
  47. package/securityhub/configurationPolicy.js.map +1 -0
  48. package/securityhub/configurationPolicyAssociation.d.ts +117 -0
  49. package/securityhub/configurationPolicyAssociation.js +114 -0
  50. package/securityhub/configurationPolicyAssociation.js.map +1 -0
  51. package/securityhub/index.d.ts +6 -0
  52. package/securityhub/index.js +11 -1
  53. package/securityhub/index.js.map +1 -1
  54. package/securityhub/organizationConfiguration.d.ts +40 -1
  55. package/securityhub/organizationConfiguration.js +28 -1
  56. package/securityhub/organizationConfiguration.js.map +1 -1
  57. package/securitylake/index.d.ts +3 -0
  58. package/securitylake/index.js +6 -1
  59. package/securitylake/index.js.map +1 -1
  60. package/securitylake/subscriberNotification.d.ts +83 -0
  61. package/securitylake/subscriberNotification.js +75 -0
  62. package/securitylake/subscriberNotification.js.map +1 -0
  63. package/types/input.d.ts +336 -5
  64. package/types/output.d.ts +343 -6
@@ -0,0 +1,83 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Use this data source to get the HostedZoneId of an AWS App Runner service deployed
4
+ * in a given region for the purpose of using it in an AWS Route53 Alias record.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * <!--Start PulumiCodeChooser -->
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as aws from "@pulumi/aws";
12
+ *
13
+ * const main = aws.apprunner.getHostedZoneId({});
14
+ * const www = new aws.route53.Record("www", {
15
+ * zoneId: primary.zoneId,
16
+ * name: "example.com",
17
+ * type: "A",
18
+ * aliases: [{
19
+ * name: mainAwsApprunnerCustomDomainAssociation.dnsTarget,
20
+ * zoneId: main.then(main => main.id),
21
+ * evaluateTargetHealth: true,
22
+ * }],
23
+ * });
24
+ * ```
25
+ * <!--End PulumiCodeChooser -->
26
+ */
27
+ export declare function getHostedZoneId(args?: GetHostedZoneIdArgs, opts?: pulumi.InvokeOptions): Promise<GetHostedZoneIdResult>;
28
+ /**
29
+ * A collection of arguments for invoking getHostedZoneId.
30
+ */
31
+ export interface GetHostedZoneIdArgs {
32
+ /**
33
+ * Name of the region whose AWS App Runner service HostedZoneId is desired.
34
+ * Defaults to the region from the AWS provider configuration.
35
+ */
36
+ region?: string;
37
+ }
38
+ /**
39
+ * A collection of values returned by getHostedZoneId.
40
+ */
41
+ export interface GetHostedZoneIdResult {
42
+ /**
43
+ * ID of the AWS App Runner service HostedZoneId in the selected region.
44
+ */
45
+ readonly id: string;
46
+ readonly region: string;
47
+ }
48
+ /**
49
+ * Use this data source to get the HostedZoneId of an AWS App Runner service deployed
50
+ * in a given region for the purpose of using it in an AWS Route53 Alias record.
51
+ *
52
+ * ## Example Usage
53
+ *
54
+ * <!--Start PulumiCodeChooser -->
55
+ * ```typescript
56
+ * import * as pulumi from "@pulumi/pulumi";
57
+ * import * as aws from "@pulumi/aws";
58
+ *
59
+ * const main = aws.apprunner.getHostedZoneId({});
60
+ * const www = new aws.route53.Record("www", {
61
+ * zoneId: primary.zoneId,
62
+ * name: "example.com",
63
+ * type: "A",
64
+ * aliases: [{
65
+ * name: mainAwsApprunnerCustomDomainAssociation.dnsTarget,
66
+ * zoneId: main.then(main => main.id),
67
+ * evaluateTargetHealth: true,
68
+ * }],
69
+ * });
70
+ * ```
71
+ * <!--End PulumiCodeChooser -->
72
+ */
73
+ export declare function getHostedZoneIdOutput(args?: GetHostedZoneIdOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetHostedZoneIdResult>;
74
+ /**
75
+ * A collection of arguments for invoking getHostedZoneId.
76
+ */
77
+ export interface GetHostedZoneIdOutputArgs {
78
+ /**
79
+ * Name of the region whose AWS App Runner service HostedZoneId is desired.
80
+ * Defaults to the region from the AWS provider configuration.
81
+ */
82
+ region?: pulumi.Input<string>;
83
+ }
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getHostedZoneIdOutput = exports.getHostedZoneId = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to get the HostedZoneId of an AWS App Runner service deployed
10
+ * in a given region for the purpose of using it in an AWS Route53 Alias record.
11
+ *
12
+ * ## Example Usage
13
+ *
14
+ * <!--Start PulumiCodeChooser -->
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as aws from "@pulumi/aws";
18
+ *
19
+ * const main = aws.apprunner.getHostedZoneId({});
20
+ * const www = new aws.route53.Record("www", {
21
+ * zoneId: primary.zoneId,
22
+ * name: "example.com",
23
+ * type: "A",
24
+ * aliases: [{
25
+ * name: mainAwsApprunnerCustomDomainAssociation.dnsTarget,
26
+ * zoneId: main.then(main => main.id),
27
+ * evaluateTargetHealth: true,
28
+ * }],
29
+ * });
30
+ * ```
31
+ * <!--End PulumiCodeChooser -->
32
+ */
33
+ function getHostedZoneId(args, opts) {
34
+ args = args || {};
35
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
36
+ return pulumi.runtime.invoke("aws:apprunner/getHostedZoneId:getHostedZoneId", {
37
+ "region": args.region,
38
+ }, opts);
39
+ }
40
+ exports.getHostedZoneId = getHostedZoneId;
41
+ /**
42
+ * Use this data source to get the HostedZoneId of an AWS App Runner service deployed
43
+ * in a given region for the purpose of using it in an AWS Route53 Alias record.
44
+ *
45
+ * ## Example Usage
46
+ *
47
+ * <!--Start PulumiCodeChooser -->
48
+ * ```typescript
49
+ * import * as pulumi from "@pulumi/pulumi";
50
+ * import * as aws from "@pulumi/aws";
51
+ *
52
+ * const main = aws.apprunner.getHostedZoneId({});
53
+ * const www = new aws.route53.Record("www", {
54
+ * zoneId: primary.zoneId,
55
+ * name: "example.com",
56
+ * type: "A",
57
+ * aliases: [{
58
+ * name: mainAwsApprunnerCustomDomainAssociation.dnsTarget,
59
+ * zoneId: main.then(main => main.id),
60
+ * evaluateTargetHealth: true,
61
+ * }],
62
+ * });
63
+ * ```
64
+ * <!--End PulumiCodeChooser -->
65
+ */
66
+ function getHostedZoneIdOutput(args, opts) {
67
+ return pulumi.output(args).apply((a) => getHostedZoneId(a, opts));
68
+ }
69
+ exports.getHostedZoneIdOutput = getHostedZoneIdOutput;
70
+ //# sourceMappingURL=getHostedZoneId.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getHostedZoneId.js","sourceRoot":"","sources":["../../apprunner/getHostedZoneId.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0CAOC;AAuBD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
@@ -13,6 +13,9 @@ export declare const DefaultAutoScalingConfigurationVersion: typeof import("./de
13
13
  export { DeploymentArgs, DeploymentState } from "./deployment";
14
14
  export type Deployment = import("./deployment").Deployment;
15
15
  export declare const Deployment: typeof import("./deployment").Deployment;
16
+ export { GetHostedZoneIdArgs, GetHostedZoneIdResult, GetHostedZoneIdOutputArgs } from "./getHostedZoneId";
17
+ export declare const getHostedZoneId: typeof import("./getHostedZoneId").getHostedZoneId;
18
+ export declare const getHostedZoneIdOutput: typeof import("./getHostedZoneId").getHostedZoneIdOutput;
16
19
  export { ObservabilityConfigurationArgs, ObservabilityConfigurationState } from "./observabilityConfiguration";
17
20
  export type ObservabilityConfiguration = import("./observabilityConfiguration").ObservabilityConfiguration;
18
21
  export declare const ObservabilityConfiguration: typeof import("./observabilityConfiguration").ObservabilityConfiguration;
@@ -2,7 +2,7 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.VpcIngressConnection = exports.VpcConnector = exports.Service = exports.ObservabilityConfiguration = exports.Deployment = exports.DefaultAutoScalingConfigurationVersion = exports.CustomDomainAssociation = exports.Connection = exports.AutoScalingConfigurationVersion = void 0;
5
+ exports.VpcIngressConnection = exports.VpcConnector = exports.Service = exports.ObservabilityConfiguration = exports.getHostedZoneIdOutput = exports.getHostedZoneId = exports.Deployment = exports.DefaultAutoScalingConfigurationVersion = exports.CustomDomainAssociation = exports.Connection = exports.AutoScalingConfigurationVersion = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.AutoScalingConfigurationVersion = null;
@@ -15,6 +15,9 @@ exports.DefaultAutoScalingConfigurationVersion = null;
15
15
  utilities.lazyLoad(exports, ["DefaultAutoScalingConfigurationVersion"], () => require("./defaultAutoScalingConfigurationVersion"));
16
16
  exports.Deployment = null;
17
17
  utilities.lazyLoad(exports, ["Deployment"], () => require("./deployment"));
18
+ exports.getHostedZoneId = null;
19
+ exports.getHostedZoneIdOutput = null;
20
+ utilities.lazyLoad(exports, ["getHostedZoneId", "getHostedZoneIdOutput"], () => require("./getHostedZoneId"));
18
21
  exports.ObservabilityConfiguration = null;
19
22
  utilities.lazyLoad(exports, ["ObservabilityConfiguration"], () => require("./observabilityConfiguration"));
20
23
  exports.Service = null;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../apprunner/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../apprunner/index.ts"],"names":[],"mappings":"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"}
@@ -77,6 +77,7 @@ export interface GetPeeringAttachmentResult {
77
77
  * Identifier of the peer EC2 Transit Gateway
78
78
  */
79
79
  readonly peerTransitGatewayId: string;
80
+ readonly state: string;
80
81
  readonly tags: {
81
82
  [key: string]: string;
82
83
  };
@@ -1 +1 @@
1
- {"version":3,"file":"getPeeringAttachment.js","sourceRoot":"","sources":["../../ec2transitgateway/getPeeringAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iEAAiE,EAAE;QAC5F,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,oDASC;AAgDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,0BAA0B,CAAC,IAAqC,EAAE,IAA2B;IACzG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,oBAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/E,CAAC;AAFD,gEAEC"}
1
+ {"version":3,"file":"getPeeringAttachment.js","sourceRoot":"","sources":["../../ec2transitgateway/getPeeringAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iEAAiE,EAAE;QAC5F,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,oDASC;AAiDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,0BAA0B,CAAC,IAAqC,EAAE,IAA2B;IACzG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,oBAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/E,CAAC;AAFD,gEAEC"}
@@ -65,6 +65,7 @@ export declare class PeeringAttachment extends pulumi.CustomResource {
65
65
  * Identifier of EC2 Transit Gateway to peer with.
66
66
  */
67
67
  readonly peerTransitGatewayId: pulumi.Output<string>;
68
+ readonly state: pulumi.Output<string>;
68
69
  /**
69
70
  * Key-value tags for the EC2 Transit Gateway Peering Attachment. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
70
71
  */
@@ -108,6 +109,7 @@ export interface PeeringAttachmentState {
108
109
  * Identifier of EC2 Transit Gateway to peer with.
109
110
  */
110
111
  peerTransitGatewayId?: pulumi.Input<string>;
112
+ state?: pulumi.Input<string>;
111
113
  /**
112
114
  * Key-value tags for the EC2 Transit Gateway Peering Attachment. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
113
115
  */
@@ -74,6 +74,7 @@ class PeeringAttachment extends pulumi.CustomResource {
74
74
  resourceInputs["peerAccountId"] = state ? state.peerAccountId : undefined;
75
75
  resourceInputs["peerRegion"] = state ? state.peerRegion : undefined;
76
76
  resourceInputs["peerTransitGatewayId"] = state ? state.peerTransitGatewayId : undefined;
77
+ resourceInputs["state"] = state ? state.state : undefined;
77
78
  resourceInputs["tags"] = state ? state.tags : undefined;
78
79
  resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
79
80
  resourceInputs["transitGatewayId"] = state ? state.transitGatewayId : undefined;
@@ -94,6 +95,7 @@ class PeeringAttachment extends pulumi.CustomResource {
94
95
  resourceInputs["peerTransitGatewayId"] = args ? args.peerTransitGatewayId : undefined;
95
96
  resourceInputs["tags"] = args ? args.tags : undefined;
96
97
  resourceInputs["transitGatewayId"] = args ? args.transitGatewayId : undefined;
98
+ resourceInputs["state"] = undefined /*out*/;
97
99
  resourceInputs["tagsAll"] = undefined /*out*/;
98
100
  }
99
101
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"peeringAttachment.js","sourceRoot":"","sources":["../../ec2transitgateway/peeringAttachment.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"peeringAttachment.js","sourceRoot":"","sources":["../../ec2transitgateway/peeringAttachment.ts"],"names":[],"mappings":"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"}
@@ -22,7 +22,7 @@ import * as outputs from "../types/output";
22
22
  * unit: "GB",
23
23
  * },
24
24
  * ecpuPerSeconds: [{
25
- * maximum: 5,
25
+ * maximum: 5000,
26
26
  * }],
27
27
  * },
28
28
  * description: "Test Server",
@@ -50,7 +50,7 @@ import * as outputs from "../types/output";
50
50
  * unit: "GB",
51
51
  * },
52
52
  * ecpuPerSeconds: [{
53
- * maximum: 5,
53
+ * maximum: 5000,
54
54
  * }],
55
55
  * },
56
56
  * dailySnapshotTime: "09:00",
@@ -26,7 +26,7 @@ const utilities = require("../utilities");
26
26
  * unit: "GB",
27
27
  * },
28
28
  * ecpuPerSeconds: [{
29
- * maximum: 5,
29
+ * maximum: 5000,
30
30
  * }],
31
31
  * },
32
32
  * description: "Test Server",
@@ -54,7 +54,7 @@ const utilities = require("../utilities");
54
54
  * unit: "GB",
55
55
  * },
56
56
  * ecpuPerSeconds: [{
57
- * maximum: 5,
57
+ * maximum: 5000,
58
58
  * }],
59
59
  * },
60
60
  * dailySnapshotTime: "09:00",
@@ -343,6 +343,10 @@ export declare function getPolicyDocument(args?: GetPolicyDocumentArgs, opts?: p
343
343
  * A collection of arguments for invoking getPolicyDocument.
344
344
  */
345
345
  export interface GetPolicyDocumentArgs {
346
+ /**
347
+ * @deprecated Not used
348
+ */
349
+ overrideJson?: string;
346
350
  /**
347
351
  * List of IAM policy documents that are merged together into the exported document. In merging, statements with non-blank `sid`s will override statements with the same `sid` from earlier documents in the list. Statements with non-blank `sid`s will also override statements with the same `sid` from `sourcePolicyDocuments`. Non-overriding statements will be added to the exported document.
348
352
  */
@@ -351,6 +355,10 @@ export interface GetPolicyDocumentArgs {
351
355
  * ID for the policy document.
352
356
  */
353
357
  policyId?: string;
358
+ /**
359
+ * @deprecated Not used
360
+ */
361
+ sourceJson?: string;
354
362
  /**
355
363
  * List of IAM policy documents that are merged together into the exported document. Statements defined in `sourcePolicyDocuments` must have unique `sid`s. Statements with the same `sid` from `overridePolicyDocuments` will override source statements.
356
364
  */
@@ -376,8 +384,16 @@ export interface GetPolicyDocumentResult {
376
384
  * Standard JSON policy document rendered based on the arguments above.
377
385
  */
378
386
  readonly json: string;
387
+ /**
388
+ * @deprecated Not used
389
+ */
390
+ readonly overrideJson?: string;
379
391
  readonly overridePolicyDocuments?: string[];
380
392
  readonly policyId?: string;
393
+ /**
394
+ * @deprecated Not used
395
+ */
396
+ readonly sourceJson?: string;
381
397
  readonly sourcePolicyDocuments?: string[];
382
398
  readonly statements?: outputs.iam.GetPolicyDocumentStatement[];
383
399
  readonly version?: string;
@@ -724,6 +740,10 @@ export declare function getPolicyDocumentOutput(args?: GetPolicyDocumentOutputAr
724
740
  * A collection of arguments for invoking getPolicyDocument.
725
741
  */
726
742
  export interface GetPolicyDocumentOutputArgs {
743
+ /**
744
+ * @deprecated Not used
745
+ */
746
+ overrideJson?: pulumi.Input<string>;
727
747
  /**
728
748
  * List of IAM policy documents that are merged together into the exported document. In merging, statements with non-blank `sid`s will override statements with the same `sid` from earlier documents in the list. Statements with non-blank `sid`s will also override statements with the same `sid` from `sourcePolicyDocuments`. Non-overriding statements will be added to the exported document.
729
749
  */
@@ -732,6 +752,10 @@ export interface GetPolicyDocumentOutputArgs {
732
752
  * ID for the policy document.
733
753
  */
734
754
  policyId?: pulumi.Input<string>;
755
+ /**
756
+ * @deprecated Not used
757
+ */
758
+ sourceJson?: pulumi.Input<string>;
735
759
  /**
736
760
  * List of IAM policy documents that are merged together into the exported document. Statements defined in `sourcePolicyDocuments` must have unique `sid`s. Statements with the same `sid` from `overridePolicyDocuments` will override source statements.
737
761
  */
@@ -346,8 +346,10 @@ function getPolicyDocument(args, opts) {
346
346
  args = args || {};
347
347
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
348
348
  return pulumi.runtime.invoke("aws:iam/getPolicyDocument:getPolicyDocument", {
349
+ "overrideJson": args.overrideJson,
349
350
  "overridePolicyDocuments": args.overridePolicyDocuments,
350
351
  "policyId": args.policyId,
352
+ "sourceJson": args.sourceJson,
351
353
  "sourcePolicyDocuments": args.sourcePolicyDocuments,
352
354
  "statements": args.statements,
353
355
  "version": args.version,
@@ -1 +1 @@
1
- {"version":3,"file":"getPolicyDocument.js","sourceRoot":"","sources":["../../iam/getPolicyDocument.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgVG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8CAWC;AA8CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgVG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
1
+ {"version":3,"file":"getPolicyDocument.js","sourceRoot":"","sources":["../../iam/getPolicyDocument.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgVG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,8CAaC;AA8DD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgVG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
@@ -0,0 +1,86 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * Resource for managing an AWS Lake Formation Data Cells Filter.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ### Basic Usage
10
+ *
11
+ * <!--Start PulumiCodeChooser -->
12
+ * ```typescript
13
+ * import * as pulumi from "@pulumi/pulumi";
14
+ * import * as aws from "@pulumi/aws";
15
+ *
16
+ * const example = new aws.lakeformation.DataCellsFilter("example", {tableData: {
17
+ * databaseName: test.name,
18
+ * name: "example",
19
+ * tableCatalogId: current.accountId,
20
+ * tableName: testAwsGlueCatalogTable.name,
21
+ * columnNames: ["my_column"],
22
+ * rowFilter: {
23
+ * filterExpression: "my_column='example'",
24
+ * },
25
+ * }});
26
+ * ```
27
+ * <!--End PulumiCodeChooser -->
28
+ *
29
+ * ## Import
30
+ *
31
+ * Using `pulumi import`, import Lake Formation Data Cells Filter using the `id`. For example:
32
+ *
33
+ * ```sh
34
+ * $ pulumi import aws:lakeformation/dataCellsFilter:DataCellsFilter example database_name,name,table_catalog_id,table_name
35
+ * ```
36
+ */
37
+ export declare class DataCellsFilter extends pulumi.CustomResource {
38
+ /**
39
+ * Get an existing DataCellsFilter resource's state with the given name, ID, and optional extra
40
+ * properties used to qualify the lookup.
41
+ *
42
+ * @param name The _unique_ name of the resulting resource.
43
+ * @param id The _unique_ provider ID of the resource to lookup.
44
+ * @param state Any extra arguments used during the lookup.
45
+ * @param opts Optional settings to control the behavior of the CustomResource.
46
+ */
47
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DataCellsFilterState, opts?: pulumi.CustomResourceOptions): DataCellsFilter;
48
+ /**
49
+ * Returns true if the given object is an instance of DataCellsFilter. This is designed to work even
50
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
51
+ */
52
+ static isInstance(obj: any): obj is DataCellsFilter;
53
+ /**
54
+ * Information about the data cells filter. See Table Data below for details.
55
+ */
56
+ readonly tableData: pulumi.Output<outputs.lakeformation.DataCellsFilterTableData | undefined>;
57
+ readonly timeouts: pulumi.Output<outputs.lakeformation.DataCellsFilterTimeouts | undefined>;
58
+ /**
59
+ * Create a DataCellsFilter resource with the given unique name, arguments, and options.
60
+ *
61
+ * @param name The _unique_ name of the resource.
62
+ * @param args The arguments to use to populate this resource's properties.
63
+ * @param opts A bag of options that control this resource's behavior.
64
+ */
65
+ constructor(name: string, args?: DataCellsFilterArgs, opts?: pulumi.CustomResourceOptions);
66
+ }
67
+ /**
68
+ * Input properties used for looking up and filtering DataCellsFilter resources.
69
+ */
70
+ export interface DataCellsFilterState {
71
+ /**
72
+ * Information about the data cells filter. See Table Data below for details.
73
+ */
74
+ tableData?: pulumi.Input<inputs.lakeformation.DataCellsFilterTableData>;
75
+ timeouts?: pulumi.Input<inputs.lakeformation.DataCellsFilterTimeouts>;
76
+ }
77
+ /**
78
+ * The set of arguments for constructing a DataCellsFilter resource.
79
+ */
80
+ export interface DataCellsFilterArgs {
81
+ /**
82
+ * Information about the data cells filter. See Table Data below for details.
83
+ */
84
+ tableData?: pulumi.Input<inputs.lakeformation.DataCellsFilterTableData>;
85
+ timeouts?: pulumi.Input<inputs.lakeformation.DataCellsFilterTimeouts>;
86
+ }
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.DataCellsFilter = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Resource for managing an AWS Lake Formation Data Cells Filter.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ### Basic Usage
14
+ *
15
+ * <!--Start PulumiCodeChooser -->
16
+ * ```typescript
17
+ * import * as pulumi from "@pulumi/pulumi";
18
+ * import * as aws from "@pulumi/aws";
19
+ *
20
+ * const example = new aws.lakeformation.DataCellsFilter("example", {tableData: {
21
+ * databaseName: test.name,
22
+ * name: "example",
23
+ * tableCatalogId: current.accountId,
24
+ * tableName: testAwsGlueCatalogTable.name,
25
+ * columnNames: ["my_column"],
26
+ * rowFilter: {
27
+ * filterExpression: "my_column='example'",
28
+ * },
29
+ * }});
30
+ * ```
31
+ * <!--End PulumiCodeChooser -->
32
+ *
33
+ * ## Import
34
+ *
35
+ * Using `pulumi import`, import Lake Formation Data Cells Filter using the `id`. For example:
36
+ *
37
+ * ```sh
38
+ * $ pulumi import aws:lakeformation/dataCellsFilter:DataCellsFilter example database_name,name,table_catalog_id,table_name
39
+ * ```
40
+ */
41
+ class DataCellsFilter extends pulumi.CustomResource {
42
+ /**
43
+ * Get an existing DataCellsFilter resource's state with the given name, ID, and optional extra
44
+ * properties used to qualify the lookup.
45
+ *
46
+ * @param name The _unique_ name of the resulting resource.
47
+ * @param id The _unique_ provider ID of the resource to lookup.
48
+ * @param state Any extra arguments used during the lookup.
49
+ * @param opts Optional settings to control the behavior of the CustomResource.
50
+ */
51
+ static get(name, id, state, opts) {
52
+ return new DataCellsFilter(name, state, Object.assign(Object.assign({}, opts), { id: id }));
53
+ }
54
+ /**
55
+ * Returns true if the given object is an instance of DataCellsFilter. This is designed to work even
56
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
57
+ */
58
+ static isInstance(obj) {
59
+ if (obj === undefined || obj === null) {
60
+ return false;
61
+ }
62
+ return obj['__pulumiType'] === DataCellsFilter.__pulumiType;
63
+ }
64
+ constructor(name, argsOrState, opts) {
65
+ let resourceInputs = {};
66
+ opts = opts || {};
67
+ if (opts.id) {
68
+ const state = argsOrState;
69
+ resourceInputs["tableData"] = state ? state.tableData : undefined;
70
+ resourceInputs["timeouts"] = state ? state.timeouts : undefined;
71
+ }
72
+ else {
73
+ const args = argsOrState;
74
+ resourceInputs["tableData"] = args ? args.tableData : undefined;
75
+ resourceInputs["timeouts"] = args ? args.timeouts : undefined;
76
+ }
77
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
78
+ super(DataCellsFilter.__pulumiType, name, resourceInputs, opts);
79
+ }
80
+ }
81
+ exports.DataCellsFilter = DataCellsFilter;
82
+ /** @internal */
83
+ DataCellsFilter.__pulumiType = 'aws:lakeformation/dataCellsFilter:DataCellsFilter';
84
+ //# sourceMappingURL=dataCellsFilter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dataCellsFilter.js","sourceRoot":"","sources":["../../lakeformation/dataCellsFilter.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IAgBD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AAxDL,0CAyDC;AA3CG,gBAAgB;AACO,4BAAY,GAAG,mDAAmD,CAAC"}
@@ -83,6 +83,10 @@ export interface GetPermissionsArgs {
83
83
  * Whether the permissions are to be granted for the Data Catalog. Defaults to `false`.
84
84
  */
85
85
  catalogResource?: boolean;
86
+ /**
87
+ * Configuration block for a data cells filter resource. Detailed below.
88
+ */
89
+ dataCellsFilter?: inputs.lakeformation.GetPermissionsDataCellsFilter;
86
90
  /**
87
91
  * Configuration block for a data location resource. Detailed below.
88
92
  */
@@ -122,6 +126,7 @@ export interface GetPermissionsArgs {
122
126
  export interface GetPermissionsResult {
123
127
  readonly catalogId?: string;
124
128
  readonly catalogResource?: boolean;
129
+ readonly dataCellsFilter: outputs.lakeformation.GetPermissionsDataCellsFilter;
125
130
  readonly dataLocation: outputs.lakeformation.GetPermissionsDataLocation;
126
131
  readonly database: outputs.lakeformation.GetPermissionsDatabase;
127
132
  /**
@@ -224,6 +229,10 @@ export interface GetPermissionsOutputArgs {
224
229
  * Whether the permissions are to be granted for the Data Catalog. Defaults to `false`.
225
230
  */
226
231
  catalogResource?: pulumi.Input<boolean>;
232
+ /**
233
+ * Configuration block for a data cells filter resource. Detailed below.
234
+ */
235
+ dataCellsFilter?: pulumi.Input<inputs.lakeformation.GetPermissionsDataCellsFilterArgs>;
227
236
  /**
228
237
  * Configuration block for a data location resource. Detailed below.
229
238
  */
@@ -79,6 +79,7 @@ function getPermissions(args, opts) {
79
79
  return pulumi.runtime.invoke("aws:lakeformation/getPermissions:getPermissions", {
80
80
  "catalogId": args.catalogId,
81
81
  "catalogResource": args.catalogResource,
82
+ "dataCellsFilter": args.dataCellsFilter,
82
83
  "dataLocation": args.dataLocation,
83
84
  "database": args.database,
84
85
  "lfTag": args.lfTag,
@@ -1 +1 @@
1
- {"version":3,"file":"getPermissions.js","sourceRoot":"","sources":["../../lakeformation/getPermissions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,wCAcC;AA0ED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
1
+ {"version":3,"file":"getPermissions.js","sourceRoot":"","sources":["../../lakeformation/getPermissions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,wCAeC;AA+ED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
@@ -1,3 +1,6 @@
1
+ export { DataCellsFilterArgs, DataCellsFilterState } from "./dataCellsFilter";
2
+ export type DataCellsFilter = import("./dataCellsFilter").DataCellsFilter;
3
+ export declare const DataCellsFilter: typeof import("./dataCellsFilter").DataCellsFilter;
1
4
  export { DataLakeSettingsArgs, DataLakeSettingsState } from "./dataLakeSettings";
2
5
  export type DataLakeSettings = import("./dataLakeSettings").DataLakeSettings;
3
6
  export declare const DataLakeSettings: typeof import("./dataLakeSettings").DataLakeSettings;