-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35979 from hashicorp/d-cdktf-docs-8048243993-79
cdktf: update documentation
- Loading branch information
Showing
260 changed files
with
8,793 additions
and
1,108 deletions.
There are no files selected for viewing
300 changes: 300 additions & 0 deletions
300
website/docs/cdktf/python/d/batch_job_definition.html.markdown
Large diffs are not rendered by default.
Oops, something went wrong.
64 changes: 64 additions & 0 deletions
64
website/docs/cdktf/python/d/bedrock_custom_model.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
subcategory: "Amazon Bedrock" | ||
layout: "aws" | ||
page_title: "AWS: aws_bedrock_custom_model" | ||
description: |- | ||
Returns properties of a specific Amazon Bedrock custom model. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: aws_bedrock_custom_model | ||
|
||
Returns properties of a specific Amazon Bedrock custom model. | ||
|
||
## Example Usage | ||
|
||
```python | ||
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug | ||
from constructs import Construct | ||
from cdktf import TerraformStack | ||
# | ||
# Provider bindings are generated by running `cdktf get`. | ||
# See https://cdk.tf/provider-generation for more details. | ||
# | ||
from imports.aws.data_aws_bedrock_custom_model import DataAwsBedrockCustomModel | ||
class MyConvertedCode(TerraformStack): | ||
def __init__(self, scope, name): | ||
super().__init__(scope, name) | ||
DataAwsBedrockCustomModel(self, "test", | ||
model_id="arn:aws:bedrock:us-west-2:123456789012:custom-model/amazon.titan-text-express-v1:0:8k/ly16hhi765j4 " | ||
) | ||
``` | ||
|
||
## Argument Reference | ||
|
||
* `model_id` – (Required) Name or ARN of the custom model. | ||
|
||
## Attribute Reference | ||
|
||
This data source exports the following attributes in addition to the arguments above: | ||
|
||
* `base_model_arn` - ARN of the base model. | ||
* `creation_time` - Creation time of the model. | ||
* `hyperparameters` - Hyperparameter values associated with this model. | ||
* `job_arn` - Job ARN associated with this model. | ||
* `job_name` - Job name associated with this model. | ||
* `job_tags` - Key-value mapping of tags for the fine-tuning job. | ||
* `model_arn` - ARN associated with this model. | ||
* `model_kms_key_arn` - The custom model is encrypted at rest using this key. | ||
* `model_name` - Model name associated with this model. | ||
* `model_tags` - Key-value mapping of tags for the model. | ||
* `output_data_config` - Output data configuration associated with this custom model. | ||
* `s3_uri` - The S3 URI where the output data is stored. | ||
* `training_data_config` - Information about the training dataset. | ||
* `s3_uri` - The S3 URI where the training data is stored. | ||
* `training_metrics` - Metrics associated with the customization job. | ||
* `training_loss` - Loss metric associated with the customization job. | ||
* `validation_data_config` - Information about the validation dataset. | ||
* `validator` - Information about the validators. | ||
* `s3_uri` - The S3 URI where the validation data is stored.. | ||
* `validation_metrics` - The loss metric for each validator that you provided. | ||
* `validation_loss` - The validation loss associated with the validator. | ||
|
||
<!-- cache-key: cdktf-0.20.1 input-9d7ebec3f75401eee70e98691f002ad65f0b09c6fcd48e93308bf9aa6010f5da --> |
45 changes: 45 additions & 0 deletions
45
website/docs/cdktf/python/d/bedrock_custom_models.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
subcategory: "Amazon Bedrock" | ||
layout: "aws" | ||
page_title: "AWS: aws_bedrock_custom_models" | ||
description: |- | ||
Returns a list of Amazon Bedrock custom models. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: aws_bedrock_custom_models | ||
|
||
Returns a list of Amazon Bedrock custom models. | ||
|
||
## Example Usage | ||
|
||
```python | ||
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug | ||
from constructs import Construct | ||
from cdktf import TerraformStack | ||
# | ||
# Provider bindings are generated by running `cdktf get`. | ||
# See https://cdk.tf/provider-generation for more details. | ||
# | ||
from imports.aws.data_aws_bedrock_custom_models import DataAwsBedrockCustomModels | ||
class MyConvertedCode(TerraformStack): | ||
def __init__(self, scope, name): | ||
super().__init__(scope, name) | ||
DataAwsBedrockCustomModels(self, "test") | ||
``` | ||
|
||
## Argument Reference | ||
|
||
None. | ||
|
||
## Attribute Reference | ||
|
||
This data source exports the following attributes in addition to the arguments above: | ||
|
||
* `model_summaries` - Model summaries. | ||
* `creation_time` - Creation time of the model. | ||
* `model_arn` - The ARN of the custom model. | ||
* `model_name` - The name of the custom model. | ||
|
||
<!-- cache-key: cdktf-0.20.1 input-5c8a3f3692382ecd35babad90f7ea55ce880124425b33d50e7c1631f449d3166 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
website/docs/cdktf/python/d/cognito_user_group.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
subcategory: "Cognito IDP (Identity Provider)" | ||
layout: "aws" | ||
page_title: "AWS: aws_cognito_user_group" | ||
description: |- | ||
Terraform data source for managing an AWS Cognito IDP (Identity Provider) User Group. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: aws_cognito_user_group | ||
|
||
Terraform data source for managing an AWS Cognito IDP (Identity Provider) User Group. | ||
|
||
## Example Usage | ||
|
||
### Basic Usage | ||
|
||
```python | ||
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug | ||
from constructs import Construct | ||
from cdktf import TerraformStack | ||
# | ||
# Provider bindings are generated by running `cdktf get`. | ||
# See https://cdk.tf/provider-generation for more details. | ||
# | ||
from imports.aws.data_aws_cognito_user_group import DataAwsCognitoUserGroup | ||
class MyConvertedCode(TerraformStack): | ||
def __init__(self, scope, name): | ||
super().__init__(scope, name) | ||
DataAwsCognitoUserGroup(self, "example", | ||
name="example", | ||
user_pool_id="us-west-2_aaaaaaaaa" | ||
) | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are required: | ||
|
||
* `name` - (Required) Name of the user group. | ||
* `user_pool_id` - (Required) User pool the client belongs to. | ||
|
||
## Attribute Reference | ||
|
||
This data source exports the following attributes in addition to the arguments above: | ||
|
||
* `description` - Description of the user group. | ||
* `id` - A comma-delimited string concatenating `name` and `user_pool_id`. | ||
* `precedence` - Precedence of the user group. | ||
* `role_arn` - ARN of the IAM role to be associated with the user group. | ||
|
||
<!-- cache-key: cdktf-0.20.1 input-27df73fb237762edc7cf45b6bd3efdbad132db982d809d1c48656693e1ae599d --> |
56 changes: 56 additions & 0 deletions
56
website/docs/cdktf/python/d/cognito_user_groups.html.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
subcategory: "Cognito IDP (Identity Provider)" | ||
layout: "aws" | ||
page_title: "AWS: aws_cognito_user_groups" | ||
description: |- | ||
Terraform data source for managing AWS Cognito IDP (Identity Provider) User Groups. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: aws_cognito_user_groups | ||
|
||
Terraform data source for managing AWS Cognito IDP (Identity Provider) User Groups. | ||
|
||
## Example Usage | ||
|
||
### Basic Usage | ||
|
||
```python | ||
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug | ||
from constructs import Construct | ||
from cdktf import TerraformStack | ||
# | ||
# Provider bindings are generated by running `cdktf get`. | ||
# See https://cdk.tf/provider-generation for more details. | ||
# | ||
from imports.aws.data_aws_cognito_user_groups import DataAwsCognitoUserGroups | ||
class MyConvertedCode(TerraformStack): | ||
def __init__(self, scope, name): | ||
super().__init__(scope, name) | ||
DataAwsCognitoUserGroups(self, "example", | ||
user_pool_id="us-west-2_aaaaaaaaa" | ||
) | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are required: | ||
|
||
* `user_pool_id` - (Required) User pool the client belongs to. | ||
|
||
## Attribute Reference | ||
|
||
This data source exports the following attributes in addition to the arguments above: | ||
|
||
* `id` - User pool identifier. | ||
* `groups` - List of groups. See [`groups`](#groups) below. | ||
|
||
### groups | ||
|
||
* `description` - Description of the user group. | ||
* `group_name` - Name of the user group. | ||
* `precedence` - Precedence of the user group. | ||
* `role_arn` - ARN of the IAM role to be associated with the user group. | ||
|
||
<!-- cache-key: cdktf-0.20.1 input-b9ec4c71ef4f31f9a750655ce24ceb46439e2d99ccaf3e06f390319d638dd1c3 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
subcategory: "RDS (Relational Database)" | ||
layout: "aws" | ||
page_title: "AWS: aws_db_parameter_group" | ||
description: |- | ||
Information about a database parameter group. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: aws_db_parameter_group | ||
|
||
Information about a database parameter group. | ||
|
||
## Example Usage | ||
|
||
```python | ||
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug | ||
from constructs import Construct | ||
from cdktf import TerraformStack | ||
# | ||
# Provider bindings are generated by running `cdktf get`. | ||
# See https://cdk.tf/provider-generation for more details. | ||
# | ||
from imports.aws.data_aws_db_parameter_group import DataAwsDbParameterGroup | ||
class MyConvertedCode(TerraformStack): | ||
def __init__(self, scope, name): | ||
super().__init__(scope, name) | ||
DataAwsDbParameterGroup(self, "test", | ||
name="default.postgres15" | ||
) | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are required: | ||
|
||
* `name` - (Required) DB parameter group name. | ||
|
||
## Attribute Reference | ||
|
||
This data source exports the following attributes in addition to the arguments above: | ||
|
||
* `arn` - ARN of the parameter group. | ||
* `family` - Family of the parameter group. | ||
* `description` - Description of the parameter group. | ||
|
||
<!-- cache-key: cdktf-0.20.1 input-2e8c83eaf1d663390db1bfa0c327919fdf188145cf8fee65580921c784fe6bdb --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.