Documentation ¶
Index ¶
- func CfnConnection_CFN_RESOURCE_TYPE_NAME() *string
- func CfnConnection_IsCfnElement(x interface{}) *bool
- func CfnConnection_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnConnection_IsConstruct(x interface{}) *bool
- func NewCfnConnection_Override(c CfnConnection, scope awscdk.Construct, id *string, props *CfnConnectionProps)
- type CfnConnection
- type CfnConnectionProps
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnConnection_CFN_RESOURCE_TYPE_NAME ¶
func CfnConnection_CFN_RESOURCE_TYPE_NAME() *string
func CfnConnection_IsCfnElement ¶
func CfnConnection_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 CfnConnection_IsCfnResource ¶
func CfnConnection_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnConnection_IsConstruct ¶
func CfnConnection_IsConstruct(x interface{}) *bool
Return whether the given object is a Construct. Experimental.
func NewCfnConnection_Override ¶
func NewCfnConnection_Override(c CfnConnection, scope awscdk.Construct, id *string, props *CfnConnectionProps)
Create a new `AWS::CodeStarConnections::Connection`.
Types ¶
type CfnConnection ¶
type CfnConnection interface { awscdk.CfnResource awscdk.IInspectable AttrConnectionArn() *string AttrConnectionStatus() *string AttrOwnerAccountId() *string CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string ConnectionName() *string SetConnectionName(val *string) CreationStack() *[]*string HostArn() *string SetHostArn(val *string) LogicalId() *string Node() awscdk.ConstructNode ProviderType() *string SetProviderType(val *string) 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::CodeStarConnections::Connection`.
func NewCfnConnection ¶
func NewCfnConnection(scope awscdk.Construct, id *string, props *CfnConnectionProps) CfnConnection
Create a new `AWS::CodeStarConnections::Connection`.
type CfnConnectionProps ¶
type CfnConnectionProps struct { // `AWS::CodeStarConnections::Connection.ConnectionName`. ConnectionName *string `json:"connectionName"` // `AWS::CodeStarConnections::Connection.HostArn`. HostArn *string `json:"hostArn"` // `AWS::CodeStarConnections::Connection.ProviderType`. ProviderType *string `json:"providerType"` // `AWS::CodeStarConnections::Connection.Tags`. Tags *[]*awscdk.CfnTag `json:"tags"` }
Properties for defining a `AWS::CodeStarConnections::Connection`.