io.burkard.cdk.services.servicecatalogappregistry.CfnResourceAssociationProps.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.servicecatalogappregistry
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object CfnResourceAssociationProps {
def apply(
application: String,
resource: String,
resourceType: String
): software.amazon.awscdk.services.servicecatalogappregistry.CfnResourceAssociationProps =
(new software.amazon.awscdk.services.servicecatalogappregistry.CfnResourceAssociationProps.Builder)
.application(application)
.resource(resource)
.resourceType(resourceType)
.build()
}