Class CfnResourceAssociation

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:35.767Z") @Stability(Stable) public class CfnResourceAssociation extends CfnResource implements IInspectable
A CloudFormation AWS::ServiceCatalogAppRegistry::ResourceAssociation.

Associates a resource with an application. Both the resource and the application can be specified either by ID or name.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.servicecatalogappregistry.*;
 CfnResourceAssociation cfnResourceAssociation = CfnResourceAssociation.Builder.create(this, "MyCfnResourceAssociation")
         .application("application")
         .resource("resource")
         .resourceType("resourceType")
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnResourceAssociation

      protected CfnResourceAssociation(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnResourceAssociation

      protected CfnResourceAssociation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnResourceAssociation

      @Stability(Stable) public CfnResourceAssociation(@NotNull Construct scope, @NotNull String id, @NotNull CfnResourceAssociationProps props)
      Create a new AWS::ServiceCatalogAppRegistry::ResourceAssociation.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrApplicationArn

      @Stability(Stable) @NotNull public String getAttrApplicationArn()
      The Amazon resource name (ARN) that specifies the application.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The Id of the Association.
    • getAttrResourceArn

      @Stability(Stable) @NotNull public String getAttrResourceArn()
      The Amazon resource name (ARN) that specifies the resource.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getApplication

      @Stability(Stable) @NotNull public String getApplication()
      The name or ID of the application.
    • setApplication

      @Stability(Stable) public void setApplication(@NotNull String value)
      The name or ID of the application.
    • getResource

      @Stability(Stable) @NotNull public String getResource()
      The name or ID of the resource of which the application will be associated.
    • setResource

      @Stability(Stable) public void setResource(@NotNull String value)
      The name or ID of the resource of which the application will be associated.
    • getResourceType

      @Stability(Stable) @NotNull public String getResourceType()
      The type of resource of which the application will be associated.
    • setResourceType

      @Stability(Stable) public void setResourceType(@NotNull String value)
      The type of resource of which the application will be associated.