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 awscdk.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. Experimental.
func CfnAnalyzer_IsCfnResource ¶
func CfnAnalyzer_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnAnalyzer_IsConstruct ¶
func CfnAnalyzer_IsConstruct(x interface{}) *bool
Return whether the given object is a Construct. Experimental.
func NewCfnAnalyzer_Override ¶
func NewCfnAnalyzer_Override(c CfnAnalyzer, scope awscdk.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() awscdk.ConstructNode 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) OnPrepare() OnSynthesize(session constructs.ISynthesisSession) OnValidate() *[]*string OverrideLogicalId(newLogicalId *string) Prepare() RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool Synthesize(session awscdk.ISynthesisSession) ToString() *string Validate() *[]*string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::AccessAnalyzer::Analyzer`.
func NewCfnAnalyzer ¶
func NewCfnAnalyzer(scope awscdk.Construct, id *string, props *CfnAnalyzerProps) CfnAnalyzer
Create a new `AWS::AccessAnalyzer::Analyzer`.
type CfnAnalyzerProps ¶
type CfnAnalyzerProps struct { // `AWS::AccessAnalyzer::Analyzer.Type`. Type *string `json:"type"` // `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"` }
Properties for defining a `AWS::AccessAnalyzer::Analyzer`.
type CfnAnalyzer_ArchiveRuleProperty ¶
type CfnAnalyzer_ArchiveRuleProperty struct { // `CfnAnalyzer.ArchiveRuleProperty.Filter`. Filter interface{} `json:"filter"` // `CfnAnalyzer.ArchiveRuleProperty.RuleName`. RuleName *string `json:"ruleName"` }
type CfnAnalyzer_FilterProperty ¶
type CfnAnalyzer_FilterProperty struct { // `CfnAnalyzer.FilterProperty.Property`. Property *string `json:"property"` // `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"` }