com.pulumi.aws.sns.kotlin.DataProtectionPolicyArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.sns.kotlin
import com.pulumi.aws.sns.DataProtectionPolicyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Provides an SNS data protection topic policy resource
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const example = new aws.sns.Topic("example", {name: "example"});
* const exampleDataProtectionPolicy = new aws.sns.DataProtectionPolicy("example", {
* arn: example.arn,
* policy: JSON.stringify({
* Description: "Example data protection policy",
* Name: "__example_data_protection_policy",
* Statement: [{
* DataDirection: "Inbound",
* DataIdentifier: ["arn:aws:dataprotection::aws:data-identifier/EmailAddress"],
* Operation: {
* Deny: {},
* },
* Principal: ["*"],
* Sid: "__deny_statement_11ba9d96",
* }],
* Version: "2021-06-01",
* }),
* });
* ```
* ```python
* import pulumi
* import json
* import pulumi_aws as aws
* example = aws.sns.Topic("example", name="example")
* example_data_protection_policy = aws.sns.DataProtectionPolicy("example",
* arn=example.arn,
* policy=json.dumps({
* "Description": "Example data protection policy",
* "Name": "__example_data_protection_policy",
* "Statement": [{
* "DataDirection": "Inbound",
* "DataIdentifier": ["arn:aws:dataprotection::aws:data-identifier/EmailAddress"],
* "Operation": {
* "Deny": {},
* },
* "Principal": ["*"],
* "Sid": "__deny_statement_11ba9d96",
* }],
* "Version": "2021-06-01",
* }))
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using System.Text.Json;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var example = new Aws.Sns.Topic("example", new()
* {
* Name = "example",
* });
* var exampleDataProtectionPolicy = new Aws.Sns.DataProtectionPolicy("example", new()
* {
* Arn = example.Arn,
* Policy = JsonSerializer.Serialize(new Dictionary
* {
* ["Description"] = "Example data protection policy",
* ["Name"] = "__example_data_protection_policy",
* ["Statement"] = new[]
* {
* new Dictionary
* {
* ["DataDirection"] = "Inbound",
* ["DataIdentifier"] = new[]
* {
* "arn:aws:dataprotection::aws:data-identifier/EmailAddress",
* },
* ["Operation"] = new Dictionary
* {
* ["Deny"] = new Dictionary
* {
* },
* },
* ["Principal"] = new[]
* {
* "*",
* },
* ["Sid"] = "__deny_statement_11ba9d96",
* },
* },
* ["Version"] = "2021-06-01",
* }),
* });
* });
* ```
* ```go
* package main
* import (
* "encoding/json"
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/sns"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := sns.NewTopic(ctx, "example", &sns.TopicArgs{
* Name: pulumi.String("example"),
* })
* if err != nil {
* return err
* }
* tmpJSON0, err := json.Marshal(map[string]interface{}{
* "Description": "Example data protection policy",
* "Name": "__example_data_protection_policy",
* "Statement": []map[string]interface{}{
* map[string]interface{}{
* "DataDirection": "Inbound",
* "DataIdentifier": []string{
* "arn:aws:dataprotection::aws:data-identifier/EmailAddress",
* },
* "Operation": map[string]interface{}{
* "Deny": map[string]interface{}{},
* },
* "Principal": []string{
* "*",
* },
* "Sid": "__deny_statement_11ba9d96",
* },
* },
* "Version": "2021-06-01",
* })
* if err != nil {
* return err
* }
* json0 := string(tmpJSON0)
* _, err = sns.NewDataProtectionPolicy(ctx, "example", &sns.DataProtectionPolicyArgs{
* Arn: example.Arn,
* Policy: pulumi.String(json0),
* })
* 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.sns.Topic;
* import com.pulumi.aws.sns.TopicArgs;
* import com.pulumi.aws.sns.DataProtectionPolicy;
* import com.pulumi.aws.sns.DataProtectionPolicyArgs;
* import static com.pulumi.codegen.internal.Serialization.*;
* 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 Topic("example", TopicArgs.builder()
* .name("example")
* .build());
* var exampleDataProtectionPolicy = new DataProtectionPolicy("exampleDataProtectionPolicy", DataProtectionPolicyArgs.builder()
* .arn(example.arn())
* .policy(serializeJson(
* jsonObject(
* jsonProperty("Description", "Example data protection policy"),
* jsonProperty("Name", "__example_data_protection_policy"),
* jsonProperty("Statement", jsonArray(jsonObject(
* jsonProperty("DataDirection", "Inbound"),
* jsonProperty("DataIdentifier", jsonArray("arn:aws:dataprotection::aws:data-identifier/EmailAddress")),
* jsonProperty("Operation", jsonObject(
* jsonProperty("Deny", jsonObject(
* ))
* )),
* jsonProperty("Principal", jsonArray("*")),
* jsonProperty("Sid", "__deny_statement_11ba9d96")
* ))),
* jsonProperty("Version", "2021-06-01")
* )))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: aws:sns:Topic
* properties:
* name: example
* exampleDataProtectionPolicy:
* type: aws:sns:DataProtectionPolicy
* name: example
* properties:
* arn: ${example.arn}
* policy:
* fn::toJSON:
* Description: Example data protection policy
* Name: __example_data_protection_policy
* Statement:
* - DataDirection: Inbound
* DataIdentifier:
* - arn:aws:dataprotection::aws:data-identifier/EmailAddress
* Operation:
* Deny: {}
* Principal:
* - '*'
* Sid: __deny_statement_11ba9d96
* Version: 2021-06-01
* ```
*
* ## Import
* Using `pulumi import`, import SNS Data Protection Topic Policy using the topic ARN. For example:
* ```sh
* $ pulumi import aws:sns/dataProtectionPolicy:DataProtectionPolicy example arn:aws:sns:us-west-2:123456789012:example
* ```
* @property arn The ARN of the SNS topic
* @property policy The fully-formed AWS policy as JSON. For more information about building AWS IAM policy documents with this provider, see the AWS IAM Policy Document Guide.
*/
public data class DataProtectionPolicyArgs(
public val arn: Output? = null,
public val policy: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.sns.DataProtectionPolicyArgs =
com.pulumi.aws.sns.DataProtectionPolicyArgs.builder()
.arn(arn?.applyValue({ args0 -> args0 }))
.policy(policy?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DataProtectionPolicyArgs].
*/
@PulumiTagMarker
public class DataProtectionPolicyArgsBuilder internal constructor() {
private var arn: Output? = null
private var policy: Output? = null
/**
* @param value The ARN of the SNS topic
*/
@JvmName("ludgdayjawfqthhw")
public suspend fun arn(`value`: Output) {
this.arn = value
}
/**
* @param value The fully-formed AWS policy as JSON. For more information about building AWS IAM policy documents with this provider, see the AWS IAM Policy Document Guide.
*/
@JvmName("ljsoovgedphsirpn")
public suspend fun policy(`value`: Output) {
this.policy = value
}
/**
* @param value The ARN of the SNS topic
*/
@JvmName("rqgnewbcglkieirt")
public suspend fun arn(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.arn = mapped
}
/**
* @param value The fully-formed AWS policy as JSON. For more information about building AWS IAM policy documents with this provider, see the AWS IAM Policy Document Guide.
*/
@JvmName("rhiuqckuhjrmlfoh")
public suspend fun policy(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.policy = mapped
}
internal fun build(): DataProtectionPolicyArgs = DataProtectionPolicyArgs(
arn = arn,
policy = policy,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy