Skip to content

Commit

Permalink
Merge pull request #1536 from hashicorp/f-04-10-2024-schema-updates
Browse files Browse the repository at this point in the history
04/11/2024 CloudFormation schema refresh
  • Loading branch information
ewbankkit authored Apr 12, 2024
2 parents 1e57efd + 5bd6e65 commit 556fed2
Show file tree
Hide file tree
Showing 15 changed files with 5,185 additions and 152 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ FEATURES:
* **New Data Source:** `awscc_billingconductor_pricing_plans`
* **New Data Source:** `awscc_billingconductor_pricing_rules`
* **New Data Source:** `awscc_ce_cost_categories`
* **New Data Source:** `awscc_cleanrooms_privacy_budget_template`
* **New Data Source:** `awscc_cloudformation_hook_default_versions`
* **New Data Source:** `awscc_cloudformation_hook_type_configs`
* **New Data Source:** `awscc_cloudformation_publishers`
Expand Down Expand Up @@ -134,6 +135,7 @@ FEATURES:
* **New Data Source:** `awscc_workspacesweb_user_settings`
* **New Data Source:** `awscc_workspacesweb_user_settings_plural`
* **New Data Source:** `awscc_xray_groups`
* **New Resource:** `awscc_cleanrooms_privacy_budget_template`
* **New Resource:** `awscc_cloudformation_stack`
* **New Resource:** `awscc_codedeploy_application`
* **New Resource:** `awscc_cognito_user_pool_group`
Expand Down
50 changes: 50 additions & 0 deletions docs/data-sources/cleanrooms_privacy_budget_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "awscc_cleanrooms_privacy_budget_template Data Source - terraform-provider-awscc"
subcategory: ""
description: |-
Data Source schema for AWS::CleanRooms::PrivacyBudgetTemplate
---

# awscc_cleanrooms_privacy_budget_template (Data Source)

Data Source schema for AWS::CleanRooms::PrivacyBudgetTemplate



<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `id` (String) Uniquely identifies the resource.

### Read-Only

- `arn` (String)
- `auto_refresh` (String)
- `collaboration_arn` (String)
- `collaboration_identifier` (String)
- `membership_arn` (String)
- `membership_identifier` (String)
- `parameters` (Attributes) (see [below for nested schema](#nestedatt--parameters))
- `privacy_budget_template_identifier` (String)
- `privacy_budget_type` (String)
- `tags` (Attributes List) An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template. (see [below for nested schema](#nestedatt--tags))

<a id="nestedatt--parameters"></a>
### Nested Schema for `parameters`

Read-Only:

- `epsilon` (Number)
- `users_noise_per_query` (Number)


<a id="nestedatt--tags"></a>
### Nested Schema for `tags`

Read-Only:

- `key` (String)
- `value` (String)
61 changes: 61 additions & 0 deletions docs/resources/cleanrooms_privacy_budget_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "awscc_cleanrooms_privacy_budget_template Resource - terraform-provider-awscc"
subcategory: ""
description: |-
Represents a privacy budget within a collaboration
---

# awscc_cleanrooms_privacy_budget_template (Resource)

Represents a privacy budget within a collaboration



<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `auto_refresh` (String)
- `membership_identifier` (String)
- `parameters` (Attributes) (see [below for nested schema](#nestedatt--parameters))
- `privacy_budget_type` (String)

### Optional

- `tags` (Attributes List) An arbitrary set of tags (key-value pairs) for this cleanrooms privacy budget template. (see [below for nested schema](#nestedatt--tags))

### Read-Only

- `arn` (String)
- `collaboration_arn` (String)
- `collaboration_identifier` (String)
- `id` (String) Uniquely identifies the resource.
- `membership_arn` (String)
- `privacy_budget_template_identifier` (String)

<a id="nestedatt--parameters"></a>
### Nested Schema for `parameters`

Required:

- `epsilon` (Number)
- `users_noise_per_query` (Number)


<a id="nestedatt--tags"></a>
### Nested Schema for `tags`

Required:

- `key` (String)
- `value` (String)

## Import

Import is supported using the following syntax:

```shell
$ terraform import awscc_cleanrooms_privacy_budget_template.example <resource ID>
```
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$ terraform import awscc_cleanrooms_privacy_budget_template.example <resource ID>
Loading

0 comments on commit 556fed2

Please sign in to comment.