Documentation
¶
Index ¶
- func CfnResourceShare_CFN_RESOURCE_TYPE_NAME() *string
- func CfnResourceShare_IsCfnElement(x interface{}) *bool
- func CfnResourceShare_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnResourceShare_IsConstruct(x interface{}) *bool
- func NewCfnResourceShare_Override(c CfnResourceShare, scope constructs.Construct, id *string, ...)
- type CfnResourceShare
- type CfnResourceShareProps
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnResourceShare_CFN_RESOURCE_TYPE_NAME ¶
func CfnResourceShare_CFN_RESOURCE_TYPE_NAME() *string
func CfnResourceShare_IsCfnElement ¶
func CfnResourceShare_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 CfnResourceShare_IsCfnResource ¶
func CfnResourceShare_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnResourceShare_IsConstruct ¶
func CfnResourceShare_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 NewCfnResourceShare_Override ¶
func NewCfnResourceShare_Override(c CfnResourceShare, scope constructs.Construct, id *string, props *CfnResourceShareProps)
Create a new `AWS::RAM::ResourceShare`.
Types ¶
type CfnResourceShare ¶
type CfnResourceShare interface {
awscdk.CfnResource
awscdk.IInspectable
}
A CloudFormation `AWS::RAM::ResourceShare`.
TODO: EXAMPLE
func NewCfnResourceShare ¶
func NewCfnResourceShare(scope constructs.Construct, id *string, props *CfnResourceShareProps) CfnResourceShare
Create a new `AWS::RAM::ResourceShare`.
type CfnResourceShareProps ¶
type CfnResourceShareProps struct {
AllowExternalPrincipals interface{} `json:"allowExternalPrincipals"`
Name *string `json:"name"`
PermissionArns *[]*string `json:"permissionArns"`
Principals *[]*string `json:"principals"`
ResourceArns *[]*string `json:"resourceArns"`
Tags *[]*awscdk.CfnTag `json:"tags"`
}
Properties for defining a `AWS::RAM::ResourceShare`.
TODO: EXAMPLE