Documentation ¶
Index ¶
- func CfnRepositoryAssociation_CFN_RESOURCE_TYPE_NAME() *string
- func CfnRepositoryAssociation_IsCfnElement(x interface{}) *bool
- func CfnRepositoryAssociation_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnRepositoryAssociation_IsConstruct(x interface{}) *bool
- func NewCfnRepositoryAssociation_Override(c CfnRepositoryAssociation, scope constructs.Construct, id *string, ...)
- type CfnRepositoryAssociation
- type CfnRepositoryAssociationProps
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnRepositoryAssociation_CFN_RESOURCE_TYPE_NAME ¶
func CfnRepositoryAssociation_CFN_RESOURCE_TYPE_NAME() *string
func CfnRepositoryAssociation_IsCfnElement ¶
func CfnRepositoryAssociation_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 CfnRepositoryAssociation_IsCfnResource ¶
func CfnRepositoryAssociation_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnRepositoryAssociation_IsConstruct ¶
func CfnRepositoryAssociation_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 NewCfnRepositoryAssociation_Override ¶
func NewCfnRepositoryAssociation_Override(c CfnRepositoryAssociation, scope constructs.Construct, id *string, props *CfnRepositoryAssociationProps)
Create a new `AWS::CodeGuruReviewer::RepositoryAssociation`.
Types ¶
type CfnRepositoryAssociation ¶
type CfnRepositoryAssociation interface { awscdk.CfnResource awscdk.IInspectable AttrAssociationArn() *string BucketName() *string SetBucketName(val *string) CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string ConnectionArn() *string SetConnectionArn(val *string) CreationStack() *[]*string LogicalId() *string Name() *string SetName(val *string) Node() constructs.Node Owner() *string SetOwner(val *string) 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) OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::CodeGuruReviewer::RepositoryAssociation`.
TODO: EXAMPLE
func NewCfnRepositoryAssociation ¶
func NewCfnRepositoryAssociation(scope constructs.Construct, id *string, props *CfnRepositoryAssociationProps) CfnRepositoryAssociation
Create a new `AWS::CodeGuruReviewer::RepositoryAssociation`.
type CfnRepositoryAssociationProps ¶
type CfnRepositoryAssociationProps struct { // `AWS::CodeGuruReviewer::RepositoryAssociation.BucketName`. BucketName *string `json:"bucketName"` // `AWS::CodeGuruReviewer::RepositoryAssociation.ConnectionArn`. ConnectionArn *string `json:"connectionArn"` // `AWS::CodeGuruReviewer::RepositoryAssociation.Name`. Name *string `json:"name"` // `AWS::CodeGuruReviewer::RepositoryAssociation.Owner`. Owner *string `json:"owner"` // `AWS::CodeGuruReviewer::RepositoryAssociation.Tags`. Tags *[]*awscdk.CfnTag `json:"tags"` // `AWS::CodeGuruReviewer::RepositoryAssociation.Type`. Type *string `json:"type"` }
Properties for defining a `AWS::CodeGuruReviewer::RepositoryAssociation`.
TODO: EXAMPLE