Documentation
¶
Index ¶
- func CfnAppMonitor_CFN_RESOURCE_TYPE_NAME() *string
- func CfnAppMonitor_IsCfnElement(x interface{}) *bool
- func CfnAppMonitor_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnAppMonitor_IsConstruct(x interface{}) *bool
- func NewCfnAppMonitor_Override(c CfnAppMonitor, scope awscdk.Construct, id *string, props *CfnAppMonitorProps)
- type CfnAppMonitor
- type CfnAppMonitorProps
- type CfnAppMonitor_AppMonitorConfigurationProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnAppMonitor_CFN_RESOURCE_TYPE_NAME ¶
func CfnAppMonitor_CFN_RESOURCE_TYPE_NAME() *string
func CfnAppMonitor_IsCfnElement ¶
func CfnAppMonitor_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 CfnAppMonitor_IsCfnResource ¶
func CfnAppMonitor_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnAppMonitor_IsConstruct ¶
func CfnAppMonitor_IsConstruct(x interface{}) *bool
Return whether the given object is a Construct. Experimental.
func NewCfnAppMonitor_Override ¶
func NewCfnAppMonitor_Override(c CfnAppMonitor, scope awscdk.Construct, id *string, props *CfnAppMonitorProps)
Create a new `AWS::RUM::AppMonitor`.
Types ¶
type CfnAppMonitor ¶
type CfnAppMonitor interface {
awscdk.CfnResource
awscdk.IInspectable
AppMonitorConfiguration() interface{}
SetAppMonitorConfiguration(val interface{})
CfnOptions() awscdk.ICfnResourceOptions
CfnProperties() *map[string]interface{}
CfnResourceType() *string
CreationStack() *[]*string
CwLogEnabled() interface{}
SetCwLogEnabled(val interface{})
Domain() *string
SetDomain(val *string)
LogicalId() *string
Name() *string
SetName(val *string)
Node() awscdk.ConstructNode
Ref() *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)
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::RUM::AppMonitor`.
TODO: EXAMPLE
func NewCfnAppMonitor ¶
func NewCfnAppMonitor(scope awscdk.Construct, id *string, props *CfnAppMonitorProps) CfnAppMonitor
Create a new `AWS::RUM::AppMonitor`.
type CfnAppMonitorProps ¶
type CfnAppMonitorProps struct {
// `AWS::RUM::AppMonitor.AppMonitorConfiguration`.
AppMonitorConfiguration interface{} `json:"appMonitorConfiguration"`
// `AWS::RUM::AppMonitor.CwLogEnabled`.
CwLogEnabled interface{} `json:"cwLogEnabled"`
// `AWS::RUM::AppMonitor.Domain`.
Domain *string `json:"domain"`
// `AWS::RUM::AppMonitor.Name`.
Name *string `json:"name"`
// `AWS::RUM::AppMonitor.Tags`.
Tags *[]*awscdk.CfnTag `json:"tags"`
}
Properties for defining a `AWS::RUM::AppMonitor`.
TODO: EXAMPLE
type CfnAppMonitor_AppMonitorConfigurationProperty ¶
type CfnAppMonitor_AppMonitorConfigurationProperty struct {
// `CfnAppMonitor.AppMonitorConfigurationProperty.AllowCookies`.
AllowCookies interface{} `json:"allowCookies"`
// `CfnAppMonitor.AppMonitorConfigurationProperty.EnableXRay`.
EnableXRay interface{} `json:"enableXRay"`
// `CfnAppMonitor.AppMonitorConfigurationProperty.ExcludedPages`.
ExcludedPages *[]*string `json:"excludedPages"`
// `CfnAppMonitor.AppMonitorConfigurationProperty.FavoritePages`.
FavoritePages *[]*string `json:"favoritePages"`
// `CfnAppMonitor.AppMonitorConfigurationProperty.GuestRoleArn`.
GuestRoleArn *string `json:"guestRoleArn"`
// `CfnAppMonitor.AppMonitorConfigurationProperty.IdentityPoolId`.
IdentityPoolId *string `json:"identityPoolId"`
// `CfnAppMonitor.AppMonitorConfigurationProperty.IncludedPages`.
IncludedPages *[]*string `json:"includedPages"`
// `CfnAppMonitor.AppMonitorConfigurationProperty.SessionSampleRate`.
SessionSampleRate *float64 `json:"sessionSampleRate"`
// `CfnAppMonitor.AppMonitorConfigurationProperty.Telemetries`.
Telemetries *[]*string `json:"telemetries"`
}
TODO: EXAMPLE