Documentation
¶
Index ¶
- func CfnAnalyzer_CFN_RESOURCE_TYPE_NAME() *string
- func CfnAnalyzer_IsCfnElement(x interface{}) *bool
- func CfnAnalyzer_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnAnalyzer_IsConstruct(x interface{}) *bool
- func NewCfnAnalyzer_Override(c CfnAnalyzer, scope constructs.Construct, id *string, props *CfnAnalyzerProps)
- type CfnAnalyzer
- type CfnAnalyzerProps
- type CfnAnalyzer_ArchiveRuleProperty
- type CfnAnalyzer_FilterProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnAnalyzer_CFN_RESOURCE_TYPE_NAME ¶
func CfnAnalyzer_CFN_RESOURCE_TYPE_NAME() *string
func CfnAnalyzer_IsCfnElement ¶
func CfnAnalyzer_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnAnalyzer_IsCfnResource ¶
func CfnAnalyzer_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnAnalyzer_IsConstruct ¶
func CfnAnalyzer_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnAnalyzer_Override ¶
func NewCfnAnalyzer_Override(c CfnAnalyzer, scope constructs.Construct, id *string, props *CfnAnalyzerProps)
Create a new `AWS::AccessAnalyzer::Analyzer`.
Types ¶
type CfnAnalyzer ¶
type CfnAnalyzer interface {
awscdk.CfnResource
awscdk.IInspectable
AnalyzerName() *string
SetAnalyzerName(val *string)
ArchiveRules() interface{}
SetArchiveRules(val interface{})
AttrArn() *string
CfnOptions() awscdk.ICfnResourceOptions
CfnProperties() *map[string]interface{}
CfnResourceType() *string
CreationStack() *[]*string
LogicalId() *string
Node() constructs.Node
Ref() *string
Stack() awscdk.Stack
Tags() awscdk.TagManager
Type() *string
SetType(val *string)
UpdatedProperites() *map[string]interface{}
AddDeletionOverride(path *string)
AddDependsOn(target awscdk.CfnResource)
AddMetadata(key *string, value interface{})
AddOverride(path *string, value interface{})
AddPropertyDeletionOverride(propertyPath *string)
AddPropertyOverride(propertyPath *string, value interface{})
ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
GetAtt(attributeName *string) awscdk.Reference
GetMetadata(key *string) interface{}
Inspect(inspector awscdk.TreeInspector)
OverrideLogicalId(newLogicalId *string)
RenderProperties(props *map[string]interface{}) *map[string]interface{}
ShouldSynthesize() *bool
ToString() *string
ValidateProperties(_properties interface{})
}
A CloudFormation `AWS::AccessAnalyzer::Analyzer`.
TODO: EXAMPLE
func NewCfnAnalyzer ¶
func NewCfnAnalyzer(scope constructs.Construct, id *string, props *CfnAnalyzerProps) CfnAnalyzer
Create a new `AWS::AccessAnalyzer::Analyzer`.
type CfnAnalyzerProps ¶
type CfnAnalyzerProps struct {
// `AWS::AccessAnalyzer::Analyzer.AnalyzerName`.
AnalyzerName *string `json:"analyzerName"`
// `AWS::AccessAnalyzer::Analyzer.ArchiveRules`.
ArchiveRules interface{} `json:"archiveRules"`
// `AWS::AccessAnalyzer::Analyzer.Tags`.
Tags *[]*awscdk.CfnTag `json:"tags"`
// `AWS::AccessAnalyzer::Analyzer.Type`.
Type *string `json:"type"`
}
Properties for defining a `AWS::AccessAnalyzer::Analyzer`.
TODO: EXAMPLE
type CfnAnalyzer_ArchiveRuleProperty ¶
type CfnAnalyzer_ArchiveRuleProperty struct {
// `CfnAnalyzer.ArchiveRuleProperty.Filter`.
Filter interface{} `json:"filter"`
// `CfnAnalyzer.ArchiveRuleProperty.RuleName`.
RuleName *string `json:"ruleName"`
}
TODO: EXAMPLE
type CfnAnalyzer_FilterProperty ¶
type CfnAnalyzer_FilterProperty struct {
// `CfnAnalyzer.FilterProperty.Contains`.
Contains *[]*string `json:"contains"`
// `CfnAnalyzer.FilterProperty.Eq`.
Eq *[]*string `json:"eq"`
// `CfnAnalyzer.FilterProperty.Exists`.
Exists interface{} `json:"exists"`
// `CfnAnalyzer.FilterProperty.Neq`.
Neq *[]*string `json:"neq"`
// `CfnAnalyzer.FilterProperty.Property`.
Property *string `json:"property"`
}
TODO: EXAMPLE