Documentation
¶
Index ¶
- func NewStorageBucket_Override(s StorageBucket, scope constructs.Construct, id *string, ...)
- func StorageBucket_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, ...) cdktf.ImportableResource
- func StorageBucket_IsConstruct(x interface{}) *bool
- func StorageBucket_IsTerraformElement(x interface{}) *bool
- func StorageBucket_IsTerraformResource(x interface{}) *bool
- func StorageBucket_TfResourceType() *string
- type StorageBucket
- type StorageBucketConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewStorageBucket_Override ¶
func NewStorageBucket_Override(s StorageBucket, scope constructs.Construct, id *string, config *StorageBucketConfig)
Create a new {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket boundary_storage_bucket} Resource.
func StorageBucket_GenerateConfigForImport ¶
func StorageBucket_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, provider cdktf.TerraformProvider) cdktf.ImportableResource
Generates CDKTF code for importing a StorageBucket resource upon running "cdktf plan <stack-name>".
func StorageBucket_IsConstruct ¶
func StorageBucket_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Use this method instead of `instanceof` to properly detect `Construct` instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the `constructs` library on disk are seen as independent, completely different libraries. As a consequence, the class `Construct` in each copy of the `constructs` library is seen as a different class, and an instance of one class will not test as `instanceof` the other class. `npm install` will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the `constructs` library can be accidentally installed, and `instanceof` will behave unpredictably. It is safest to avoid using `instanceof`, and using this type-testing method instead.
Returns: true if `x` is an object created from a class which extends `Construct`.
func StorageBucket_IsTerraformElement ¶
func StorageBucket_IsTerraformElement(x interface{}) *bool
Experimental.
func StorageBucket_IsTerraformResource ¶
func StorageBucket_IsTerraformResource(x interface{}) *bool
Experimental.
func StorageBucket_TfResourceType ¶
func StorageBucket_TfResourceType() *string
Types ¶
type StorageBucket ¶
type StorageBucket interface { cdktf.TerraformResource AttributesJson() *string SetAttributesJson(val *string) AttributesJsonInput() *string BucketName() *string SetBucketName(val *string) BucketNameInput() *string BucketPrefix() *string SetBucketPrefix(val *string) BucketPrefixInput() *string // Experimental. CdktfStack() cdktf.TerraformStack // Experimental. Connection() interface{} // Experimental. SetConnection(val interface{}) // Experimental. ConstructNodeMetadata() *map[string]interface{} // Experimental. Count() interface{} // Experimental. SetCount(val interface{}) // Experimental. DependsOn() *[]*string // Experimental. SetDependsOn(val *[]*string) Description() *string SetDescription(val *string) DescriptionInput() *string // Experimental. ForEach() cdktf.ITerraformIterator // Experimental. SetForEach(val cdktf.ITerraformIterator) // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string Id() *string InternalForceUpdate() *string InternalHmacUsedForSecretsConfigHmac() *string InternalSecretsConfigHmac() *string // Experimental. Lifecycle() *cdktf.TerraformResourceLifecycle // Experimental. SetLifecycle(val *cdktf.TerraformResourceLifecycle) Name() *string SetName(val *string) NameInput() *string // The tree node. Node() constructs.Node PluginId() *string SetPluginId(val *string) PluginIdInput() *string PluginName() *string SetPluginName(val *string) PluginNameInput() *string // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) // Experimental. Provisioners() *[]interface{} // Experimental. SetProvisioners(val *[]interface{}) // Experimental. RawOverrides() interface{} ScopeId() *string SetScopeId(val *string) ScopeIdInput() *string SecretsHmac() *string SecretsJson() *string SetSecretsJson(val *string) SecretsJsonInput() *string // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *string WorkerFilter() *string SetWorkerFilter(val *string) WorkerFilterInput() *string // Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. // Experimental. AddMoveTarget(moveTarget *string) // Experimental. AddOverride(path *string, value interface{}) // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. HasResourceMove() interface{} // Experimental. ImportFrom(id *string, provider cdktf.TerraformProvider) // Experimental. InterpolationForAttribute(terraformAttribute *string) cdktf.IResolvable // Move the resource corresponding to "id" to this resource. // // Note that the resource being moved from must be marked as moved using it's instance function. // Experimental. MoveFromId(id *string) // Moves this resource to the target resource given by moveTarget. // Experimental. MoveTo(moveTarget *string, index interface{}) // Moves this resource to the resource corresponding to "id". // Experimental. MoveToId(id *string) // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) ResetAttributesJson() ResetBucketPrefix() ResetDescription() ResetName() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetPluginId() ResetPluginName() ResetSecretsJson() SynthesizeAttributes() *map[string]interface{} SynthesizeHclAttributes() *map[string]interface{} // Experimental. ToHclTerraform() interface{} // Experimental. ToMetadata() interface{} // Returns a string representation of this construct. ToString() *string // Adds this resource to the terraform JSON output. // Experimental. ToTerraform() interface{} }
Represents a {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket boundary_storage_bucket}.
func NewStorageBucket ¶
func NewStorageBucket(scope constructs.Construct, id *string, config *StorageBucketConfig) StorageBucket
Create a new {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket boundary_storage_bucket} Resource.
type StorageBucketConfig ¶
type StorageBucketConfig struct { // Experimental. Connection interface{} `field:"optional" json:"connection" yaml:"connection"` // Experimental. Count interface{} `field:"optional" json:"count" yaml:"count"` // Experimental. DependsOn *[]cdktf.ITerraformDependable `field:"optional" json:"dependsOn" yaml:"dependsOn"` // Experimental. ForEach cdktf.ITerraformIterator `field:"optional" json:"forEach" yaml:"forEach"` // Experimental. Lifecycle *cdktf.TerraformResourceLifecycle `field:"optional" json:"lifecycle" yaml:"lifecycle"` // Experimental. Provider cdktf.TerraformProvider `field:"optional" json:"provider" yaml:"provider"` // Experimental. Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"` // The name of the bucket within the external object store service. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#bucket_name StorageBucket#bucket_name} BucketName *string `field:"required" json:"bucketName" yaml:"bucketName"` // The scope for this storage bucket. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#scope_id StorageBucket#scope_id} ScopeId *string `field:"required" json:"scopeId" yaml:"scopeId"` // Filters to the worker(s) that can handle requests for this storage bucket. // // The filter must match an existing worker in order to create a storage bucket. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#worker_filter StorageBucket#worker_filter} WorkerFilter *string `field:"required" json:"workerFilter" yaml:"workerFilter"` // The attributes for the storage bucket. // // The "region" attribute field is required when creating an AWS storage bucket. Values are either encoded with the "jsonencode" function, pre-escaped JSON string, or a file:// or env:// path. Set to a string "null" or remove the block to clear all attributes in the storage bucket. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#attributes_json StorageBucket#attributes_json} AttributesJson *string `field:"optional" json:"attributesJson" yaml:"attributesJson"` // The prefix used to organize the data held within the external object store. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#bucket_prefix StorageBucket#bucket_prefix} BucketPrefix *string `field:"optional" json:"bucketPrefix" yaml:"bucketPrefix"` // The storage bucket description. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#description StorageBucket#description} Description *string `field:"optional" json:"description" yaml:"description"` // The storage bucket name. Defaults to the resource name. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#name StorageBucket#name} Name *string `field:"optional" json:"name" yaml:"name"` // The ID of the plugin that should back the resource. This or plugin_name must be defined. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#plugin_id StorageBucket#plugin_id} PluginId *string `field:"optional" json:"pluginId" yaml:"pluginId"` // The name of the plugin that should back the resource. This or plugin_id must be defined. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#plugin_name StorageBucket#plugin_name} PluginName *string `field:"optional" json:"pluginName" yaml:"pluginName"` // The secrets for the storage bucket. // // Either values encoded with the "jsonencode" function, pre-escaped JSON string, or a file:// or env:// path. Set to a string "null" to clear any existing values. NOTE: Unlike "attributes_json", removing this block will NOT clear secrets from the storage bucket; this allows injecting secrets for one call, then removing them for storage. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/boundary/1.2.0/docs/resources/storage_bucket#secrets_json StorageBucket#secrets_json} SecretsJson *string `field:"optional" json:"secretsJson" yaml:"secretsJson"` }