Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.lambda.kotlin
import com.pulumi.awsnative.lambda.kotlin.enums.PermissionFunctionUrlAuthType
import com.pulumi.awsnative.lambda.kotlin.enums.PermissionFunctionUrlAuthType.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
/**
* Builder for [Permission].
*/
@PulumiTagMarker
public class PermissionResourceBuilder internal constructor() {
public var name: String? = null
public var args: PermissionArgs = PermissionArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend PermissionArgsBuilder.() -> Unit) {
val builder = PermissionArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): Permission {
val builtJavaResource = com.pulumi.awsnative.lambda.Permission(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Permission(builtJavaResource)
}
}
/**
* The ``AWS::Lambda::Permission`` resource grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.
* To grant permission to another account, specify the account ID as the ``Principal``. To grant permission to an organization defined in AOlong, specify the organization ID as the ``PrincipalOrgID``. For AWS services, the principal is a domain-style identifier defined by the service, like ``s3.amazonaws.com`` or ``sns.amazonaws.com``. For AWS services, you can also specify the ARN of the associated resource as the ``SourceArn``. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function.
* If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Security and auth model for function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
* This resource adds a statement to a resource-based permission policy for the function. For more information about function policies, see [Lambda Function Policies](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html).
*/
public class Permission internal constructor(
override val javaResource: com.pulumi.awsnative.lambda.Permission,
) : KotlinCustomResource(javaResource, PermissionMapper) {
/**
* The action that the principal can use on the function. For example, ``lambda:InvokeFunction`` or ``lambda:GetFunction``.
*/
public val action: Output
get() = javaResource.action().applyValue({ args0 -> args0 })
public val awsId: Output
get() = javaResource.awsId().applyValue({ args0 -> args0 })
/**
* For Alexa Smart Home functions, a token that the invoker must supply.
*/
public val eventSourceToken: Output?
get() = javaResource.eventSourceToken().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The name or ARN of the Lambda function, version, or alias.
* **Name formats**
* + *Function name* – ``my-function`` (name-only), ``my-function:v1`` (with alias).
* + *Function ARN* – ``arn:aws:lambda:us-west-2:123456789012:function:my-function``.
* + *Partial ARN* – ``123456789012:function:my-function``.
* You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
*/
public val functionName: Output
get() = javaResource.functionName().applyValue({ args0 -> args0 })
/**
* The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
*/
public val functionUrlAuthType: Output?
get() = javaResource.functionUrlAuthType().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> toKotlin(args0) })
}).orElse(null)
})
/**
* The AWS-service or AWS-account that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
*/
public val principal: Output
get() = javaResource.principal().applyValue({ args0 -> args0 })
/**
* The identifier for your organization in AOlong. Use this to grant permissions to all the AWS-accounts under this organization.
*/
public val principalOrgId: Output?
get() = javaResource.principalOrgId().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* For AWS-service, the ID of the AWS-account that owns the resource. Use this together with ``SourceArn`` to ensure that the specified account owns the resource. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account.
*/
public val sourceAccount: Output?
get() = javaResource.sourceAccount().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* For AWS-services, the ARN of the AWS resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.
* Note that Lambda configures the comparison using the ``StringLike`` operator.
*/
public val sourceArn: Output?
get() = javaResource.sourceArn().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
}
public object PermissionMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.lambda.Permission::class == javaResource::class
override fun map(javaResource: Resource): Permission = Permission(
javaResource as
com.pulumi.awsnative.lambda.Permission,
)
}
/**
* @see [Permission].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [Permission].
*/
public suspend fun permission(name: String, block: suspend PermissionResourceBuilder.() -> Unit): Permission {
val builder = PermissionResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [Permission].
* @param name The _unique_ name of the resulting resource.
*/
public fun permission(name: String): Permission {
val builder = PermissionResourceBuilder()
builder.name(name)
return builder.build()
}