Viewing docs for AWS v6.83.1 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Viewing docs for AWS v6.83.1 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 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/v6/go/aws/route53"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := route53.GetProfilesProfiles(ctx, map[string]interface{}{}, 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 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(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);
}
}
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(opts?: InvokeOptions): Promise<GetProfilesProfilesResult>
function getProfilesProfilesOutput(opts?: InvokeOptions): Output<GetProfilesProfilesResult>def get_profiles_profiles(opts: Optional[InvokeOptions] = None) -> GetProfilesProfilesResult
def get_profiles_profiles_output(opts: Optional[InvokeOptions] = None) -> Output[GetProfilesProfilesResult]func GetProfilesProfiles(ctx *Context, opts ...InvokeOption) (*GetProfilesProfilesResult, error)
func GetProfilesProfilesOutput(ctx *Context, opts ...InvokeOption) GetProfilesProfilesResultOutput> Note: This function is named GetProfilesProfiles in the Go SDK.
public static class GetProfilesProfiles
{
public static Task<GetProfilesProfilesResult> InvokeAsync(InvokeOptions? opts = null)
public static Output<GetProfilesProfilesResult> Invoke(InvokeOptions? opts = null)
}public static CompletableFuture<GetProfilesProfilesResult> getProfilesProfiles(InvokeOptions options)
public static Output<GetProfilesProfilesResult> getProfilesProfiles(InvokeOptions options)
fn::invoke:
function: aws:route53/getProfilesProfiles:getProfilesProfiles
arguments:
# arguments dictionarygetProfilesProfiles 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Profiles
[]Get
Profiles Profiles Profile - List of Profiles.
- id String
- The provider-assigned unique ID for this managed resource.
- profiles
List<Get
Profiles Profiles Profile> - List of Profiles.
- id string
- The provider-assigned unique ID for this managed resource.
- profiles
Get
Profiles Profiles Profile[] - List of Profiles.
- id str
- The provider-assigned unique ID for this managed resource.
- profiles
Sequence[Get
Profiles Profiles Profile] - List of Profiles.
- id String
- The provider-assigned unique ID for this managed resource.
- profiles List<Property Map>
- List of Profiles.
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 v6.83.1 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
