Viewing docs for AWS v7.24.0
published on Tuesday, Mar 31, 2026 by Pulumi
published on Tuesday, Mar 31, 2026 by Pulumi
Viewing docs for AWS v7.24.0
published on Tuesday, Mar 31, 2026 by Pulumi
published on Tuesday, Mar 31, 2026 by Pulumi
Data source for managing an AWS Route 53 Profiles.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.route53.getProfilesProfiles({});
import pulumi
import pulumi_aws as aws
example = aws.route53.get_profiles_profiles()
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/route53"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := route53.GetProfilesProfiles(ctx, &route53.GetProfilesProfilesArgs{}, nil)
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 = Aws.Route53.GetProfilesProfiles.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.route53.Route53Functions;
import com.pulumi.aws.route53.inputs.GetProfilesProfilesArgs;
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) {
final var example = Route53Functions.getProfilesProfiles(GetProfilesProfilesArgs.builder()
.build());
}
}
variables:
example:
fn::invoke:
function: aws:route53:getProfilesProfiles
arguments: {}
Using getProfilesProfiles
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getProfilesProfiles(args: GetProfilesProfilesArgs, opts?: InvokeOptions): Promise<GetProfilesProfilesResult>
function getProfilesProfilesOutput(args: GetProfilesProfilesOutputArgs, opts?: InvokeOptions): Output<GetProfilesProfilesResult>def get_profiles_profiles(region: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetProfilesProfilesResult
def get_profiles_profiles_output(region: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProfilesProfilesResult]func GetProfilesProfiles(ctx *Context, args *GetProfilesProfilesArgs, opts ...InvokeOption) (*GetProfilesProfilesResult, error)
func GetProfilesProfilesOutput(ctx *Context, args *GetProfilesProfilesOutputArgs, opts ...InvokeOption) GetProfilesProfilesResultOutput> Note: This function is named GetProfilesProfiles in the Go SDK.
public static class GetProfilesProfiles
{
public static Task<GetProfilesProfilesResult> InvokeAsync(GetProfilesProfilesArgs args, InvokeOptions? opts = null)
public static Output<GetProfilesProfilesResult> Invoke(GetProfilesProfilesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetProfilesProfilesResult> getProfilesProfiles(GetProfilesProfilesArgs args, InvokeOptions options)
public static Output<GetProfilesProfilesResult> getProfilesProfiles(GetProfilesProfilesArgs args, InvokeOptions options)
fn::invoke:
function: aws:route53/getProfilesProfiles:getProfilesProfiles
arguments:
# arguments dictionaryThe following arguments are supported:
getProfilesProfiles Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Profiles
List<Get
Profiles Profiles Profile> - List of Profiles.
- Region string
- Id string
- The provider-assigned unique ID for this managed resource.
- Profiles
[]Get
Profiles Profiles Profile - List of Profiles.
- Region string
- id String
- The provider-assigned unique ID for this managed resource.
- profiles
List<Get
Profiles Profiles Profile> - List of Profiles.
- region String
- id string
- The provider-assigned unique ID for this managed resource.
- profiles
Get
Profiles Profiles Profile[] - List of Profiles.
- region string
- id str
- The provider-assigned unique ID for this managed resource.
- profiles
Sequence[Get
Profiles Profiles Profile] - List of Profiles.
- region str
- id String
- The provider-assigned unique ID for this managed resource.
- profiles List<Property Map>
- List of Profiles.
- region String
Supporting Types
GetProfilesProfilesProfile
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
Viewing docs for AWS v7.24.0
published on Tuesday, Mar 31, 2026 by Pulumi
published on Tuesday, Mar 31, 2026 by Pulumi
