Documentation ¶
Index ¶
- func NewSecuritylakeCustomLogSourceAttributesList_Override(s SecuritylakeCustomLogSourceAttributesList, ...)
- func NewSecuritylakeCustomLogSourceAttributesOutputReference_Override(s SecuritylakeCustomLogSourceAttributesOutputReference, ...)
- func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList_Override(s SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList, ...)
- func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference_Override(s SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference, ...)
- func NewSecuritylakeCustomLogSourceConfigurationList_Override(s SecuritylakeCustomLogSourceConfigurationList, ...)
- func NewSecuritylakeCustomLogSourceConfigurationOutputReference_Override(s SecuritylakeCustomLogSourceConfigurationOutputReference, ...)
- func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityList_Override(s SecuritylakeCustomLogSourceConfigurationProviderIdentityList, ...)
- func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference_Override(s SecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference, ...)
- func NewSecuritylakeCustomLogSourceProviderDetailsList_Override(s SecuritylakeCustomLogSourceProviderDetailsList, ...)
- func NewSecuritylakeCustomLogSourceProviderDetailsOutputReference_Override(s SecuritylakeCustomLogSourceProviderDetailsOutputReference, ...)
- func NewSecuritylakeCustomLogSource_Override(s SecuritylakeCustomLogSource, scope constructs.Construct, id *string, ...)
- func SecuritylakeCustomLogSource_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, ...) cdktf.ImportableResource
- func SecuritylakeCustomLogSource_IsConstruct(x interface{}) *bool
- func SecuritylakeCustomLogSource_IsTerraformElement(x interface{}) *bool
- func SecuritylakeCustomLogSource_IsTerraformResource(x interface{}) *bool
- func SecuritylakeCustomLogSource_TfResourceType() *string
- type SecuritylakeCustomLogSource
- type SecuritylakeCustomLogSourceAttributes
- type SecuritylakeCustomLogSourceAttributesList
- type SecuritylakeCustomLogSourceAttributesOutputReference
- type SecuritylakeCustomLogSourceConfig
- type SecuritylakeCustomLogSourceConfiguration
- type SecuritylakeCustomLogSourceConfigurationCrawlerConfiguration
- type SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList
- type SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference
- type SecuritylakeCustomLogSourceConfigurationList
- type SecuritylakeCustomLogSourceConfigurationOutputReference
- type SecuritylakeCustomLogSourceConfigurationProviderIdentity
- type SecuritylakeCustomLogSourceConfigurationProviderIdentityList
- type SecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference
- type SecuritylakeCustomLogSourceProviderDetails
- type SecuritylakeCustomLogSourceProviderDetailsList
- type SecuritylakeCustomLogSourceProviderDetailsOutputReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewSecuritylakeCustomLogSourceAttributesList_Override ¶
func NewSecuritylakeCustomLogSourceAttributesList_Override(s SecuritylakeCustomLogSourceAttributesList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewSecuritylakeCustomLogSourceAttributesOutputReference_Override ¶
func NewSecuritylakeCustomLogSourceAttributesOutputReference_Override(s SecuritylakeCustomLogSourceAttributesOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList_Override ¶
func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList_Override(s SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference_Override ¶
func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference_Override(s SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewSecuritylakeCustomLogSourceConfigurationList_Override ¶
func NewSecuritylakeCustomLogSourceConfigurationList_Override(s SecuritylakeCustomLogSourceConfigurationList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewSecuritylakeCustomLogSourceConfigurationOutputReference_Override ¶
func NewSecuritylakeCustomLogSourceConfigurationOutputReference_Override(s SecuritylakeCustomLogSourceConfigurationOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityList_Override ¶
func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityList_Override(s SecuritylakeCustomLogSourceConfigurationProviderIdentityList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference_Override ¶
func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference_Override(s SecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewSecuritylakeCustomLogSourceProviderDetailsList_Override ¶
func NewSecuritylakeCustomLogSourceProviderDetailsList_Override(s SecuritylakeCustomLogSourceProviderDetailsList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewSecuritylakeCustomLogSourceProviderDetailsOutputReference_Override ¶
func NewSecuritylakeCustomLogSourceProviderDetailsOutputReference_Override(s SecuritylakeCustomLogSourceProviderDetailsOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewSecuritylakeCustomLogSource_Override ¶
func NewSecuritylakeCustomLogSource_Override(s SecuritylakeCustomLogSource, scope constructs.Construct, id *string, config *SecuritylakeCustomLogSourceConfig)
Create a new {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source aws_securitylake_custom_log_source} Resource.
func SecuritylakeCustomLogSource_GenerateConfigForImport ¶
func SecuritylakeCustomLogSource_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, provider cdktf.TerraformProvider) cdktf.ImportableResource
Generates CDKTF code for importing a SecuritylakeCustomLogSource resource upon running "cdktf plan <stack-name>".
func SecuritylakeCustomLogSource_IsConstruct ¶
func SecuritylakeCustomLogSource_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 SecuritylakeCustomLogSource_IsTerraformElement ¶
func SecuritylakeCustomLogSource_IsTerraformElement(x interface{}) *bool
Experimental.
func SecuritylakeCustomLogSource_IsTerraformResource ¶
func SecuritylakeCustomLogSource_IsTerraformResource(x interface{}) *bool
Experimental.
func SecuritylakeCustomLogSource_TfResourceType ¶
func SecuritylakeCustomLogSource_TfResourceType() *string
Types ¶
type SecuritylakeCustomLogSource ¶
type SecuritylakeCustomLogSource interface { cdktf.TerraformResource Attributes() SecuritylakeCustomLogSourceAttributesList // Experimental. CdktfStack() cdktf.TerraformStack Configuration() SecuritylakeCustomLogSourceConfigurationList ConfigurationInput() interface{} // 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) EventClasses() *[]*string SetEventClasses(val *[]*string) EventClassesInput() *[]*string // Experimental. ForEach() cdktf.ITerraformIterator // Experimental. SetForEach(val cdktf.ITerraformIterator) // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string Id() *string // Experimental. Lifecycle() *cdktf.TerraformResourceLifecycle // Experimental. SetLifecycle(val *cdktf.TerraformResourceLifecycle) // The tree node. Node() constructs.Node // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) ProviderDetails() SecuritylakeCustomLogSourceProviderDetailsList // Experimental. Provisioners() *[]interface{} // Experimental. SetProvisioners(val *[]interface{}) // Experimental. RawOverrides() interface{} SourceName() *string SetSourceName(val *string) SourceNameInput() *string SourceVersion() *string SetSourceVersion(val *string) SourceVersionInput() *string // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *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) PutConfiguration(value interface{}) ResetConfiguration() ResetEventClasses() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetSourceVersion() 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/aws/5.51.0/docs/resources/securitylake_custom_log_source aws_securitylake_custom_log_source}.
func NewSecuritylakeCustomLogSource ¶
func NewSecuritylakeCustomLogSource(scope constructs.Construct, id *string, config *SecuritylakeCustomLogSourceConfig) SecuritylakeCustomLogSource
Create a new {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source aws_securitylake_custom_log_source} Resource.
type SecuritylakeCustomLogSourceAttributes ¶
type SecuritylakeCustomLogSourceAttributes struct { }
type SecuritylakeCustomLogSourceAttributesList ¶
type SecuritylakeCustomLogSourceAttributesList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) SecuritylakeCustomLogSourceAttributesOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceAttributesList ¶
func NewSecuritylakeCustomLogSourceAttributesList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SecuritylakeCustomLogSourceAttributesList
type SecuritylakeCustomLogSourceAttributesOutputReference ¶
type SecuritylakeCustomLogSourceAttributesOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) CrawlerArn() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string DatabaseArn() *string // Experimental. Fqn() *string InternalValue() *SecuritylakeCustomLogSourceAttributes SetInternalValue(val *SecuritylakeCustomLogSourceAttributes) TableArn() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // 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. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceAttributesOutputReference ¶
func NewSecuritylakeCustomLogSourceAttributesOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) SecuritylakeCustomLogSourceAttributesOutputReference
type SecuritylakeCustomLogSourceConfig ¶
type SecuritylakeCustomLogSourceConfig 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"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source#source_name SecuritylakeCustomLogSource#source_name}. SourceName *string `field:"required" json:"sourceName" yaml:"sourceName"` // configuration block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source#configuration SecuritylakeCustomLogSource#configuration} Configuration interface{} `field:"optional" json:"configuration" yaml:"configuration"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source#event_classes SecuritylakeCustomLogSource#event_classes}. EventClasses *[]*string `field:"optional" json:"eventClasses" yaml:"eventClasses"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source#source_version SecuritylakeCustomLogSource#source_version}. SourceVersion *string `field:"optional" json:"sourceVersion" yaml:"sourceVersion"` }
type SecuritylakeCustomLogSourceConfiguration ¶
type SecuritylakeCustomLogSourceConfiguration struct { // crawler_configuration block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source#crawler_configuration SecuritylakeCustomLogSource#crawler_configuration} CrawlerConfiguration interface{} `field:"optional" json:"crawlerConfiguration" yaml:"crawlerConfiguration"` // provider_identity block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source#provider_identity SecuritylakeCustomLogSource#provider_identity} ProviderIdentity interface{} `field:"optional" json:"providerIdentity" yaml:"providerIdentity"` }
type SecuritylakeCustomLogSourceConfigurationCrawlerConfiguration ¶
type SecuritylakeCustomLogSourceConfigurationCrawlerConfiguration struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source#role_arn SecuritylakeCustomLogSource#role_arn}. RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"` }
type SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList ¶
type SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList ¶
func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList
type SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference ¶
type SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) RoleArn() *string SetRoleArn(val *string) RoleArnInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // 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. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference ¶
func NewSecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference
type SecuritylakeCustomLogSourceConfigurationList ¶
type SecuritylakeCustomLogSourceConfigurationList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) SecuritylakeCustomLogSourceConfigurationOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceConfigurationList ¶
func NewSecuritylakeCustomLogSourceConfigurationList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SecuritylakeCustomLogSourceConfigurationList
type SecuritylakeCustomLogSourceConfigurationOutputReference ¶
type SecuritylakeCustomLogSourceConfigurationOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) CrawlerConfiguration() SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList CrawlerConfigurationInput() interface{} // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) ProviderIdentity() SecuritylakeCustomLogSourceConfigurationProviderIdentityList ProviderIdentityInput() interface{} // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // 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. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutCrawlerConfiguration(value interface{}) PutProviderIdentity(value interface{}) ResetCrawlerConfiguration() ResetProviderIdentity() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceConfigurationOutputReference ¶
func NewSecuritylakeCustomLogSourceConfigurationOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) SecuritylakeCustomLogSourceConfigurationOutputReference
type SecuritylakeCustomLogSourceConfigurationProviderIdentity ¶
type SecuritylakeCustomLogSourceConfigurationProviderIdentity struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source#external_id SecuritylakeCustomLogSource#external_id}. ExternalId *string `field:"required" json:"externalId" yaml:"externalId"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.51.0/docs/resources/securitylake_custom_log_source#principal SecuritylakeCustomLogSource#principal}. Principal *string `field:"required" json:"principal" yaml:"principal"` }
type SecuritylakeCustomLogSourceConfigurationProviderIdentityList ¶
type SecuritylakeCustomLogSourceConfigurationProviderIdentityList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) SecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityList ¶
func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SecuritylakeCustomLogSourceConfigurationProviderIdentityList
type SecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference ¶
type SecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string ExternalId() *string SetExternalId(val *string) ExternalIdInput() *string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) Principal() *string SetPrincipal(val *string) PrincipalInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // 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. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference ¶
func NewSecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) SecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference
type SecuritylakeCustomLogSourceProviderDetails ¶
type SecuritylakeCustomLogSourceProviderDetails struct { }
type SecuritylakeCustomLogSourceProviderDetailsList ¶
type SecuritylakeCustomLogSourceProviderDetailsList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) SecuritylakeCustomLogSourceProviderDetailsOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceProviderDetailsList ¶
func NewSecuritylakeCustomLogSourceProviderDetailsList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SecuritylakeCustomLogSourceProviderDetailsList
type SecuritylakeCustomLogSourceProviderDetailsOutputReference ¶
type SecuritylakeCustomLogSourceProviderDetailsOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *SecuritylakeCustomLogSourceProviderDetails SetInternalValue(val *SecuritylakeCustomLogSourceProviderDetails) Location() *string RoleArn() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // 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. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSecuritylakeCustomLogSourceProviderDetailsOutputReference ¶
func NewSecuritylakeCustomLogSourceProviderDetailsOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) SecuritylakeCustomLogSourceProviderDetailsOutputReference
Source Files ¶
- SecuritylakeCustomLogSource.go
- SecuritylakeCustomLogSourceAttributes.go
- SecuritylakeCustomLogSourceAttributesList.go
- SecuritylakeCustomLogSourceAttributesList__checks.go
- SecuritylakeCustomLogSourceAttributesOutputReference.go
- SecuritylakeCustomLogSourceAttributesOutputReference__checks.go
- SecuritylakeCustomLogSourceConfig.go
- SecuritylakeCustomLogSourceConfiguration.go
- SecuritylakeCustomLogSourceConfigurationCrawlerConfiguration.go
- SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList.go
- SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationList__checks.go
- SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference.go
- SecuritylakeCustomLogSourceConfigurationCrawlerConfigurationOutputReference__checks.go
- SecuritylakeCustomLogSourceConfigurationList.go
- SecuritylakeCustomLogSourceConfigurationList__checks.go
- SecuritylakeCustomLogSourceConfigurationOutputReference.go
- SecuritylakeCustomLogSourceConfigurationOutputReference__checks.go
- SecuritylakeCustomLogSourceConfigurationProviderIdentity.go
- SecuritylakeCustomLogSourceConfigurationProviderIdentityList.go
- SecuritylakeCustomLogSourceConfigurationProviderIdentityList__checks.go
- SecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference.go
- SecuritylakeCustomLogSourceConfigurationProviderIdentityOutputReference__checks.go
- SecuritylakeCustomLogSourceProviderDetails.go
- SecuritylakeCustomLogSourceProviderDetailsList.go
- SecuritylakeCustomLogSourceProviderDetailsList__checks.go
- SecuritylakeCustomLogSourceProviderDetailsOutputReference.go
- SecuritylakeCustomLogSourceProviderDetailsOutputReference__checks.go
- SecuritylakeCustomLogSource__checks.go
- main.go