The name of the resource.
The options of the resource.
The inputs of the resource.
OptionalproviderThe provider of the resource.
Tags associated with the stack.
The type of the resource.
The URN of the resource.
Returns the resource args for resourceClass if the type of this resource is the same as resourceClass,
otherwise undefined.
For example:
const bucketArgs = args.AsType(aws.s3.Bucket);
if (bucketArgs) {
// ...
}
Returns true if the type of this resource is the same as resourceClass.
For example:
if (args.isType(aws.s3.Bucket)) {
// ...
}
Marks the policy as not applicable.
Optionalreason: stringAn optional reason why the policy is not applicable.
ResourceValidationArgs is the argument bag passed to a resource validation.