// Code generated by generators/singular-data-source/main.go; DO NOT EDIT. package evidently import ( "context" "github.com/hashicorp/terraform-plugin-framework/tfsdk" "github.com/hashicorp/terraform-plugin-framework/types" . "github.com/hashicorp/terraform-provider-awscc/internal/generic" "github.com/hashicorp/terraform-provider-awscc/internal/registry" ) func init() { registry.AddDataSourceTypeFactory("awscc_evidently_project", projectDataSourceType) } // projectDataSourceType returns the Terraform awscc_evidently_project data source type. // This Terraform data source type corresponds to the CloudFormation AWS::Evidently::Project resource type. func projectDataSourceType(ctx context.Context) (tfsdk.DataSourceType, error) { attributes := map[string]tfsdk.Attribute{ "arn": { // Property: Arn // CloudFormation resource type schema: // { // "maxLength": 2048, // "minLength": 0, // "pattern": "arn:[^:]*:[^:]*:[^:]*:[^:]*:project/[-a-zA-Z0-9._]*", // "type": "string" // } Type: types.StringType, Computed: true, }, "data_delivery": { // Property: DataDelivery // CloudFormation resource type schema: // { // "additionalProperties": false, // "description": "Destinations for data.", // "oneOf": [ // { // "required": [ // "S3" // ] // }, // { // "required": [ // "LogGroup" // ] // } // ], // "properties": { // "LogGroup": { // "maxLength": 512, // "minLength": 1, // "pattern": "^[-a-zA-Z0-9._/]+$", // "type": "string" // }, // "S3": { // "additionalProperties": false, // "properties": { // "BucketName": { // "maxLength": 63, // "minLength": 3, // "pattern": "^[a-z0-9][-a-z0-9]*[a-z0-9]$", // "type": "string" // }, // "Prefix": { // "maxLength": 1024, // "minLength": 1, // "pattern": "^[-a-zA-Z0-9!_.*'()/]*$", // "type": "string" // } // }, // "required": [ // "BucketName" // ], // "type": "object" // } // }, // "type": "object" // } Description: "Destinations for data.", Attributes: tfsdk.SingleNestedAttributes( map[string]tfsdk.Attribute{ "log_group": { // Property: LogGroup Type: types.StringType, Computed: true, }, "s3": { // Property: S3 Attributes: tfsdk.SingleNestedAttributes( map[string]tfsdk.Attribute{ "bucket_name": { // Property: BucketName Type: types.StringType, Computed: true, }, "prefix": { // Property: Prefix Type: types.StringType, Computed: true, }, }, ), Computed: true, }, }, ), Computed: true, }, "description": { // Property: Description // CloudFormation resource type schema: // { // "maxLength": 160, // "minLength": 0, // "type": "string" // } Type: types.StringType, Computed: true, }, "name": { // Property: Name // CloudFormation resource type schema: // { // "maxLength": 127, // "minLength": 1, // "pattern": "[-a-zA-Z0-9._]*", // "type": "string" // } Type: types.StringType, Computed: true, }, "tags": { // Property: Tags // CloudFormation resource type schema: // { // "description": "An array of key-value pairs to apply to this resource.", // "insertionOrder": false, // "items": { // "additionalProperties": false, // "description": "A key-value pair to associate with a resource.", // "properties": { // "Key": { // "description": "The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.", // "maxLength": 128, // "minLength": 1, // "pattern": "", // "type": "string" // }, // "Value": { // "description": "The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.", // "maxLength": 256, // "minLength": 0, // "type": "string" // } // }, // "required": [ // "Key", // "Value" // ], // "type": "object" // }, // "type": "array", // "uniqueItems": true // } Description: "An array of key-value pairs to apply to this resource.", Attributes: tfsdk.SetNestedAttributes( map[string]tfsdk.Attribute{ "key": { // Property: Key Description: "The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.", Type: types.StringType, Computed: true, }, "value": { // Property: Value Description: "The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.", Type: types.StringType, Computed: true, }, }, tfsdk.SetNestedAttributesOptions{}, ), Computed: true, }, } attributes["id"] = tfsdk.Attribute{ Description: "Uniquely identifies the resource.", Type: types.StringType, Required: true, } schema := tfsdk.Schema{ Description: "Data Source schema for AWS::Evidently::Project", Version: 1, Attributes: attributes, } var opts DataSourceTypeOptions opts = opts.WithCloudFormationTypeName("AWS::Evidently::Project").WithTerraformTypeName("awscc_evidently_project") opts = opts.WithTerraformSchema(schema) opts = opts.WithAttributeNameMap(map[string]string{ "arn": "Arn", "bucket_name": "BucketName", "data_delivery": "DataDelivery", "description": "Description", "key": "Key", "log_group": "LogGroup", "name": "Name", "prefix": "Prefix", "s3": "S3", "tags": "Tags", "value": "Value", }) singularDataSourceType, err := NewSingularDataSourceType(ctx, opts...) if err != nil { return nil, err } return singularDataSourceType, nil }