Interface CfnResourceAssociationProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnResourceAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:35.768Z")
@Stability(Stable)
public interface CfnResourceAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a 
CfnResourceAssociation.
 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.*;
 CfnResourceAssociationProps cfnResourceAssociationProps = CfnResourceAssociationProps.builder()
         .application("application")
         .resource("resource")
         .resourceType("resourceType")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceAssociationPropsstatic final classAn implementation forCfnResourceAssociationProps
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()The name or ID of the application.The name or ID of the resource of which the application will be associated.The type of resource of which the application will be associated.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getApplicationThe name or ID of the application.
- 
getResourceThe name or ID of the resource of which the application will be associated.
- 
getResourceTypeThe type of resource of which the application will be associated.
- 
builder
 
-