// Code generated by generators/singular-data-source/main.go; DO NOT EDIT. package route53resolver 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_route53resolver_resolver_config", resolverConfigDataSourceType) } // resolverConfigDataSourceType returns the Terraform awscc_route53resolver_resolver_config data source type. // This Terraform data source type corresponds to the CloudFormation AWS::Route53Resolver::ResolverConfig resource type. func resolverConfigDataSourceType(ctx context.Context) (tfsdk.DataSourceType, error) { attributes := map[string]tfsdk.Attribute{ "autodefined_reverse": { // Property: AutodefinedReverse // CloudFormation resource type schema: // { // "description": "ResolverAutodefinedReverseStatus, possible values are ENABLING, ENABLED, DISABLING AND DISABLED.", // "enum": [ // "ENABLING", // "ENABLED", // "DISABLING", // "DISABLED" // ], // "type": "string" // } Description: "ResolverAutodefinedReverseStatus, possible values are ENABLING, ENABLED, DISABLING AND DISABLED.", Type: types.StringType, Computed: true, }, "autodefined_reverse_flag": { // Property: AutodefinedReverseFlag // CloudFormation resource type schema: // { // "description": "Represents the desired status of AutodefinedReverse. The only supported value on creation is DISABLE. Deletion of this resource will return AutodefinedReverse to its default value (ENABLED).", // "enum": [ // "DISABLE" // ], // "type": "string" // } Description: "Represents the desired status of AutodefinedReverse. The only supported value on creation is DISABLE. Deletion of this resource will return AutodefinedReverse to its default value (ENABLED).", Type: types.StringType, Computed: true, }, "id": { // Property: Id // CloudFormation resource type schema: // { // "description": "Id", // "maxLength": 64, // "minLength": 1, // "type": "string" // } Description: "Id", Type: types.StringType, Computed: true, }, "owner_id": { // Property: OwnerId // CloudFormation resource type schema: // { // "description": "AccountId", // "maxLength": 32, // "minLength": 12, // "type": "string" // } Description: "AccountId", Type: types.StringType, Computed: true, }, "resource_id": { // Property: ResourceId // CloudFormation resource type schema: // { // "description": "ResourceId", // "maxLength": 64, // "minLength": 1, // "type": "string" // } Description: "ResourceId", Type: types.StringType, 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::Route53Resolver::ResolverConfig", Version: 1, Attributes: attributes, } var opts DataSourceTypeOptions opts = opts.WithCloudFormationTypeName("AWS::Route53Resolver::ResolverConfig").WithTerraformTypeName("awscc_route53resolver_resolver_config") opts = opts.WithTerraformSchema(schema) opts = opts.WithAttributeNameMap(map[string]string{ "autodefined_reverse": "AutodefinedReverse", "autodefined_reverse_flag": "AutodefinedReverseFlag", "id": "Id", "owner_id": "OwnerId", "resource_id": "ResourceId", }) singularDataSourceType, err := NewSingularDataSourceType(ctx, opts...) if err != nil { return nil, err } return singularDataSourceType, nil }