1. Packages
  2. AWS
  3. API Docs
  4. route53
  5. getProfilesProfiles
AWS v6.60.0 published on Tuesday, Nov 19, 2024 by Pulumi

aws.route53.getProfilesProfiles

Explore with Pulumi AI

aws logo
AWS v6.60.0 published on Tuesday, Nov 19, 2024 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();
    
        }
    }
    
    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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: aws:route53/getProfilesProfiles:getProfilesProfiles
      arguments:
        # arguments dictionary

    getProfilesProfiles Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Profiles List<GetProfilesProfilesProfile>
    List of Profiles.
    Id string
    The provider-assigned unique ID for this managed resource.
    Profiles []GetProfilesProfilesProfile
    List of Profiles.
    id String
    The provider-assigned unique ID for this managed resource.
    profiles List<GetProfilesProfilesProfile>
    List of Profiles.
    id string
    The provider-assigned unique ID for this managed resource.
    profiles GetProfilesProfilesProfile[]
    List of Profiles.
    id str
    The provider-assigned unique ID for this managed resource.
    profiles Sequence[GetProfilesProfilesProfile]
    List of Profiles.
    id String
    The provider-assigned unique ID for this managed resource.
    profiles List<Property Map>
    List of Profiles.

    Supporting Types

    GetProfilesProfilesProfile

    Arn string
    ARN of the Profile.
    Id string
    ID of the Profile.
    Name string
    Name of the Profile.
    ShareStatus string
    Share status of the Profile. Valid values AWS docs
    Arn string
    ARN of the Profile.
    Id string
    ID of the Profile.
    Name string
    Name of the Profile.
    ShareStatus string
    Share status of the Profile. Valid values AWS docs
    arn String
    ARN of the Profile.
    id String
    ID of the Profile.
    name String
    Name of the Profile.
    shareStatus String
    Share status of the Profile. Valid values AWS docs
    arn string
    ARN of the Profile.
    id string
    ID of the Profile.
    name string
    Name of the Profile.
    shareStatus string
    Share status of the Profile. Valid values AWS docs
    arn str
    ARN of the Profile.
    id str
    ID of the Profile.
    name str
    Name of the Profile.
    share_status str
    Share status of the Profile. Valid values AWS docs
    arn String
    ARN of the Profile.
    id String
    ID of the Profile.
    name String
    Name of the Profile.
    shareStatus String
    Share status of the Profile. Valid values AWS docs

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.60.0 published on Tuesday, Nov 19, 2024 by Pulumi