io.burkard.cdk.services.resiliencehub.cfnApp.PhysicalResourceIdProperty.scala Maven / Gradle / Ivy
The newest version!
package io.burkard.cdk.services.resiliencehub.cfnApp
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object PhysicalResourceIdProperty {
def apply(
`type`: String,
identifier: String,
awsAccountId: Option[String] = None,
awsRegion: Option[String] = None
): software.amazon.awscdk.services.resiliencehub.CfnApp.PhysicalResourceIdProperty =
(new software.amazon.awscdk.services.resiliencehub.CfnApp.PhysicalResourceIdProperty.Builder)
.`type`(`type`)
.identifier(identifier)
.awsAccountId(awsAccountId.orNull)
.awsRegion(awsRegion.orNull)
.build()
}