aws.cloudfront.KeyValueStore
Explore with Pulumi AI
Resource for managing an AWS CloudFront Key Value Store.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.cloudfront.KeyValueStore("example", {
name: "ExampleKeyValueStore",
comment: "This is an example key value store",
});
import pulumi
import pulumi_aws as aws
example = aws.cloudfront.KeyValueStore("example",
name="ExampleKeyValueStore",
comment="This is an example key value store")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/cloudfront"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudfront.NewKeyValueStore(ctx, "example", &cloudfront.KeyValueStoreArgs{
Name: pulumi.String("ExampleKeyValueStore"),
Comment: pulumi.String("This is an example key value store"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.CloudFront.KeyValueStore("example", new()
{
Name = "ExampleKeyValueStore",
Comment = "This is an example key value store",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.cloudfront.KeyValueStore;
import com.pulumi.aws.cloudfront.KeyValueStoreArgs;
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 KeyValueStore("example", KeyValueStoreArgs.builder()
.name("ExampleKeyValueStore")
.comment("This is an example key value store")
.build());
}
}
resources:
example:
type: aws:cloudfront:KeyValueStore
properties:
name: ExampleKeyValueStore
comment: This is an example key value store
Create KeyValueStore Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KeyValueStore(name: string, args?: KeyValueStoreArgs, opts?: CustomResourceOptions);
@overload
def KeyValueStore(resource_name: str,
args: Optional[KeyValueStoreArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def KeyValueStore(resource_name: str,
opts: Optional[ResourceOptions] = None,
comment: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[KeyValueStoreTimeoutsArgs] = None)
func NewKeyValueStore(ctx *Context, name string, args *KeyValueStoreArgs, opts ...ResourceOption) (*KeyValueStore, error)
public KeyValueStore(string name, KeyValueStoreArgs? args = null, CustomResourceOptions? opts = null)
public KeyValueStore(String name, KeyValueStoreArgs args)
public KeyValueStore(String name, KeyValueStoreArgs args, CustomResourceOptions options)
type: aws:cloudfront:KeyValueStore
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args KeyValueStoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args KeyValueStoreArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args KeyValueStoreArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KeyValueStoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KeyValueStoreArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var keyValueStoreResource = new Aws.CloudFront.KeyValueStore("keyValueStoreResource", new()
{
Comment = "string",
Name = "string",
Timeouts = new Aws.CloudFront.Inputs.KeyValueStoreTimeoutsArgs
{
Create = "string",
},
});
example, err := cloudfront.NewKeyValueStore(ctx, "keyValueStoreResource", &cloudfront.KeyValueStoreArgs{
Comment: pulumi.String("string"),
Name: pulumi.String("string"),
Timeouts: &cloudfront.KeyValueStoreTimeoutsArgs{
Create: pulumi.String("string"),
},
})
var keyValueStoreResource = new KeyValueStore("keyValueStoreResource", KeyValueStoreArgs.builder()
.comment("string")
.name("string")
.timeouts(KeyValueStoreTimeoutsArgs.builder()
.create("string")
.build())
.build());
key_value_store_resource = aws.cloudfront.KeyValueStore("keyValueStoreResource",
comment="string",
name="string",
timeouts={
"create": "string",
})
const keyValueStoreResource = new aws.cloudfront.KeyValueStore("keyValueStoreResource", {
comment: "string",
name: "string",
timeouts: {
create: "string",
},
});
type: aws:cloudfront:KeyValueStore
properties:
comment: string
name: string
timeouts:
create: string
KeyValueStore Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The KeyValueStore resource accepts the following input properties:
- Comment string
- Comment.
- Name string
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- Timeouts
Key
Value Store Timeouts
- Comment string
- Comment.
- Name string
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- Timeouts
Key
Value Store Timeouts Args
- comment String
- Comment.
- name String
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- timeouts
Key
Value Store Timeouts
- comment string
- Comment.
- name string
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- timeouts
Key
Value Store Timeouts
- comment str
- Comment.
- name str
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- timeouts
Key
Value Store Timeouts Args
- comment String
- Comment.
- name String
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the KeyValueStore resource produces the following output properties:
- Arn string
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- Etag string
- ETag hash of the KeyValueStore.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringTime
- Arn string
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- Etag string
- ETag hash of the KeyValueStore.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringTime
- arn String
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- etag String
- ETag hash of the KeyValueStore.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringTime
- arn string
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- etag string
- ETag hash of the KeyValueStore.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified stringTime
- arn str
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- etag str
- ETag hash of the KeyValueStore.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified_ strtime
- arn String
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- etag String
- ETag hash of the KeyValueStore.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringTime
Look up Existing KeyValueStore Resource
Get an existing KeyValueStore resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: KeyValueStoreState, opts?: CustomResourceOptions): KeyValueStore
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
comment: Optional[str] = None,
etag: Optional[str] = None,
last_modified_time: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[KeyValueStoreTimeoutsArgs] = None) -> KeyValueStore
func GetKeyValueStore(ctx *Context, name string, id IDInput, state *KeyValueStoreState, opts ...ResourceOption) (*KeyValueStore, error)
public static KeyValueStore Get(string name, Input<string> id, KeyValueStoreState? state, CustomResourceOptions? opts = null)
public static KeyValueStore get(String name, Output<String> id, KeyValueStoreState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- Comment string
- Comment.
- Etag string
- ETag hash of the KeyValueStore.
- Last
Modified stringTime - Name string
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- Timeouts
Key
Value Store Timeouts
- Arn string
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- Comment string
- Comment.
- Etag string
- ETag hash of the KeyValueStore.
- Last
Modified stringTime - Name string
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- Timeouts
Key
Value Store Timeouts Args
- arn String
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- comment String
- Comment.
- etag String
- ETag hash of the KeyValueStore.
- last
Modified StringTime - name String
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- timeouts
Key
Value Store Timeouts
- arn string
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- comment string
- Comment.
- etag string
- ETag hash of the KeyValueStore.
- last
Modified stringTime - name string
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- timeouts
Key
Value Store Timeouts
- arn str
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- comment str
- Comment.
- etag str
- ETag hash of the KeyValueStore.
- last_
modified_ strtime - name str
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- timeouts
Key
Value Store Timeouts Args
- arn String
- Amazon Resource Name (ARN) identifying your CloudFront KeyValueStore.
- comment String
- Comment.
- etag String
- ETag hash of the KeyValueStore.
- last
Modified StringTime - name String
Unique name for your CloudFront KeyValueStore.
The following arguments are optional:
- timeouts Property Map
Supporting Types
KeyValueStoreTimeouts, KeyValueStoreTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
Using pulumi import
, import CloudFront Key Value Store using the name
. For example:
$ pulumi import aws:cloudfront/keyValueStore:KeyValueStore example example_store
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.