Try AWS Native preview for resources not in the classic version.
aws.cloudfront.FieldLevelEncryptionConfig
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a CloudFront Field-level Encryption Config resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.cloudfront.FieldLevelEncryptionConfig("test", {
comment: "test comment",
contentTypeProfileConfig: {
forwardWhenContentTypeIsUnknown: true,
contentTypeProfiles: {
items: [{
contentType: "application/x-www-form-urlencoded",
format: "URLEncoded",
}],
},
},
queryArgProfileConfig: {
forwardWhenQueryArgProfileIsUnknown: true,
queryArgProfiles: {
items: [{
profileId: testAwsCloudfrontFieldLevelEncryptionProfile.id,
queryArg: "Arg1",
}],
},
},
});
import pulumi
import pulumi_aws as aws
test = aws.cloudfront.FieldLevelEncryptionConfig("test",
comment="test comment",
content_type_profile_config={
"forwardWhenContentTypeIsUnknown": True,
"contentTypeProfiles": {
"items": [{
"contentType": "application/x-www-form-urlencoded",
"format": "URLEncoded",
}],
},
},
query_arg_profile_config={
"forwardWhenQueryArgProfileIsUnknown": True,
"queryArgProfiles": {
"items": [{
"profileId": test_aws_cloudfront_field_level_encryption_profile["id"],
"queryArg": "Arg1",
}],
},
})
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.NewFieldLevelEncryptionConfig(ctx, "test", &cloudfront.FieldLevelEncryptionConfigArgs{
Comment: pulumi.String("test comment"),
ContentTypeProfileConfig: &cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigArgs{
ForwardWhenContentTypeIsUnknown: pulumi.Bool(true),
ContentTypeProfiles: &cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesArgs{
Items: cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItemArray{
&cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItemArgs{
ContentType: pulumi.String("application/x-www-form-urlencoded"),
Format: pulumi.String("URLEncoded"),
},
},
},
},
QueryArgProfileConfig: &cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigArgs{
ForwardWhenQueryArgProfileIsUnknown: pulumi.Bool(true),
QueryArgProfiles: &cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesArgs{
Items: cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItemArray{
&cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItemArgs{
ProfileId: pulumi.Any(testAwsCloudfrontFieldLevelEncryptionProfile.Id),
QueryArg: pulumi.String("Arg1"),
},
},
},
},
})
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 test = new Aws.CloudFront.FieldLevelEncryptionConfig("test", new()
{
Comment = "test comment",
ContentTypeProfileConfig = new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigContentTypeProfileConfigArgs
{
ForwardWhenContentTypeIsUnknown = true,
ContentTypeProfiles = new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesArgs
{
Items = new[]
{
new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItemArgs
{
ContentType = "application/x-www-form-urlencoded",
Format = "URLEncoded",
},
},
},
},
QueryArgProfileConfig = new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigQueryArgProfileConfigArgs
{
ForwardWhenQueryArgProfileIsUnknown = true,
QueryArgProfiles = new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesArgs
{
Items = new[]
{
new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItemArgs
{
ProfileId = testAwsCloudfrontFieldLevelEncryptionProfile.Id,
QueryArg = "Arg1",
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.cloudfront.FieldLevelEncryptionConfig;
import com.pulumi.aws.cloudfront.FieldLevelEncryptionConfigArgs;
import com.pulumi.aws.cloudfront.inputs.FieldLevelEncryptionConfigContentTypeProfileConfigArgs;
import com.pulumi.aws.cloudfront.inputs.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesArgs;
import com.pulumi.aws.cloudfront.inputs.FieldLevelEncryptionConfigQueryArgProfileConfigArgs;
import com.pulumi.aws.cloudfront.inputs.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesArgs;
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 test = new FieldLevelEncryptionConfig("test", FieldLevelEncryptionConfigArgs.builder()
.comment("test comment")
.contentTypeProfileConfig(FieldLevelEncryptionConfigContentTypeProfileConfigArgs.builder()
.forwardWhenContentTypeIsUnknown(true)
.contentTypeProfiles(FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesArgs.builder()
.items(FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItemArgs.builder()
.contentType("application/x-www-form-urlencoded")
.format("URLEncoded")
.build())
.build())
.build())
.queryArgProfileConfig(FieldLevelEncryptionConfigQueryArgProfileConfigArgs.builder()
.forwardWhenQueryArgProfileIsUnknown(true)
.queryArgProfiles(FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesArgs.builder()
.items(FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItemArgs.builder()
.profileId(testAwsCloudfrontFieldLevelEncryptionProfile.id())
.queryArg("Arg1")
.build())
.build())
.build())
.build());
}
}
resources:
test:
type: aws:cloudfront:FieldLevelEncryptionConfig
properties:
comment: test comment
contentTypeProfileConfig:
forwardWhenContentTypeIsUnknown: true
contentTypeProfiles:
items:
- contentType: application/x-www-form-urlencoded
format: URLEncoded
queryArgProfileConfig:
forwardWhenQueryArgProfileIsUnknown: true
queryArgProfiles:
items:
- profileId: ${testAwsCloudfrontFieldLevelEncryptionProfile.id}
queryArg: Arg1
Create FieldLevelEncryptionConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FieldLevelEncryptionConfig(name: string, args: FieldLevelEncryptionConfigArgs, opts?: CustomResourceOptions);
@overload
def FieldLevelEncryptionConfig(resource_name: str,
args: FieldLevelEncryptionConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FieldLevelEncryptionConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
content_type_profile_config: Optional[FieldLevelEncryptionConfigContentTypeProfileConfigArgs] = None,
query_arg_profile_config: Optional[FieldLevelEncryptionConfigQueryArgProfileConfigArgs] = None,
comment: Optional[str] = None)
func NewFieldLevelEncryptionConfig(ctx *Context, name string, args FieldLevelEncryptionConfigArgs, opts ...ResourceOption) (*FieldLevelEncryptionConfig, error)
public FieldLevelEncryptionConfig(string name, FieldLevelEncryptionConfigArgs args, CustomResourceOptions? opts = null)
public FieldLevelEncryptionConfig(String name, FieldLevelEncryptionConfigArgs args)
public FieldLevelEncryptionConfig(String name, FieldLevelEncryptionConfigArgs args, CustomResourceOptions options)
type: aws:cloudfront:FieldLevelEncryptionConfig
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 FieldLevelEncryptionConfigArgs
- 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 FieldLevelEncryptionConfigArgs
- 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 FieldLevelEncryptionConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FieldLevelEncryptionConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FieldLevelEncryptionConfigArgs
- 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 fieldLevelEncryptionConfigResource = new Aws.CloudFront.FieldLevelEncryptionConfig("fieldLevelEncryptionConfigResource", new()
{
ContentTypeProfileConfig = new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigContentTypeProfileConfigArgs
{
ContentTypeProfiles = new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesArgs
{
Items = new[]
{
new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItemArgs
{
ContentType = "string",
Format = "string",
ProfileId = "string",
},
},
},
ForwardWhenContentTypeIsUnknown = false,
},
QueryArgProfileConfig = new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigQueryArgProfileConfigArgs
{
ForwardWhenQueryArgProfileIsUnknown = false,
QueryArgProfiles = new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesArgs
{
Items = new[]
{
new Aws.CloudFront.Inputs.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItemArgs
{
ProfileId = "string",
QueryArg = "string",
},
},
},
},
Comment = "string",
});
example, err := cloudfront.NewFieldLevelEncryptionConfig(ctx, "fieldLevelEncryptionConfigResource", &cloudfront.FieldLevelEncryptionConfigArgs{
ContentTypeProfileConfig: &cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigArgs{
ContentTypeProfiles: &cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesArgs{
Items: cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItemArray{
&cloudfront.FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItemArgs{
ContentType: pulumi.String("string"),
Format: pulumi.String("string"),
ProfileId: pulumi.String("string"),
},
},
},
ForwardWhenContentTypeIsUnknown: pulumi.Bool(false),
},
QueryArgProfileConfig: &cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigArgs{
ForwardWhenQueryArgProfileIsUnknown: pulumi.Bool(false),
QueryArgProfiles: &cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesArgs{
Items: cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItemArray{
&cloudfront.FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItemArgs{
ProfileId: pulumi.String("string"),
QueryArg: pulumi.String("string"),
},
},
},
},
Comment: pulumi.String("string"),
})
var fieldLevelEncryptionConfigResource = new FieldLevelEncryptionConfig("fieldLevelEncryptionConfigResource", FieldLevelEncryptionConfigArgs.builder()
.contentTypeProfileConfig(FieldLevelEncryptionConfigContentTypeProfileConfigArgs.builder()
.contentTypeProfiles(FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesArgs.builder()
.items(FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItemArgs.builder()
.contentType("string")
.format("string")
.profileId("string")
.build())
.build())
.forwardWhenContentTypeIsUnknown(false)
.build())
.queryArgProfileConfig(FieldLevelEncryptionConfigQueryArgProfileConfigArgs.builder()
.forwardWhenQueryArgProfileIsUnknown(false)
.queryArgProfiles(FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesArgs.builder()
.items(FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItemArgs.builder()
.profileId("string")
.queryArg("string")
.build())
.build())
.build())
.comment("string")
.build());
field_level_encryption_config_resource = aws.cloudfront.FieldLevelEncryptionConfig("fieldLevelEncryptionConfigResource",
content_type_profile_config={
"contentTypeProfiles": {
"items": [{
"contentType": "string",
"format": "string",
"profileId": "string",
}],
},
"forwardWhenContentTypeIsUnknown": False,
},
query_arg_profile_config={
"forwardWhenQueryArgProfileIsUnknown": False,
"queryArgProfiles": {
"items": [{
"profileId": "string",
"queryArg": "string",
}],
},
},
comment="string")
const fieldLevelEncryptionConfigResource = new aws.cloudfront.FieldLevelEncryptionConfig("fieldLevelEncryptionConfigResource", {
contentTypeProfileConfig: {
contentTypeProfiles: {
items: [{
contentType: "string",
format: "string",
profileId: "string",
}],
},
forwardWhenContentTypeIsUnknown: false,
},
queryArgProfileConfig: {
forwardWhenQueryArgProfileIsUnknown: false,
queryArgProfiles: {
items: [{
profileId: "string",
queryArg: "string",
}],
},
},
comment: "string",
});
type: aws:cloudfront:FieldLevelEncryptionConfig
properties:
comment: string
contentTypeProfileConfig:
contentTypeProfiles:
items:
- contentType: string
format: string
profileId: string
forwardWhenContentTypeIsUnknown: false
queryArgProfileConfig:
forwardWhenQueryArgProfileIsUnknown: false
queryArgProfiles:
items:
- profileId: string
queryArg: string
FieldLevelEncryptionConfig 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 FieldLevelEncryptionConfig resource accepts the following input properties:
- Content
Type FieldProfile Config Level Encryption Config Content Type Profile Config - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- Query
Arg FieldProfile Config Level Encryption Config Query Arg Profile Config - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- Comment string
- An optional comment about the Field Level Encryption Config.
- Content
Type FieldProfile Config Level Encryption Config Content Type Profile Config Args - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- Query
Arg FieldProfile Config Level Encryption Config Query Arg Profile Config Args - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- Comment string
- An optional comment about the Field Level Encryption Config.
- content
Type FieldProfile Config Level Encryption Config Content Type Profile Config - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- query
Arg FieldProfile Config Level Encryption Config Query Arg Profile Config - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- comment String
- An optional comment about the Field Level Encryption Config.
- content
Type FieldProfile Config Level Encryption Config Content Type Profile Config - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- query
Arg FieldProfile Config Level Encryption Config Query Arg Profile Config - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- comment string
- An optional comment about the Field Level Encryption Config.
- content_
type_ Fieldprofile_ config Level Encryption Config Content Type Profile Config Args - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- query_
arg_ Fieldprofile_ config Level Encryption Config Query Arg Profile Config Args - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- comment str
- An optional comment about the Field Level Encryption Config.
- content
Type Property MapProfile Config - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- query
Arg Property MapProfile Config - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- comment String
- An optional comment about the Field Level Encryption Config.
Outputs
All input properties are implicitly available as output properties. Additionally, the FieldLevelEncryptionConfig resource produces the following output properties:
- Caller
Reference string - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- Etag string
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - Id string
- The provider-assigned unique ID for this managed resource.
- Caller
Reference string - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- Etag string
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - Id string
- The provider-assigned unique ID for this managed resource.
- caller
Reference String - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- etag String
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - id String
- The provider-assigned unique ID for this managed resource.
- caller
Reference string - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- etag string
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - id string
- The provider-assigned unique ID for this managed resource.
- caller_
reference str - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- etag str
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - id str
- The provider-assigned unique ID for this managed resource.
- caller
Reference String - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- etag String
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - id String
- The provider-assigned unique ID for this managed resource.
Look up Existing FieldLevelEncryptionConfig Resource
Get an existing FieldLevelEncryptionConfig 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?: FieldLevelEncryptionConfigState, opts?: CustomResourceOptions): FieldLevelEncryptionConfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
caller_reference: Optional[str] = None,
comment: Optional[str] = None,
content_type_profile_config: Optional[FieldLevelEncryptionConfigContentTypeProfileConfigArgs] = None,
etag: Optional[str] = None,
query_arg_profile_config: Optional[FieldLevelEncryptionConfigQueryArgProfileConfigArgs] = None) -> FieldLevelEncryptionConfig
func GetFieldLevelEncryptionConfig(ctx *Context, name string, id IDInput, state *FieldLevelEncryptionConfigState, opts ...ResourceOption) (*FieldLevelEncryptionConfig, error)
public static FieldLevelEncryptionConfig Get(string name, Input<string> id, FieldLevelEncryptionConfigState? state, CustomResourceOptions? opts = null)
public static FieldLevelEncryptionConfig get(String name, Output<String> id, FieldLevelEncryptionConfigState 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.
- Caller
Reference string - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- Comment string
- An optional comment about the Field Level Encryption Config.
- Content
Type FieldProfile Config Level Encryption Config Content Type Profile Config - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- Etag string
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - Query
Arg FieldProfile Config Level Encryption Config Query Arg Profile Config - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- Caller
Reference string - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- Comment string
- An optional comment about the Field Level Encryption Config.
- Content
Type FieldProfile Config Level Encryption Config Content Type Profile Config Args - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- Etag string
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - Query
Arg FieldProfile Config Level Encryption Config Query Arg Profile Config Args - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- caller
Reference String - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- comment String
- An optional comment about the Field Level Encryption Config.
- content
Type FieldProfile Config Level Encryption Config Content Type Profile Config - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- etag String
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - query
Arg FieldProfile Config Level Encryption Config Query Arg Profile Config - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- caller
Reference string - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- comment string
- An optional comment about the Field Level Encryption Config.
- content
Type FieldProfile Config Level Encryption Config Content Type Profile Config - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- etag string
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - query
Arg FieldProfile Config Level Encryption Config Query Arg Profile Config - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- caller_
reference str - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- comment str
- An optional comment about the Field Level Encryption Config.
- content_
type_ Fieldprofile_ config Level Encryption Config Content Type Profile Config Args - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- etag str
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - query_
arg_ Fieldprofile_ config Level Encryption Config Query Arg Profile Config Args - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
- caller
Reference String - Internal value used by CloudFront to allow future updates to the Field Level Encryption Config.
- comment String
- An optional comment about the Field Level Encryption Config.
- content
Type Property MapProfile Config - Content Type Profile Config specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
- etag String
- The current version of the Field Level Encryption Config. For example:
E2QWRUHAPOMQZL
. - query
Arg Property MapProfile Config - Query Arg Profile Config that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
Supporting Types
FieldLevelEncryptionConfigContentTypeProfileConfig, FieldLevelEncryptionConfigContentTypeProfileConfigArgs
- Content
Type FieldProfiles Level Encryption Config Content Type Profile Config Content Type Profiles - Object that contains an attribute
items
that contains the list of configurations for a field-level encryption content type-profile. See Content Type Profile. - Forward
When boolContent Type Is Unknown - specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
- Content
Type FieldProfiles Level Encryption Config Content Type Profile Config Content Type Profiles - Object that contains an attribute
items
that contains the list of configurations for a field-level encryption content type-profile. See Content Type Profile. - Forward
When boolContent Type Is Unknown - specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
- content
Type FieldProfiles Level Encryption Config Content Type Profile Config Content Type Profiles - Object that contains an attribute
items
that contains the list of configurations for a field-level encryption content type-profile. See Content Type Profile. - forward
When BooleanContent Type Is Unknown - specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
- content
Type FieldProfiles Level Encryption Config Content Type Profile Config Content Type Profiles - Object that contains an attribute
items
that contains the list of configurations for a field-level encryption content type-profile. See Content Type Profile. - forward
When booleanContent Type Is Unknown - specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
- content_
type_ Fieldprofiles Level Encryption Config Content Type Profile Config Content Type Profiles - Object that contains an attribute
items
that contains the list of configurations for a field-level encryption content type-profile. See Content Type Profile. - forward_
when_ boolcontent_ type_ is_ unknown - specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
- content
Type Property MapProfiles - Object that contains an attribute
items
that contains the list of configurations for a field-level encryption content type-profile. See Content Type Profile. - forward
When BooleanContent Type Is Unknown - specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfiles, FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesArgs
FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItem, FieldLevelEncryptionConfigContentTypeProfileConfigContentTypeProfilesItemArgs
- Content
Type string - Format string
- Profile
Id string
- Content
Type string - Format string
- Profile
Id string
- content
Type String - format String
- profile
Id String
- content
Type string - format string
- profile
Id string
- content_
type str - format str
- profile_
id str
- content
Type String - format String
- profile
Id String
FieldLevelEncryptionConfigQueryArgProfileConfig, FieldLevelEncryptionConfigQueryArgProfileConfigArgs
- Forward
When boolQuery Arg Profile Is Unknown - Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
- Query
Arg FieldProfiles Level Encryption Config Query Arg Profile Config Query Arg Profiles - Object that contains an attribute
items
that contains the list ofrofiles specified for query argument-profile mapping for field-level encryption. see Query Arg Profile.
- Forward
When boolQuery Arg Profile Is Unknown - Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
- Query
Arg FieldProfiles Level Encryption Config Query Arg Profile Config Query Arg Profiles - Object that contains an attribute
items
that contains the list ofrofiles specified for query argument-profile mapping for field-level encryption. see Query Arg Profile.
- forward
When BooleanQuery Arg Profile Is Unknown - Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
- query
Arg FieldProfiles Level Encryption Config Query Arg Profile Config Query Arg Profiles - Object that contains an attribute
items
that contains the list ofrofiles specified for query argument-profile mapping for field-level encryption. see Query Arg Profile.
- forward
When booleanQuery Arg Profile Is Unknown - Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
- query
Arg FieldProfiles Level Encryption Config Query Arg Profile Config Query Arg Profiles - Object that contains an attribute
items
that contains the list ofrofiles specified for query argument-profile mapping for field-level encryption. see Query Arg Profile.
- forward_
when_ boolquery_ arg_ profile_ is_ unknown - Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
- query_
arg_ Fieldprofiles Level Encryption Config Query Arg Profile Config Query Arg Profiles - Object that contains an attribute
items
that contains the list ofrofiles specified for query argument-profile mapping for field-level encryption. see Query Arg Profile.
- forward
When BooleanQuery Arg Profile Is Unknown - Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
- query
Arg Property MapProfiles - Object that contains an attribute
items
that contains the list ofrofiles specified for query argument-profile mapping for field-level encryption. see Query Arg Profile.
FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfiles, FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesArgs
FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItem, FieldLevelEncryptionConfigQueryArgProfileConfigQueryArgProfilesItemArgs
- profile_
id str - query_
arg str
Import
Using pulumi import
, import Cloudfront Field Level Encryption Config using the id
. For example:
$ pulumi import aws:cloudfront/fieldLevelEncryptionConfig:FieldLevelEncryptionConfig config E74FTE3AEXAMPLE
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.
Try AWS Native preview for resources not in the classic version.