Please wait. This can take some minutes ...
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.
com.pulumi.aws.iot.kotlin.Authorizer.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.iot.kotlin
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.Deprecated
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
/**
* Builder for [Authorizer].
*/
@PulumiTagMarker
public class AuthorizerResourceBuilder internal constructor() {
public var name: String? = null
public var args: AuthorizerArgs = AuthorizerArgs()
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 AuthorizerArgsBuilder.() -> Unit) {
val builder = AuthorizerArgsBuilder()
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(): Authorizer {
val builtJavaResource = com.pulumi.aws.iot.Authorizer(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Authorizer(builtJavaResource)
}
}
/**
* Creates and manages an AWS IoT Authorizer.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* import * as std from "@pulumi/std";
* const example = new aws.iot.Authorizer("example", {
* name: "example",
* authorizerFunctionArn: exampleAwsLambdaFunction.arn,
* signingDisabled: false,
* status: "ACTIVE",
* tokenKeyName: "Token-Header",
* tokenSigningPublicKeys: {
* Key1: std.file({
* input: "test-fixtures/iot-authorizer-signing-key.pem",
* }).then(invoke => invoke.result),
* },
* tags: {
* Name: "example",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* import pulumi_std as std
* example = aws.iot.Authorizer("example",
* name="example",
* authorizer_function_arn=example_aws_lambda_function["arn"],
* signing_disabled=False,
* status="ACTIVE",
* token_key_name="Token-Header",
* token_signing_public_keys={
* "Key1": std.file(input="test-fixtures/iot-authorizer-signing-key.pem").result,
* },
* tags={
* "Name": "example",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* using Std = Pulumi.Std;
* return await Deployment.RunAsync(() =>
* {
* var example = new Aws.Iot.Authorizer("example", new()
* {
* Name = "example",
* AuthorizerFunctionArn = exampleAwsLambdaFunction.Arn,
* SigningDisabled = false,
* Status = "ACTIVE",
* TokenKeyName = "Token-Header",
* TokenSigningPublicKeys =
* {
* { "Key1", Std.File.Invoke(new()
* {
* Input = "test-fixtures/iot-authorizer-signing-key.pem",
* }).Apply(invoke => invoke.Result) },
* },
* Tags =
* {
* { "Name", "example" },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iot"
* "github.com/pulumi/pulumi-std/sdk/go/std"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* invokeFile, err := std.File(ctx, &std.FileArgs{
* Input: "test-fixtures/iot-authorizer-signing-key.pem",
* }, nil)
* if err != nil {
* return err
* }
* _, err = iot.NewAuthorizer(ctx, "example", &iot.AuthorizerArgs{
* Name: pulumi.String("example"),
* AuthorizerFunctionArn: pulumi.Any(exampleAwsLambdaFunction.Arn),
* SigningDisabled: pulumi.Bool(false),
* Status: pulumi.String("ACTIVE"),
* TokenKeyName: pulumi.String("Token-Header"),
* TokenSigningPublicKeys: pulumi.StringMap{
* "Key1": pulumi.String(invokeFile.Result),
* },
* Tags: pulumi.StringMap{
* "Name": pulumi.String("example"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.iot.Authorizer;
* import com.pulumi.aws.iot.AuthorizerArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var example = new Authorizer("example", AuthorizerArgs.builder()
* .name("example")
* .authorizerFunctionArn(exampleAwsLambdaFunction.arn())
* .signingDisabled(false)
* .status("ACTIVE")
* .tokenKeyName("Token-Header")
* .tokenSigningPublicKeys(Map.of("Key1", StdFunctions.file(FileArgs.builder()
* .input("test-fixtures/iot-authorizer-signing-key.pem")
* .build()).result()))
* .tags(Map.of("Name", "example"))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: aws:iot:Authorizer
* properties:
* name: example
* authorizerFunctionArn: ${exampleAwsLambdaFunction.arn}
* signingDisabled: false
* status: ACTIVE
* tokenKeyName: Token-Header
* tokenSigningPublicKeys:
* Key1:
* fn::invoke:
* Function: std:file
* Arguments:
* input: test-fixtures/iot-authorizer-signing-key.pem
* Return: result
* tags:
* Name: example
* ```
*
* ## Import
* Using `pulumi import`, import IOT Authorizers using the name. For example:
* ```sh
* $ pulumi import aws:iot/authorizer:Authorizer example example
* ```
*/
public class Authorizer internal constructor(
override val javaResource: com.pulumi.aws.iot.Authorizer,
) : KotlinCustomResource(javaResource, AuthorizerMapper) {
/**
* The ARN of the authorizer.
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* The ARN of the authorizer's Lambda function.
*/
public val authorizerFunctionArn: Output
get() = javaResource.authorizerFunctionArn().applyValue({ args0 -> args0 })
/**
* Specifies whether the HTTP caching is enabled or not. Default: `false`.
*/
public val enableCachingForHttp: Output?
get() = javaResource.enableCachingForHttp().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The name of the authorizer.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* Specifies whether AWS IoT validates the token signature in an authorization request. Default: `false`.
*/
public val signingDisabled: Output?
get() = javaResource.signingDisabled().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The status of Authorizer request at creation. Valid values: `ACTIVE`, `INACTIVE`. Default: `ACTIVE`.
*/
public val status: Output?
get() = javaResource.status().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Map of tags to assign to this resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
*/
@Deprecated(
message = """
Please use `tags` instead.
""",
)
public val tagsAll: Output>
get() = javaResource.tagsAll().applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
})
/**
* The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
*/
public val tokenKeyName: Output?
get() = javaResource.tokenKeyName().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
*/
public val tokenSigningPublicKeys: Output>?
get() = javaResource.tokenSigningPublicKeys().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0.key.to(args0.value) }).toMap()
}).orElse(null)
})
}
public object AuthorizerMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.aws.iot.Authorizer::class == javaResource::class
override fun map(javaResource: Resource): Authorizer = Authorizer(
javaResource as
com.pulumi.aws.iot.Authorizer,
)
}
/**
* @see [Authorizer].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [Authorizer].
*/
public suspend fun authorizer(name: String, block: suspend AuthorizerResourceBuilder.() -> Unit): Authorizer {
val builder = AuthorizerResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [Authorizer].
* @param name The _unique_ name of the resulting resource.
*/
public fun authorizer(name: String): Authorizer {
val builder = AuthorizerResourceBuilder()
builder.name(name)
return builder.build()
}