Documentation ¶
Index ¶
- func CfnGroup_CFN_RESOURCE_TYPE_NAME() *string
- func CfnGroup_IsCfnElement(x interface{}) *bool
- func CfnGroup_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnGroup_IsConstruct(x interface{}) *bool
- func NewCfnGroup_Override(c CfnGroup, scope constructs.Construct, id *string, props *CfnGroupProps)
- type CfnGroup
- type CfnGroupProps
- type CfnGroup_ConfigurationItemProperty
- type CfnGroup_ConfigurationParameterProperty
- type CfnGroup_QueryProperty
- type CfnGroup_ResourceQueryProperty
- type CfnGroup_TagFilterProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnGroup_CFN_RESOURCE_TYPE_NAME ¶
func CfnGroup_CFN_RESOURCE_TYPE_NAME() *string
func CfnGroup_IsCfnElement ¶
func CfnGroup_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 CfnGroup_IsCfnResource ¶
func CfnGroup_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnGroup_IsConstruct ¶
func CfnGroup_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 NewCfnGroup_Override ¶
func NewCfnGroup_Override(c CfnGroup, scope constructs.Construct, id *string, props *CfnGroupProps)
Create a new `AWS::ResourceGroups::Group`.
Types ¶
type CfnGroup ¶
type CfnGroup interface { awscdk.CfnResource awscdk.IInspectable AttrArn() *string CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string Configuration() interface{} SetConfiguration(val interface{}) CreationStack() *[]*string Description() *string SetDescription(val *string) LogicalId() *string Name() *string SetName(val *string) Node() constructs.Node Ref() *string ResourceQuery() interface{} SetResourceQuery(val interface{}) Resources() *[]*string SetResources(val *[]*string) Stack() awscdk.Stack Tags() awscdk.TagManager 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::ResourceGroups::Group`.
TODO: EXAMPLE
func NewCfnGroup ¶
func NewCfnGroup(scope constructs.Construct, id *string, props *CfnGroupProps) CfnGroup
Create a new `AWS::ResourceGroups::Group`.
type CfnGroupProps ¶
type CfnGroupProps struct { // `AWS::ResourceGroups::Group.Configuration`. Configuration interface{} `json:"configuration"` // `AWS::ResourceGroups::Group.Description`. Description *string `json:"description"` // `AWS::ResourceGroups::Group.Name`. Name *string `json:"name"` // `AWS::ResourceGroups::Group.ResourceQuery`. ResourceQuery interface{} `json:"resourceQuery"` // `AWS::ResourceGroups::Group.Resources`. Resources *[]*string `json:"resources"` // `AWS::ResourceGroups::Group.Tags`. Tags *[]*awscdk.CfnTag `json:"tags"` }
Properties for defining a `AWS::ResourceGroups::Group`.
TODO: EXAMPLE
type CfnGroup_ConfigurationItemProperty ¶
type CfnGroup_ConfigurationItemProperty struct { // `CfnGroup.ConfigurationItemProperty.Parameters`. Parameters interface{} `json:"parameters"` // `CfnGroup.ConfigurationItemProperty.Type`. Type *string `json:"type"` }
TODO: EXAMPLE
type CfnGroup_ConfigurationParameterProperty ¶
type CfnGroup_ConfigurationParameterProperty struct { // `CfnGroup.ConfigurationParameterProperty.Name`. Name *string `json:"name"` // `CfnGroup.ConfigurationParameterProperty.Values`. Values *[]*string `json:"values"` }
TODO: EXAMPLE
type CfnGroup_QueryProperty ¶
type CfnGroup_QueryProperty struct { // `CfnGroup.QueryProperty.ResourceTypeFilters`. ResourceTypeFilters *[]*string `json:"resourceTypeFilters"` // `CfnGroup.QueryProperty.StackIdentifier`. StackIdentifier *string `json:"stackIdentifier"` // `CfnGroup.QueryProperty.TagFilters`. TagFilters interface{} `json:"tagFilters"` }
TODO: EXAMPLE
type CfnGroup_ResourceQueryProperty ¶
type CfnGroup_ResourceQueryProperty struct { // `CfnGroup.ResourceQueryProperty.Query`. Query interface{} `json:"query"` // `CfnGroup.ResourceQueryProperty.Type`. Type *string `json:"type"` }
TODO: EXAMPLE
type CfnGroup_TagFilterProperty ¶
type CfnGroup_TagFilterProperty struct { // `CfnGroup.TagFilterProperty.Key`. Key *string `json:"key"` // `CfnGroup.TagFilterProperty.Values`. Values *[]*string `json:"values"` }
TODO: EXAMPLE